From 1a278851da56f9748f48b817ecbda806f6a0331c Mon Sep 17 00:00:00 2001 From: Stephen Gran Date: Sun, 25 Aug 2013 10:51:03 +0100 Subject: [PATCH] it's an argument, not a predicate Signed-off-by: Stephen Gran --- modules/ssl/manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'] } -- 2.39.2