将数组传递给定义的木偶资源

时间:2015-09-25 21:13:42

标签: puppet

我想测试我的环境中是否存在多个软件包,基于此测试我想生成最终目录。

if !defined( Package[ 'apache2' ] ) {
    package { 'apache2':
        ensure  => installed,
    }
}
if !defined( Package[ 'libapache2-svn' ] ) {
    package { 'libapache2-svn':
        ensure  => installed,
    }
}

将来我想以下列方式进行控制:

Package { ensure => "installed" }
$packageList = [ 'apache2', 'libapache2-svn' ]

if !defined( Package[ $packageList ] ) {
    package { $packageList: }
}

0 个答案:

没有答案