Cat

查看 Salt Stack minion 上的文件內容

  • May 15, 2015

如何使用 Salt Stack 在我的所有 minions 上輸出文件的內容?

我能找到的唯一“拉取”功能是在這個 minion push commit中,但這需要在 master 上進行配置更改。

使用cmd.run模組的解決方案:

salt '*' cmd.run 'cat /path/to/file'

在不使用外部命令的情況下獲取文件的內容:

sudo salt '*' cp.get_file_str file:///etc/hosts

引用自:https://serverfault.com/questions/528220