diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-05-29 13:49:06 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-05-29 13:49:06 -0300 |
commit | 6a80d7b13af9775dc848b8011fd225928fe6b408 (patch) | |
tree | 8dfc84f8f6ee1c4e04529089859d29cfb2a374d6 /manifests/init.pp | |
parent | c9bf46dd5de8b5495888378e12e3a016f0297801 (diff) | |
download | puppet-exim-6a80d7b13af9775dc848b8011fd225928fe6b408.tar.gz puppet-exim-6a80d7b13af9775dc848b8011fd225928fe6b408.tar.bz2 |
Adding exim::disabled
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index ebaeda3..27e5bdf 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -68,3 +68,9 @@ class exim { } } + +class exim::disabled inherits exim { + Service['exim4'] { + ensure => stopped, + } +} |