From: Silvio Rhatto Date: Thu, 2 Jun 2016 13:31:48 +0000 (-0300) Subject: Fixes drupal script path at drupal::makefiles X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=dca0a9a369f9f68a1482448b13cb92b1a1e5f648;p=puppet-drupal.git Fixes drupal script path at drupal::makefiles --- diff --git a/manifests/makefiles.pp b/manifests/makefiles.pp index 4f643fc..28f2507 100644 --- a/manifests/makefiles.pp +++ b/manifests/makefiles.pp @@ -40,7 +40,7 @@ class drupal::makefiles { } cron { "drupal-make-6": - command => "/usr/local/sbin/drupal make 6", + command => "/usr/local/bin/drupal make 6", user => root, # Run once a week to ensure the server has all dependencies weekday => 4, @@ -53,7 +53,7 @@ class drupal::makefiles { } cron { "drupal-make-7": - command => "/usr/local/sbin/drupal make 7", + command => "/usr/local/bin/drupal make 7", user => root, # Run once a week to ensure the server has all dependencies weekday => 4,