saltstack-自定义模块
创建 modules 目录
1 | mkdir /srv/salt/_modules && cd /srv/salt/_modules |
在 _modules 目录创建一个模块 test.py
代码如下
1 | def foo(): |
同步到客户端
salt ‘*’ state.highstate
salt ‘*’ saltutil.sync_returners
salt ‘*’ saltutil.sync_all
执行模块
salt ‘*’ test.foo
saltstack-自定义模块