aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bcd
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2011-02-06 23:14:36 +0000
committerNicolas Vigier <boklm@mageia.org>2011-02-06 23:14:36 +0000
commitc55fd3152cd01f01a345c58199bc66754544fa29 (patch)
treee706c6f42b8644f80ea8f980aee13a20f29b4e6b /modules/bcd
parent76d4413a608cd72d72a6525db6d55dcda9bb083f (diff)
downloadpuppet-c55fd3152cd01f01a345c58199bc66754544fa29.tar
puppet-c55fd3152cd01f01a345c58199bc66754544fa29.tar.gz
puppet-c55fd3152cd01f01a345c58199bc66754544fa29.tar.bz2
puppet-c55fd3152cd01f01a345c58199bc66754544fa29.tar.xz
puppet-c55fd3152cd01f01a345c58199bc66754544fa29.zip
add directory /var/lib/bcd
Diffstat (limited to 'modules/bcd')
-rw-r--r--modules/bcd/manifests/init.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/bcd/manifests/init.pp b/modules/bcd/manifests/init.pp
index d3855258..d0e0e50a 100644
--- a/modules/bcd/manifests/init.pp
+++ b/modules/bcd/manifests/init.pp
@@ -20,5 +20,13 @@ class bcd {
sudo::sudoers_config { "bcd":
content => template("bcd/sudoers.bcd")
}
+
+ file { "/var/lib/bcd":
+ ensure => directory
+ owner => $bcd_login,
+ group => $bcd_login,
+ mode => 755,
+ }
+
}
}