diff options
author | Antoine Beaupre <anarcat@koumbit.org> | 2011-06-21 22:38:40 -0400 |
---|---|---|
committer | Antoine Beaupre <anarcat@koumbit.org> | 2011-06-21 22:44:25 -0400 |
commit | 7c5492db8d7fdca7eddb9c6737c469935e9758d7 (patch) | |
tree | 0aae71065ec36100c5abf19012a60bfb95fd7516 /manifests | |
parent | e41eb2efc141015df96b496700f46c155cfa8805 (diff) | |
download | puppet-reprepro-7c5492db8d7fdca7eddb9c6737c469935e9758d7.tar.gz puppet-reprepro-7c5492db8d7fdca7eddb9c6737c469935e9758d7.tar.bz2 |
make incoming directory writable by all
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 906ac6f..6ac080a 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -62,7 +62,7 @@ class reprepro { "$basedir/incoming": ensure => directory, - mode => 0775, owner => reprepro, group => reprepro; + mode => 1777, owner => reprepro, group => reprepro; "$basedir/logs": ensure => directory, |