1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-26 03:04:02 +02:00
tldr/pages/common/salt.md
Lucas Gabriel Schneider ce642b6c12 multiple pages: standardize domain examples (#3010)
This change standardizes URL examples in tldr-pages
to use the canonical example.com domain.

Pages changed: `dig`, `drill`, `irssi`, `salt`, and `socat`.
2019-05-13 14:33:05 +01:00

19 lines
414 B
Markdown

# 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 '*.example.com' pkg.upgrade`
- Execute an arbitrary command on a particular minion:
`salt '{{minion_id}}' cmd.run "ls "`