From 8e7ef1550cc8a4f816a0f4d7235df36b48664998 Mon Sep 17 00:00:00 2001 From: Morgan Haskel Date: Mon, 12 May 2014 15:01:44 -0400 Subject: [PATCH] Fix lib path for Ubuntu 10.04. --- manifests/mod/proxy_html.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/mod/proxy_html.pp b/manifests/mod/proxy_html.pp index a30c328c9..69894f21c 100644 --- a/manifests/mod/proxy_html.pp +++ b/manifests/mod/proxy_html.pp @@ -14,6 +14,7 @@ } $loadfiles = $::apache::params::distrelease ? { '6' => ['/usr/lib/libxml2.so.2'], + '10' => ['/usr/lib/libxml2.so.2'], default => ["/usr/lib/${gnu_path}-linux-gnu/libxml2.so.2"], } }