From: Paul Wise Date: Sun, 3 Apr 2016 12:42:27 +0000 (+0800) Subject: Fix broken symlinks in /etc/ssl/ca-global (RT#6182) X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=a35baa0935aad59e04659ef6d1567bf19e0d07e9;p=mirror%2Fdsa-puppet.git Fix broken symlinks in /etc/ssl/ca-global (RT#6182) --- diff --git a/modules/ssl/files/local-ssl-ca-global b/modules/ssl/files/local-ssl-ca-global index cb8bb34f4..bbc0d0c0f 100644 --- a/modules/ssl/files/local-ssl-ca-global +++ b/modules/ssl/files/local-ssl-ca-global @@ -1,5 +1,5 @@ DPkg::Pre-Install-Pkgs { - "if grep -q '^ca-certificates_.*\.deb$' ; then touch /run/dsa-ca-certificates-global ; fi"; + "if grep -q '/ca-certificates_.*\.deb$' ; then touch /run/dsa-ca-certificates-global ; fi"; }; DPkg::Post-Invoke { "if [ -e /run/dsa-ca-certificates-global ]; then /usr/local/sbin/update-ca-certificates-dsa --fresh --default --certsconf /etc/ca-certificates-global.conf --etccertsdir /etc/ssl/ca-global --hooksdir /dev/null ; rm -f /run/dsa-ca-certificates-global ; fi";