Fabric - 检测 OS 类型并执行命令

Fabric - Detect OS type and execute command

我开始尝试将 Fabric 作为我的 GCP 环境的最小平台管理工具。我想试验的一个测试用例是从 GCE API 获取 hosts 列表并设置一个动态 host 列表。基于此列表,我想应用简单的最小安全更新。此过程因 os 而异。

# gets running hosts in a single project across all zones
def ag_get_host():
    request = compute.instances().aggregatedList(project=project)
    response = request.execute()

    env.hosts = []
    for zone, instances in response['items'].items():
        for host in instances.get("instances", []):
            if host['status'] == 'RUNNING':
                env.hosts.append(host['name'])


# If redhat, run yum ; if ubuntu, run apt-get
def sec_update():
    if 'redhat' in platform.platform().lower():
        sudo('echo 3 > /proc/sys/vm/drop_caches')
        sudo('yum update yum -y')
        sudo('yum update-minimal --security -y')
    elif 'ubuntu' in platform.platform().lower():
        sudo('apt-get install unattended-upgrades')
        sudo('sudo unattended-upgrades –d')

我在构建允许我获取 OS 发布详细信息的逻辑时遇到困难。 platform.platform() 获取 host os 详细信息,而不是目标机器。

这是一个可能的解决方案:

from fabric.api import task, sudo


def get_platform():
    x = sudo("python -c 'import platform; print(platform.platform())'")
    if x.failed:
        raise Exception("Python not installed")
    else:
        return x


@task
def my_task():
    print("platform", get_platform())

请注意,要求是在目标框中安装 python。