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-call.md

21 lines
466 B
Markdown
Raw Normal View History

2019-05-15 10:36:01 +01:00
# salt-call
2015-10-22 15:31:52 +08:00
2014-07-27 12:36:19 -07:00
> Invoke salt locally on a salt minion.
> More information: <https://docs.saltstack.com/ref/cli/salt-call.html>.
2014-07-27 12:36:19 -07:00
- Perform a highstate on this minion:
2014-07-27 12:36:19 -07:00
`salt-call state.highstate`
- Perform a highstate dry-run, compute all changes but don't actually perform them:
2014-07-27 12:36:19 -07:00
`salt-call state.highstate test=true`
- Perform a highstate with verbose debugging output:
2014-07-27 12:36:19 -07:00
`salt-call -l debug state.highstate`
- List this minion's grains:
2014-07-27 12:36:19 -07:00
`salt-call grains.items`