aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests
diff options
context:
space:
mode:
authorOlivier Blin <blino@mageia.org>2010-11-23 22:00:44 +0000
committerOlivier Blin <blino@mageia.org>2010-11-23 22:00:44 +0000
commitd88a66ce38730c29f5ca0c8df9c864e6886c9496 (patch)
tree5826d9e105b5648404d64234dac169ce817298b3 /modules/buildsystem/manifests
parentf91e61f3373b52707132c63042970e9578874487 (diff)
downloadpuppet-d88a66ce38730c29f5ca0c8df9c864e6886c9496.tar
puppet-d88a66ce38730c29f5ca0c8df9c864e6886c9496.tar.gz
puppet-d88a66ce38730c29f5ca0c8df9c864e6886c9496.tar.bz2
puppet-d88a66ce38730c29f5ca0c8df9c864e6886c9496.tar.xz
puppet-d88a66ce38730c29f5ca0c8df9c864e6886c9496.zip
ensure /etc/iurt/build is a directory
Diffstat (limited to 'modules/buildsystem/manifests')
-rw-r--r--modules/buildsystem/manifests/init.pp5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/buildsystem/manifests/init.pp b/modules/buildsystem/manifests/init.pp
index 23c725f7..a92a08cd 100644
--- a/modules/buildsystem/manifests/init.pp
+++ b/modules/buildsystem/manifests/init.pp
@@ -109,11 +109,16 @@ class buildsystem {
ensure => installed;
}
+ file { "/etc/iurt/build":
+ ensure => "directory",
+ }
+
file { "/etc/iurt/build/cauldron.conf":
ensure => present,
owner => $build_login,
group => $build_login,
mode => 644,
+ require => File["/etc/iurt/build"],
content => template("buildsystem/iurt.cauldron.conf")
}