diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-12-24 20:13:57 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-12-24 20:13:57 -0200 |
commit | d030ad8c5b68e5c6e4dd3834499e2adbe7d4b66c (patch) | |
tree | 8ddc98f50d52e68bfbda71faae79687e11b10720 /manifests | |
parent | f875b39faf971d26c04fd5254cc1c67a80adb5fc (diff) | |
download | puppet-nodo-d030ad8c5b68e5c6e4dd3834499e2adbe7d4b66c.tar.gz puppet-nodo-d030ad8c5b68e5c6e4dd3834499e2adbe7d4b66c.tar.bz2 |
Do not manage apt-cacher-ng server by now
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/role/proxy.pp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/manifests/role/proxy.pp b/manifests/role/proxy.pp index 6cd6148..ef9c86c 100644 --- a/manifests/role/proxy.pp +++ b/manifests/role/proxy.pp @@ -12,14 +12,13 @@ class nodo::role::proxy inherits nodo::base::vserver { ensure => installed, } - # Apt cacher - # TODO: still buggy and needs hardening + # TODO: Apt cacher: still buggy and needs hardening package { 'apt-cacher-ng': ensure => purged, } - service { 'apt-cacher-ng': - ensure => stopped, - require => Package['apt-cacher-ng'], - } + #service { 'apt-cacher-ng': + # ensure => stopped, + # require => Package['apt-cacher-ng'], + #} } |