转自:http://wiki.saltstack.cn/topics/targeting/globbing
* 原文:http://docs.saltstack.com/topics/targeting/globbing.html * 译者: pengyao
minion id minion的唯一标示。默认情况minion id是minion的主机名(FQDN),你可以通过id来指定minion的名字.
Globbing
salt默认使用shell样式进行globbing,也可以在states的top.sls中使用.
注意
在运行salt命令进行globbing时,请使用单引号('),避免shell解析
匹配所有minion:
匹配下边域的所有minion:
匹配example.net域中的(web1.example.net、web2.example.net......webN.example.example.net):
匹配web1到web5的minion:
匹配web-x、web-y及web-z minion:
正则表达式
minion也可以通过Perl-compatible正则表达式进行匹配.
匹配web-prod和web1-devel minion:
当在state的top.sls中使用正则表达式时,你需要在首先指定下匹配器。 下边将列出一个执行webserver.sls的例子:
base: 'web1-(prod|devel)': - match: pcre - webserver
列表
你也可以指定若干minion id: