Use markdown for salt, salt-run and zbarimg

This commit is contained in:
lord63
2015-08-31 22:41:11 +08:00
parent c0bbae2fdc
commit 52dd29cb9c
4 changed files with 3 additions and 1 deletions

19
pages/common/salt.md Normal file
View File

@@ -0,0 +1,19 @@
#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 "