diff options
author | Sharif Nassar <sharif@mrwacky.com> | 2011-06-20 13:31:25 -0700 |
---|---|---|
committer | Sharif Nassar <sharif@mrwacky.com> | 2011-06-20 13:31:25 -0700 |
commit | 96936d9efb49c39ea1cd8d1f5811f10990d9286c (patch) | |
tree | e3a0d3edf01eb8e19aec837e1ce6869e6f626b29 | |
parent | 031bf261289dcbb32e63b053ed5b3a82117698c0 (diff) | |
download | puppet-concat-96936d9efb49c39ea1cd8d1f5811f10990d9286c.tar.gz puppet-concat-96936d9efb49c39ea1cd8d1f5811f10990d9286c.tar.bz2 |
Make sure interesting data in the concatdir is only available to root
-rw-r--r-- | manifests/setup.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/setup.pp b/manifests/setup.pp index 77ba47f..fa8c7eb 100644 --- a/manifests/setup.pp +++ b/manifests/setup.pp @@ -30,7 +30,7 @@ class concat::setup { ensure => directory, owner => root, group => $root_group, - mode => 755; + mode => '0750'; } } |