aboutsummaryrefslogtreecommitdiff
path: root/manifests/maintenance.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/maintenance.pp')
-rw-r--r--manifests/maintenance.pp7
1 files changed, 4 insertions, 3 deletions
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'],
}
}