diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-02 10:31:48 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-02 10:31:48 -0300 |
commit | dca0a9a369f9f68a1482448b13cb92b1a1e5f648 (patch) | |
tree | 3951c0f26167ff91578b7ed72f6309b7d8380865 | |
parent | aa0f7945678e5ff46de5ef8953f6b393f6969d47 (diff) | |
download | puppet-drupal-dca0a9a369f9f68a1482448b13cb92b1a1e5f648.tar.gz puppet-drupal-dca0a9a369f9f68a1482448b13cb92b1a1e5f648.tar.bz2 |
Fixes drupal script path at drupal::makefiles
-rw-r--r-- | manifests/makefiles.pp | 4 |
1 files changed, 2 insertions, 2 deletions
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, |