ansible.builtin.sudo become – 替代用户 DO

注意

此 become 插件是 ansible-core 的一部分,包含在所有 Ansible 安装中。在大多数情况下,您可以使用简短的插件名称 sudo。但是,我们建议您使用 完全限定的集合名称 (FQCN) ansible.builtin.sudo,以便轻松链接到插件文档,并避免与可能具有相同 become 插件名称的其他集合发生冲突。

Ansible 2.8 中的新功能

概述

  • 此 become 插件允许您的远程/登录用户通过 sudo 实用程序以另一个用户身份执行命令。

参数

参数

注释

become_exe

字符串

Sudo 可执行文件

默认值: "sudo"

配置

  • INI 条目

    [privilege_escalation]
    become_exe = sudo
    
    [sudo_become_plugin]
    executable = sudo
    
  • 环境变量:ANSIBLE_BECOME_EXE

  • 环境变量:ANSIBLE_SUDO_EXE

  • 变量:ansible_become_exe

  • 变量:ansible_sudo_exe

  • 关键字:become_exe

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_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

  • 关键字:become_user

作者

  • ansible (@core)

提示

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