aboutsummaryrefslogtreecommitdiffstats
path: root/modules/iurt/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'modules/iurt/manifests')
-rw-r--r--modules/iurt/manifests/init.pp21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/iurt/manifests/init.pp b/modules/iurt/manifests/init.pp
new file mode 100644
index 00000000..75a2f5ad
--- /dev/null
+++ b/modules/iurt/manifests/init.pp
@@ -0,0 +1,21 @@
+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;
+ }
+
+ file { '/home/buildbot/.iurt.cauldron.conf':
+ ensure => present,
+ owner => buildbot,
+ group => buildbot,
+ mode => 644,
+ require => Package["iurt"],
+ content => "template("buildsystem/.iurt.cauldron.conf")"
+ }
+
+}
+