summaryrefslogtreecommitdiff
path: root/manifests/packages.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-08-08 15:31:23 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-08-08 15:31:23 -0300
commita2d97cac1eb0a78652f672b65ae3046301706d5d (patch)
treefecd161ad33af30954ce250fbe6b7a2703b8ff35 /manifests/packages.pp
parentc1105b21452d84383b284690af70f3796e706749 (diff)
downloadpuppet-mail-a2d97cac1eb0a78652f672b65ae3046301706d5d.tar.gz
puppet-mail-a2d97cac1eb0a78652f672b65ae3046301706d5d.tar.bz2
We'll force SSL squirrel login through the proxy
Diffstat (limited to 'manifests/packages.pp')
-rw-r--r--manifests/packages.pp7
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/packages.pp b/manifests/packages.pp
index e9f351c..fa7865f 100644
--- a/manifests/packages.pp
+++ b/manifests/packages.pp
@@ -19,7 +19,12 @@ class mail::packages {
ensure => installed,
}
- package { [ 'squirrelmail', 'squirrelmail-secure-login', 'squirrelmail-locales' ]:
+ package { [ 'squirrelmail', 'squirrelmail-locales' ]:
ensure => installed,
}
+
+ # We'll force SSL through the proxy
+ package { 'squirrelmail-secure-login' :
+ ensure: absent,
+ }
}