1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/salt.md

21 lines
482 B
Markdown
Raw Normal View History

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