tldr/pages/common/salt.md

21 lines
494 B
Markdown
Raw Normal View History

2015-10-22 08:31:52 +01:00
# salt
> Execute commands and assert state on remote salt minions.
> More information: <https://docs.saltproject.io/en/latest/ref/cli/index.html>.
2014-07-27 20:36:19 +01: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
- Upgrade packages using the OS package manager (apt, yum, brew) on a subset of minions:
2014-07-27 20:36:19 +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 "`