aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-02-21 14:39:02 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-02-21 14:39:02 -0300
commitd293575b40ad98fd9dd050513cf961629357ff79 (patch)
tree4a126bb1421f4b3f69bf2b6c04c9f77d04fee4c3
parent9b923947fe1c4c54d34abb56714d78ffa07a9fa0 (diff)
downloadpuppet-nodo-d293575b40ad98fd9dd050513cf961629357ff79.tar.gz
puppet-nodo-d293575b40ad98fd9dd050513cf961629357ff79.tar.bz2
Ensure fetchmail is not a service
-rw-r--r--manifests/subsystems/utils/network.pp7
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/subsystems/utils/network.pp b/manifests/subsystems/utils/network.pp
index eb6f9f6..b0dc941 100644
--- a/manifests/subsystems/utils/network.pp
+++ b/manifests/subsystems/utils/network.pp
@@ -55,6 +55,13 @@ class utils::network inherits utils::network::minimal {
ensure => installed,
}
+ # Fix: ensure that fetchmail is not a service
+ service { 'fetchmail':
+ ensure => stopped,
+ enable => false,
+ require => Package['fetchmail'],
+ }
+
# Old packages
# About firegpg, see http://tails.boum.org/bugs/FireGPG_may_be_unsafe/
package { [ 'silc', 'twinkle', 'konqueror', 'transmission', 'amule', 'epiphany-browser',