aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/shadow/manifests/init.pp
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2011-01-20 18:21:17 +0000
committerNicolas Vigier <boklm@mageia.org>2011-01-20 18:21:17 +0000
commitc1fef280d2ce9fc8df50b3d48a40b55d2163ab76 (patch)
treeaa237a42a7cf20b79d937e39ee2727821344d55f /deployment/shadow/manifests/init.pp
parente3a739a518ee5f30211873a6b9817d7c2faa4ced (diff)
downloadpuppet-c1fef280d2ce9fc8df50b3d48a40b55d2163ab76.tar
puppet-c1fef280d2ce9fc8df50b3d48a40b55d2163ab76.tar.gz
puppet-c1fef280d2ce9fc8df50b3d48a40b55d2163ab76.tar.bz2
puppet-c1fef280d2ce9fc8df50b3d48a40b55d2163ab76.tar.xz
puppet-c1fef280d2ce9fc8df50b3d48a40b55d2163ab76.zip
add shadow module for login.defs
Diffstat (limited to 'deployment/shadow/manifests/init.pp')
-rw-r--r--deployment/shadow/manifests/init.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/deployment/shadow/manifests/init.pp b/deployment/shadow/manifests/init.pp
new file mode 100644
index 00000000..1205c085
--- /dev/null
+++ b/deployment/shadow/manifests/init.pp
@@ -0,0 +1,8 @@
+class shadow {
+ file {"/etc/login.defs":
+ owner => 'root',
+ group => 'shadow',
+ mode => 640,
+ source => 'shadow/login.defs',
+ }
+}