diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/maintenance.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/maintenance.pp b/manifests/maintenance.pp index 097ebcc..16f4c6a 100644 --- a/manifests/maintenance.pp +++ b/manifests/maintenance.pp @@ -1,7 +1,7 @@ class drupal::maintenance { # Run drupal cron cron { "drupal-cron": - command => "/usr/local/sbin/drupal cron &> /dev/null", + command => "/usr/local/bin/drupal cron &> /dev/null", user => root, hour => "*/1", minute => "15", @@ -11,7 +11,7 @@ class drupal::maintenance { # Keep themes and modules up-to-date cron { "drupal-update": - command => "/usr/local/sbin/drupal cron-update", + command => "/usr/local/bin/drupal cron-update", user => root, # Run once a week after security releases (usually on Wednesdays) weekday => 5, |