summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-01-29 23:21:32 +0100
committervarac <varacanero@zeromail.org>2016-01-29 23:21:50 +0100
commit08bfaccaea01fd2d334946428504e71a51748e3d (patch)
treefb80329e84a49dc5c9f0b78c8347c4c08eac1140 /manifests
parent2545e6088cca0d74d218202a8ac8cde9104e7044 (diff)
[bug] ship newer client discover scriptHEADmaster
than includes in squid-deb-proxy-client v. 0.8.13 to fix error messages being sent to stdout instead of stderr, see https://bugs.launchpad.net/ubuntu/+source/squid-deb-proxy/+bug/1505670
Diffstat (limited to 'manifests')
-rw-r--r--manifests/client.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index 324544c..049f740 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -1,5 +1,16 @@
+# install squid-deb-proxy-client package
class squid_deb_proxy::client {
package { 'squid-deb-proxy-client':
ensure => installed,
+ } ->
+
+ # ship newer client discover script than includes in squid-deb-proxy-client
+ # v. 0.8.13 to fix error messages being sent to stdout instead of stderr,
+ # see https://bugs.launchpad.net/ubuntu/+source/squid-deb-proxy/+bug/1505670
+ file { '/usr/share/squid-deb-proxy-client/apt-avahi-discover':
+ source => 'puppet:///modules/squid_deb_proxy/client/apt-avahi-discover',
+ mode => '0755',
+ owner => 'root',
+ group => 'root',
}
}