diff options
author | Patrick Uiterwijk <puiterwijk@redhat.com> | 2015-06-12 07:59:19 +0000 |
---|---|---|
committer | Patrick Uiterwijk <puiterwijk@redhat.com> | 2015-06-12 07:59:19 +0000 |
commit | b236fdfe293c59b41a06f7013e81f9bbc749a097 (patch) | |
tree | 5205f801cd416560affbc60a2cf3bc0a78cfa7fa | |
parent | 59924d35a40da58ad6cf24cb7050333924ce886c (diff) | |
download | ansible-b236fdfe293c59b41a06f7013e81f9bbc749a097.tar.gz ansible-b236fdfe293c59b41a06f7013e81f9bbc749a097.tar.xz ansible-b236fdfe293c59b41a06f7013e81f9bbc749a097.zip |
Remove the unused mirrormanager2 backend from varnish
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
-rw-r--r-- | roles/varnish/files/proxy.vcl | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/roles/varnish/files/proxy.vcl b/roles/varnish/files/proxy.vcl index 788b717f4..0fd5aa620 100644 --- a/roles/varnish/files/proxy.vcl +++ b/roles/varnish/files/proxy.vcl @@ -118,11 +118,6 @@ backend paste { .port = "10027"; } -backend mirrormanager2 { - .host = "localhost"; - .port = "10039"; -} - backend koschei { .host = "localhost"; .port = "10040"; @@ -192,9 +187,6 @@ sub vcl_recv { set req.url = regsub(req.url, "\?.*", ""); } } - if (req.url ~ "^/mirrormanager2/") { - set req.backend_hint = mirrormanager2; - } if (req.url ~ "^/updates/") { set req.backend_hint = bodhi; if (req.url ~ "^/updates/static/") { |