diff options
author | Olivier Blin <blino@mageia.org> | 2010-11-23 22:00:44 +0000 |
---|---|---|
committer | Olivier Blin <blino@mageia.org> | 2010-11-23 22:00:44 +0000 |
commit | d88a66ce38730c29f5ca0c8df9c864e6886c9496 (patch) | |
tree | 5826d9e105b5648404d64234dac169ce817298b3 | |
parent | f91e61f3373b52707132c63042970e9578874487 (diff) | |
download | puppet-d88a66ce38730c29f5ca0c8df9c864e6886c9496.tar puppet-d88a66ce38730c29f5ca0c8df9c864e6886c9496.tar.gz puppet-d88a66ce38730c29f5ca0c8df9c864e6886c9496.tar.bz2 puppet-d88a66ce38730c29f5ca0c8df9c864e6886c9496.tar.xz puppet-d88a66ce38730c29f5ca0c8df9c864e6886c9496.zip |
ensure /etc/iurt/build is a directory
-rw-r--r-- | modules/buildsystem/manifests/init.pp | 5 |
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") } |