ansible 常用命令
ansible -i hosts 172.16.100.197 -m setup # -i 指定 hosts 文件,
ansible webServer -m command -a 'echo 123456 |passwd --stdin yunwei' # 配置密码
ansible -i hosts 172.16.100.197 -m setup -a "filter=ansible_distribution" # 获取系统信息
本文来自博客园, 作者:Star-Hitian, 转载请注明原文链接:https://www.cnblogs.com/Star-Haitian/p/17003399.html