1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 15:17:58 +01:00
tldr/pages/common/salt

19 lines
405 B
Text
Raw Normal View History

2014-07-27 21:36:19 +02:00
#salt
>Execute commands and assert state on remote salt minions.
- List connected minions
`salt '*' test.ping`
- Execute a highstate on all connected minions:
`salt '*' state.highstate
- Upgrade packages using the OS package manager (apt, yum, brew) on a subset of minions
`salt '*.domain.com' pkg.upgrade
- Execute an arbitrary command on a particular minion:
`salt '{{minion_id}}' cmd.run "ls "