Files
tldr/pages.zh/common/salt.md

20 lines
484 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 盐
> 在远程盐小鬼上执行命令并断言状态。
> 更多信息:<https://docs.saltproject.io/en/latest/ref/cli/index.html>。
- 列出已连接的小鬼:
`salt '*' test.ping`
- 在所有已连接的小鬼上执行高状态:
`salt '*' state.highstate`
- 在一部分小鬼上使用操作系统包管理器apt、yum、brew升级软件包
`salt '*.example.com' pkg.upgrade`
- 在特定小鬼上执行任意命令:
`salt '{{minion_id}}' cmd.run "ls "`