diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index bde758a..99e7125 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -34,7 +34,7 @@ class ssl { define check($port = '443', $interval = '60', $email = 'root', $hour = '0', $minute = '0', $weekday = '0') { cron { "ssl-cert-check-${name}": - command => "ssl-cert-check -a -s ${name} -p ${port} -q -x ${interval} -e ${email}", + command => "/usr/local/bin/ssl-cert-check -a -s ${name} -p ${port} -q -x ${interval} -e ${email}", user => root, hour => $hour, minute => $minute, |