2013-12-21 32 views

回答

0

可以使用例如shell或命令任務,但你還需要在命令expect因爲蘇需要密碼的交互式輸入:

- name: Run a su user2 command 
    shell: suCommand.sh 

其中suCommand.sh是:

#!/usr/bin/expect 
spawn su -c ls user2 
expect "Password: " 
send -- "user2password\r" 
interact 
相關問題