aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/common.pp
diff options
context:
space:
mode:
authorOlivier Blin <blino@mageia.org>2010-11-01 11:23:02 +0000
committerOlivier Blin <blino@mageia.org>2010-11-01 11:23:02 +0000
commit81e4ef24953cbb90ef50e447898035753c17cab5 (patch)
tree348a180591b50a7483d0dee025bc4862a850cd96 /manifests/common.pp
parent4e05afaf21a846bf7080a4299f88cf35039c84e8 (diff)
downloadpuppet-81e4ef24953cbb90ef50e447898035753c17cab5.tar
puppet-81e4ef24953cbb90ef50e447898035753c17cab5.tar.gz
puppet-81e4ef24953cbb90ef50e447898035753c17cab5.tar.bz2
puppet-81e4ef24953cbb90ef50e447898035753c17cab5.tar.xz
puppet-81e4ef24953cbb90ef50e447898035753c17cab5.zip
install task-bs-cluster-chroot and iurt on build nodes (common class)
Diffstat (limited to 'manifests/common.pp')
-rw-r--r--manifests/common.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/common.pp b/manifests/common.pp
index f62cfee4..b48abb40 100644
--- a/manifests/common.pp
+++ b/manifests/common.pp
@@ -73,3 +73,14 @@ class default_mageia_server {
include ntp
include postfix::simple_relay
}
+
+class default_mageia_buildnode {
+ # build node common settings
+
+ # we could have the following skip list to use less space:
+ # '/(drakx-installer-binaries|drakx-installer-advertising|gfxboot|drakx-installer-stage2|mandriva-theme)/'
+ $package_list = ['task-bs-cluster-chroot', 'iurt']
+ package { $package_list:
+ ensure => installed;
+ }
+}