summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorGabriel Filion <gabster@lelutin.ca>2017-03-10 18:19:04 -0500
committerGabriel Filion <gabster@lelutin.ca>2017-03-10 18:19:36 -0500
commit425ad79683e59603f83e6484a2e32804273d4339 (patch)
tree5a911e12ac258cdeb47c520687e4c3b2ae2716cf /manifests
parentcebe42c1bcf7ebfbb989c1b6a7d416d98c947e64 (diff)
implement ensure absent for postfix::config
This does not have a special case for "non-standard" settings, since I don't know whether it is needed or not.
Diffstat (limited to 'manifests')
-rw-r--r--manifests/config.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index ce7af9e..a1eb651 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -43,7 +43,9 @@ define postfix::config ($ensure = present, $value, $nonstandard = false) {
}
absent: {
- fail "postfix::config ensure => absent: Not implemented"
+ exec { "postconf -X ${name}":
+ unless => "test \"x$(postconf -n ${name})\" = \"x\"",
+ }
}
}
}