在Ansible中登录后切换用户

时间:2016-04-05 06:50:50

标签: ansible

我需要以root身份运行各种ansible任务,但由于安全限制,我只能通过运行命令“super su-root”并输入密码来执行此操作。没有sudo允许。这样登录后是否可以切换用户?

2 个答案:

答案 0 :(得分:1)

是的,有可能:

<select class="form-control amura-select2 select2-hidden-accessible" data-type="ds" data-name="address_types" data-default="only" style="width:100%;" required="required" name="customer[address_attributes][address_type]" aria-required="true" tabindex="-1" aria-hidden="true">
<option value="primary">Primary</option>
</select>

http://docs.ansible.com/ansible/become.html

答案 1 :(得分:0)

Ansible已经从使用sudo过渡到the become generic privilege escalation method,正是为了支持这样的用例。

您可能需要为super命令实施another become_method,或要求Ansible团队为您执行此操作。