1.先创建远程HOST的ip文件
例如:cat <<EOF>/home/test/ip.txt
>10.1.1.1
>10.1.1.2
>10.1.1.3
>EOF
2.远程操作:
ansible -i /home/test/ip.txt all -m shell -a "df -lh" -b --become-method=su -K
ansible提权操作
原文:https://www.cnblogs.com/lalalaxixixi/p/11438598.html