diff options
author | Michael Scherer <misc@mageia.org> | 2012-01-08 14:47:05 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-01-08 14:47:05 +0000 |
commit | fd00691f753991ce6c8900691cf0007e06ff73e3 (patch) | |
tree | ba35422058f64be4ade437124aca11a855813691 /modules | |
parent | f1b0489d4023da5a5b48ea07f09d3fd1f25da9c8 (diff) | |
download | puppet-fd00691f753991ce6c8900691cf0007e06ff73e3.tar puppet-fd00691f753991ce6c8900691cf0007e06ff73e3.tar.gz puppet-fd00691f753991ce6c8900691cf0007e06ff73e3.tar.bz2 puppet-fd00691f753991ce6c8900691cf0007e06ff73e3.tar.xz puppet-fd00691f753991ce6c8900691cf0007e06ff73e3.zip |
simplify the manifests, by removing redundant declaration
Diffstat (limited to 'modules')
-rw-r--r-- | modules/buildsystem/manifests/init.pp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/modules/buildsystem/manifests/init.pp b/modules/buildsystem/manifests/init.pp index 06398fb0..ea78dcd1 100644 --- a/modules/buildsystem/manifests/init.pp +++ b/modules/buildsystem/manifests/init.pp @@ -35,9 +35,7 @@ class buildsystem { # FIXME Add again task-bs-cluster-main when it will require mgarepo instead of repsys $package_list = ['iurt'] - package { $package_list: - ensure => "installed" - } + package { $package_list: } apache::vhost_other_app { "repository.$domain": vhost_file => "buildsystem/vhost_repository.conf", @@ -245,9 +243,7 @@ class buildsystem { 'perl-Youri-Package', 'perl-Youri-Repository', 'perl-Youri-Utils', 'perl-Youri-Config', 'mga-youri-submit'] - package { $package_list: - ensure => installed; - } + package { $package_list: } } # $groups: array of secondary groups (only local groups, no ldap) |