2015-10-22 15:31:52 +08:00
|
|
|
# salt
|
2015-08-31 22:41:11 +08:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
> Execute commands and assert state on remote salt minions.
|
2019-05-23 11:56:50 +01:00
|
|
|
> More information: <https://docs.saltstack.com/ref/cli/salt.html>.
|
2014-07-27 12:36:19 -07:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List connected minions:
|
2014-07-27 12:36:19 -07:00
|
|
|
|
|
|
|
`salt '*' test.ping`
|
|
|
|
|
|
|
|
- Execute a highstate on all connected minions:
|
|
|
|
|
2015-12-31 14:11:18 +01:00
|
|
|
`salt '*' state.highstate`
|
2014-07-27 12:36:19 -07:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Upgrade packages using the OS package manager (apt, yum, brew) on a subset of minions:
|
2014-07-27 12:36:19 -07:00
|
|
|
|
2019-05-13 10:33:05 -03:00
|
|
|
`salt '*.example.com' pkg.upgrade`
|
2014-07-27 12:36:19 -07:00
|
|
|
|
|
|
|
- Execute an arbitrary command on a particular minion:
|
|
|
|
|
2015-12-31 14:11:18 +01:00
|
|
|
`salt '{{minion_id}}' cmd.run "ls "`
|