sysmod:
官网链接https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.sysmod.html
The sys module provides information about the available functions on the minion,sys模块提供了关于Minion上可用功能的信息
在命令行中以sys方法使用,比如:salt '192.168.2.221' sys.list_function //列出此minion上可用的功能
sys模块平常主要用来查看salt的帮助信息:比方说,我想知道sys模块提供哪些功能,并且每个功能该如何使用?
salt '192.168.2.221' sys.argspec sys //整个模块
salt '192.168.2.221' sys.argspec pkg.install //模块下,install方法的使用
list_modules //查看minion支持的模块
list_renderers //查看minion支持的render渲染功能的模块
reload_modules //minion重载模块
.......
saltutil:
官网链接https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.saltutil.html
The Saltutil module is used to manage the state of the salt minion itself. It is used to manage minion modules as well as automate updates to the salt minion.
saltutil.clear_cache //清空minion上的缓存
find_cached_job //缓存待执行的Job
find_job //正在执行的Job
refresh_grains //刷新minion上的grains信息
refresh_pillar //刷新pillar信息
网友评论