From: Stephen Gran Date: Sun, 25 Aug 2013 09:51:03 +0000 (+0100) Subject: it's an argument, not a predicate X-Git-Url: https://git.donarmstrong.com/?p=dsa-puppet.git;a=commitdiff_plain;h=1a278851da56f9748f48b817ecbda806f6a0331c it's an argument, not a predicate Signed-off-by: Stephen Gran --- diff --git a/modules/ssl/manifests/init.pp b/modules/ssl/manifests/init.pp index af909f86..bdc8ff5f 100644 --- a/modules/ssl/manifests/init.pp +++ b/modules/ssl/manifests/init.pp @@ -77,7 +77,7 @@ class ssl { } exec { 'cleanup_dead_links': - command => 'find /etc/ssl/certs -mindepth 1 -maxdepth 1 -L -type l -delete', + command => 'find -L /etc/ssl/certs -mindepth 1 -maxdepth 1 -type l -delete', refreshonly => true, notify => Exec['c_rehash /etc/ssl/certs'] }