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/init.pp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'manifests/init.pp') diff --git a/manifests/init.pp b/manifests/init.pp index 577e6fe..da68b08 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -4,6 +4,29 @@ class drupal { include drupal::makefiles include drupal::maintenance + group { 'drupal': + ensure => present, + allowdupe => false, + } + + user { 'drupal': + ensure => present, + allowdupe => false, + shell => '/bin/bash', + gid => 'drupal', + home => '/var/lib/drupal', + require => Group['drupal'], + } + + # This shall hold drush-backups in the future + file { '/var/lib/drupal': + ensure => directory, + owner => 'drupal', + group => 'drupal', + mode => 0750, + require => User['drupal'], + } + # TODO: old location, remove in the future file { "/usr/local/sbin/drupal": ensure => absent, -- cgit v1.2.3