我正在使用ansible 2.5.3 我有一个远程服务器,我需要以具有sudo acces的用户身份(用户x
)运行一些commnad我正在为ssh使用userX,因为userX具有sudo访问权限并已复制密钥
代码如下
---
- name: run command
hosts: servers
remote_user: userX
become: yes
tasks:
- name: run command
command: /home/userY/config/...
become_user: userY
become_method: su
become: true