summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-08-17 22:31:07 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-08-17 22:31:07 -0300
commit4250af19b6c1c2b854957d86dd7a7354f1f898e6 (patch)
tree117c7b7b513df75587e80a0d9418d98ef2bd0efc
parent1156b6f823e94c963cb0db7586cf56b801ea930f (diff)
Group and ownership for hash files
-rw-r--r--manifests/definitions/hash.pp4
1 files changed, 4 insertions, 0 deletions
diff --git a/manifests/definitions/hash.pp b/manifests/definitions/hash.pp
index 9fa508b..c8bb7c7 100644
--- a/manifests/definitions/hash.pp
+++ b/manifests/definitions/hash.pp
@@ -51,6 +51,8 @@ define postfix::hash ($ensure="present", $source = false) {
file {"${name}":
ensure => $ensure,
mode => 600,
+ owner => root,
+ group => root,
seltype => $postfix_seltype,
require => Package["postfix"],
}
@@ -59,6 +61,8 @@ define postfix::hash ($ensure="present", $source = false) {
file {"${name}":
ensure => $ensure,
mode => 600,
+ owner => root,
+ group => root,
source => $source,
seltype => $postfix_seltype,
require => Package["postfix"],