Puppet正则表达式(十七)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Puppet正则表达式(十七)相关的知识,希望对你有一定的参考价值。
puppet支持标准的ruby正则表达式.
正则表达式的参数匹配项:
[]:用于描述范围(如[a-z],表示范围a~z之间.)
():用于包含正则表达式.
\w:用于描述字母或数字,相当于[0-9a-zA-Z]
\W:非字母或数字.
\s:匹配[\t\n\r\f],其中(\t)为制表符、(\r)为回车符、(\n)为换行符、(\f)为换页符,\s表示匹配这些符号的简写方式.
\S:匹配非空字符.
\d:匹配[0-9]数字.
\D:匹配非数字
\b:匹配退格符.
\B:非字边界.
*:前面元素出现0次或多次.
+: 前面元素出现1次或多次.
{m,n}:前面元素最少出现m次,最多出现n次.
?:前面元素最多出现1次,等价于{0,1}.
|:与前面或后面表达式匹配.
#系统facter变量:
[[email protected] ~]# facter | grep oper* operatingsystem => CentOS operatingsystemmajrelease => 6 operatingsystemrelease => 6.5
判断系统发行版本,安装对应的软件包.
[[email protected] ~]# cat apache.pp $packages = $operatingsystem ? { /(?i-mx:centos|redhat)/=> ‘httpd‘, /(?i-mx:ubuntu|debin)/=> ‘apache2‘, } package {"$packages": ensure=> present, }
本地应用puppet代码.
[[email protected] ~]# puppet apply apache.pp Notice: Compiled catalog for sh-web1.localdomain in environment production in 0.04 seconds Notice: /Stage[main]/Main/Package[httpd]/ensure: created Notice: Finished catalog run in 2.31 seconds [[email protected] ~]# rpm -qa httpd httpd-2.2.15-60.el6.centos.5.x86_64
i:表示忽略大小写.
m:表示把"."当做换行符使用.
-:表示不使用某转移符号.
X:表示忽略模式中的空白字符串和注释.
其他案例:
修改文件权限,用户组等都可以:
$allgroup = $operatingsystem ? { /(?i-mx:ubuntu|debin)/ => ‘user1‘, default => ‘root‘, } file {"/etc/passwd": ensure => file, owner => ‘root‘, group => "$allgroup", }
undef
undef是一个特殊的值,它等同于ruby语言中的nil,没有声明过但是仍然可以使用的值就属于undef值,undef用法.
$packages = $operatingsystem ? { redhat => ‘httpd‘, centos => ‘httpd‘, #/(?i-mx:ubuntu|debin)/ => ‘apache2‘, /(?i):(ubuntu|debin)/ => ‘apache2‘, default => ‘undef‘, } package {"$packages": ensure => present, }
注释;如果没有匹配到任何操作系统版本,默认值为undef。
本文出自 “青衫解衣” 博客,请务必保留此出处http://215687833.blog.51cto.com/6724358/1969381
以上是关于Puppet正则表达式(十七)的主要内容,如果未能解决你的问题,请参考以下文章