diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-17 20:57:21 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-17 20:57:21 -0300 |
commit | c38a65d0c8565ebe3d22a72c396f233929b93287 (patch) | |
tree | 90592df1a872e4f2a1c571a25b9552688df16690 /manifests/disable.pp | |
parent | 50a114ab258bd5b9186b61a9c73d82f2ffdab3f6 (diff) | |
parent | 969076a813b88dafd222c413bf6fbabab837eafb (diff) | |
download | puppet-postfix-c38a65d0c8565ebe3d22a72c396f233929b93287.tar.gz puppet-postfix-c38a65d0c8565ebe3d22a72c396f233929b93287.tar.bz2 |
Conflicts:
manifests/init.pp
templates/master.cf.debian-7.erb
Diffstat (limited to 'manifests/disable.pp')
-rw-r--r-- | manifests/disable.pp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/disable.pp b/manifests/disable.pp new file mode 100644 index 0000000..c233ec6 --- /dev/null +++ b/manifests/disable.pp @@ -0,0 +1,7 @@ +# remove postfix +class postfix::disable { + case $::operatingsystem { + debian: { include postfix::disable::debian } + default: { include postfix::disable::base } + } +} |