예제 #1
0
def run_install():
    packages = [
        'cluster-glue', 'corosync', 'crmsh', 'pacemaker', 'resource-agents'
    ]
    crm_init.install_packages(packages)
    crm_init.configure_firewall()
    crm_script.exit_ok(True)
예제 #2
0
파일: add.py 프로젝트: parr0tr1ver/crmsh
def run_install():
    if host not in add_nodes:
        crm_script.exit_ok(host)
    packages = [
        'cluster-glue', 'corosync', 'crmsh', 'pacemaker', 'resource-agents'
    ]
    crm_init.install_packages(packages)
    crm_script.exit_ok(host)
예제 #3
0
파일: configure.py 프로젝트: aspiers/crmsh
def run_install():
    packages = ['cluster-glue', 'corosync', 'crmsh', 'pacemaker', 'resource-agents']
    crm_init.install_packages(packages)
    crm_init.configure_firewall()
    crm_script.exit_ok(True)
예제 #4
0
파일: add.py 프로젝트: aomoriringo/crmsh
def run_install():
    if host not in add_nodes:
        crm_script.exit_ok(host)
    packages = ['cluster-glue', 'corosync', 'crmsh', 'pacemaker', 'resource-agents']
    crm_init.install_packages(packages)
    crm_script.exit_ok(host)