Skip to content

Instantly share code, notes, and snippets.

@mccun934
Created March 29, 2016 17:24
Show Gist options
  • Save mccun934/db8a0233840c2f329852d81aabb2e2ef to your computer and use it in GitHub Desktop.
Save mccun934/db8a0233840c2f329852d81aabb2e2ef to your computer and use it in GitHub Desktop.
From 8b18bf4ccd7589c592e6aa1eb6c40ba20f4c0716 Mon Sep 17 00:00:00 2001
From: David Davis <[email protected]>
Date: Mon, 28 Mar 2016 09:25:57 -0400
Subject: [PATCH] Fixes #14361 - Setting a couple missing squid options
---
manifests/config.pp | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/manifests/config.pp b/manifests/config.pp
index 82785fa..f4af2e2 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -115,8 +115,10 @@
cache_dir => [ 'aufs /var/spool/squid 10000 16 256' ],
template => 'short',
config_hash => {
- cache_peer => '127.0.0.1 parent 8751 0 no-digest no-query originserver name=PulpStreamer',
- cache_peer_access => 'PulpStreamer allow all',
+ cache_peer => '127.0.0.1 parent 8751 0 no-digest no-query originserver name=PulpStreamer',
+ cache_peer_access => 'PulpStreamer allow all',
+ range_offset_limit => 'none',
+ minimum_object_size => '0 kB',
},
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment