diff options
author | mh <mh@immerda.ch> | 2013-05-20 18:54:13 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2013-05-20 18:54:13 +0200 |
commit | 39f1218960348d43bd368bff546d9467a1264e0d (patch) | |
tree | b25b37b9003f02f3226a3cf949e4938e8511808e /manifests/disable/base.pp | |
parent | 8e43dc85da5a5e45e88aef5f7c32c9cc1c35201c (diff) | |
download | puppet-postfix-39f1218960348d43bd368bff546d9467a1264e0d.tar.gz puppet-postfix-39f1218960348d43bd368bff546d9467a1264e0d.tar.bz2 |
debian's service provider has some issues if the script is absent, we can workaround this problem using the trick of this patch
Diffstat (limited to 'manifests/disable/base.pp')
-rw-r--r-- | manifests/disable/base.pp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/disable/base.pp b/manifests/disable/base.pp new file mode 100644 index 0000000..5c56c70 --- /dev/null +++ b/manifests/disable/base.pp @@ -0,0 +1,12 @@ +class postfix::disable::base { + + service{'postfix': + ensure => stopped, + enable => false, + } + package{'postfix': + ensure => absent, + require => Service['postfix'], + } + +} |