salt基础命令

检查master与minion的连接状态:salt '*' test.ping

远程执行命令:salt ‘*’ cmd.run 'ls /home'

从master上传文件至minion:

salt-cp nodeid  source_file target_file

例子:salt-cp '*' /home/abc /home

master同步命令:

salt '*' state.highstate


学习中,待更新

你可能感兴趣的:(命令,SALT)