System Grab Bag

View all TLDR pages from common (or from all pages)

salt

Execute commands and assert state on remote salt minions. More information: https://docs.saltstack.com/ref/cli/salt.html.
  • 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 "

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.