aboutsummaryrefslogtreecommitdiff
path: root/manifests/definitions/hash.pp
diff options
context:
space:
mode:
authorMarc Fournier <marc.fournier@camptocamp.com>2008-12-03 17:53:28 +0100
committerMarc Fournier <marc.fournier@camptocamp.com>2008-12-03 17:53:28 +0100
commit28df18c79fb71407af663ee9b3c214094e1551f1 (patch)
treeca379d7992fe56a3ca79f116c05c0558f858217b /manifests/definitions/hash.pp
downloadpuppet-postfix-28df18c79fb71407af663ee9b3c214094e1551f1.tar.gz
puppet-postfix-28df18c79fb71407af663ee9b3c214094e1551f1.tar.bz2
Initial import from bzr into github.
Diffstat (limited to 'manifests/definitions/hash.pp')
-rw-r--r--manifests/definitions/hash.pp19
1 files changed, 19 insertions, 0 deletions
diff --git a/manifests/definitions/hash.pp b/manifests/definitions/hash.pp
new file mode 100644
index 0000000..f21e270
--- /dev/null
+++ b/manifests/definitions/hash.pp
@@ -0,0 +1,19 @@
+define postfix-ng::hash ($ensure) {
+ file {"${name}":
+ ensure => $ensure,
+ mode => 600,
+ }
+
+ file {"${name}.db":
+ ensure => $ensure,
+ mode => 600,
+ require => [File["${name}"], Exec["generate ${name}.db"]],
+ }
+
+ exec {"generate ${name}.db":
+ command => "postmap ${name}",
+ #creates => "${name}.db", # this prevents postmap from being run !
+ subscribe => File["${name}"],
+ refreshonly => true
+ }
+}