blob: 366e100f23ab421db64b60411956c63bee114507 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
class iurt {
# 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,
content => template("iurt/iurt.cauldron.conf")
}
}
|