本文共 541 字,大约阅读时间需要 1 分钟。
目的
给minion指定的数据,pillar定义参数和变量默认关闭,开启方法
修改master /etc/salt/master pillar_opts: Turepillar默认文件位置/srv/pillar[root@master pillar]# cat apache.sls{% if grains['os'] == 'CentOS' %}apache:httpd{% elif grains['os'] == 'Debian' %}apche:apche2{% endif %}pillar的top.sls
[root@master pillar]# cat top.slsbase:'*'apache: httpd
apache: httpd
设置完以后要刷新pillar
salt ‘*’ saltutil.refresh_pillar执行命令
salt -I ‘apache:httpd’ test.ping转载于:https://blog.51cto.com/13491150/2048310