From 26cc2360fbf79c4e361de7b59e0c4d00e2d9b201 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 14 Oct 2016 09:29:36 -0300 Subject: Use drupal user for cronjobs --- manifests/maintenance.pp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'manifests/maintenance.pp') diff --git a/manifests/maintenance.pp b/manifests/maintenance.pp index 16f4c6a..720089e 100644 --- a/manifests/maintenance.pp +++ b/manifests/maintenance.pp @@ -2,21 +2,22 @@ class drupal::maintenance { # Run drupal cron cron { "drupal-cron": command => "/usr/local/bin/drupal cron &> /dev/null", - user => root, + user => drupal, hour => "*/1", minute => "15", ensure => present, - require => File['/usr/local/sbin/drupal'], + require => [ File['/usr/local/sbin/drupal'], User['drupal'] ], } # Keep themes and modules up-to-date cron { "drupal-update": command => "/usr/local/bin/drupal cron-update", - user => root, + user => drupal, # Run once a week after security releases (usually on Wednesdays) weekday => 5, hour => "02", minute => "30", ensure => present, + require => User['drupal'], } } -- cgit v1.2.3