add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/salt.md Normal file
View File

@@ -0,0 +1,20 @@
# 盐
> 在远程盐小鬼上执行命令并断言状态。
> 更多信息:<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 "`