2015-10-22 09:31:52 +02:00
|
|
|
# salt
|
2015-08-31 16:41:11 +02:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
> Execute commands and assert state on remote salt minions.
|
2014-07-27 21:36:19 +02:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List connected minions:
|
2014-07-27 21:36:19 +02: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 21:36:19 +02: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 21:36:19 +02:00
|
|
|
|
2015-12-31 14:11:18 +01:00
|
|
|
`salt '*.domain.com' pkg.upgrade`
|
2014-07-27 21:36:19 +02:00
|
|
|
|
|
|
|
- Execute an arbitrary command on a particular minion:
|
|
|
|
|
2015-12-31 14:11:18 +01:00
|
|
|
`salt '{{minion_id}}' cmd.run "ls "`
|