diff options
author | Michael Scherer <misc@mageia.org> | 2012-01-08 01:17:55 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-01-08 01:17:55 +0000 |
commit | 75da42f6ab1232afae3ae7cfbaaff4723e9c9b4c (patch) | |
tree | a06e0cc869e9411de742d81d505c7191b05a77fb | |
parent | dd08acdaee2ecf064fb53156aeb6d2c28cfc82ec (diff) | |
download | puppet-75da42f6ab1232afae3ae7cfbaaff4723e9c9b4c.tar puppet-75da42f6ab1232afae3ae7cfbaaff4723e9c9b4c.tar.gz puppet-75da42f6ab1232afae3ae7cfbaaff4723e9c9b4c.tar.bz2 puppet-75da42f6ab1232afae3ae7cfbaaff4723e9c9b4c.tar.xz puppet-75da42f6ab1232afae3ae7cfbaaff4723e9c9b4c.zip |
remove values already set by default
-rw-r--r-- | modules/mirror/manifests/init.pp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/modules/mirror/manifests/init.pp b/modules/mirror/manifests/init.pp index b9c971e1..b1c4d652 100644 --- a/modules/mirror/manifests/init.pp +++ b/modules/mirror/manifests/init.pp @@ -33,9 +33,6 @@ class mirror { } file { "mirror_$name": path => "$bindir/mirror_$name", - ensure => present, - owner => root, - group => root, mode => 755, content => template("mirror/mirrordir"), } @@ -52,9 +49,6 @@ class mirror { class main inherits base { file { "update_timestamp": path => "$bindir/update_timestamp", - ensure => present, - owner => root, - group => root, mode => 755, content => template("mirror/update_timestamp") } |