2015-10-22 08:31:52 +01:00
|
|
|
# salt
|
2015-08-31 15:41:11 +01:00
|
|
|
|
2016-01-07 17:31:27 +00: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 20:36:19 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- List connected minions:
|
2014-07-27 20:36:19 +01:00
|
|
|
|
|
|
|
`salt '*' test.ping`
|
|
|
|
|
|
|
|
- Execute a highstate on all connected minions:
|
|
|
|
|
2015-12-31 13:11:18 +00:00
|
|
|
`salt '*' state.highstate`
|
2014-07-27 20:36:19 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Upgrade packages using the OS package manager (apt, yum, brew) on a subset of minions:
|
2014-07-27 20:36:19 +01:00
|
|
|
|
2019-05-13 14:33:05 +01:00
|
|
|
`salt '*.example.com' pkg.upgrade`
|
2014-07-27 20:36:19 +01:00
|
|
|
|
|
|
|
- Execute an arbitrary command on a particular minion:
|
|
|
|
|
2015-12-31 13:11:18 +00:00
|
|
|
`salt '{{minion_id}}' cmd.run "ls "`
|