community.general.sudosu become – 使用 sudo su - 运行任务

注意

此 become 插件是 community.general 集合(版本 10.1.0)的一部分。

如果您使用的是 ansible 包,则可能已经安装了此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install community.general

要在 playbook 中使用它,请指定: community.general.sudosu

community.general 2.4.0 新增功能

概要

  • 此 become 插件允许您的远程/登录用户通过组合 sudosu 实用程序以其他用户的身份执行命令。

参数

参数

注释

alt_method

布尔值

在 community.general 9.2.0 中添加

是否使用替代方法调用 su。不是运行 su -l user /path/to/shell -c command,而是运行 su -l user -c command

当默认方法在您的系统上不起作用时,请使用此方法。

选项

  • false

  • true

配置

  • INI 条目

    [community.general.sudosu]
    alternative_method = VALUE
    
  • 环境变量:ANSIBLE_SUDOSU_ALT_METHOD

  • 变量:ansible_sudosu_alt_method

become_flags

字符串

传递给 sudo 的选项。

默认值: "-H -S -n"

配置

  • INI 条目

    [privilege_escalation]
    become_flags = -H -S -n
    
    [sudo_become_plugin]
    flags = -H -S -n
    
  • 环境变量:ANSIBLE_BECOME_FLAGS

  • 环境变量:ANSIBLE_SUDO_FLAGS

  • 变量:ansible_become_flags

  • 变量:ansible_sudo_flags

become_pass

字符串

传递给 sudo 的密码。

配置

  • INI 条目

    [sudo_become_plugin]
    password = VALUE
    
  • 环境变量:ANSIBLE_BECOME_PASS

  • 环境变量:ANSIBLE_SUDO_PASS

  • 变量:ansible_become_password

  • 变量:ansible_become_pass

  • 变量:ansible_sudo_pass

become_user

字符串

您要“成为”以执行任务的用户。

默认值: "root"

配置

  • INI 条目

    [privilege_escalation]
    become_user = root
    
    [sudo_become_plugin]
    user = root
    
  • 环境变量:ANSIBLE_BECOME_USER

  • 环境变量:ANSIBLE_SUDO_USER

  • 变量:ansible_become_user

  • 变量:ansible_sudo_user

作者

  • Dag Wieers (@dagwieers)

提示

每个条目类型的配置条目都具有从低到高的优先级顺序。例如,列表中较低的变量将覆盖较高的变量。