aboutsummaryrefslogtreecommitdiffstats
path: root/modules/youri-check/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/youri-check/manifests/init.pp')
-rw-r--r--modules/youri-check/manifests/init.pp9
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/youri-check/manifests/init.pp b/modules/youri-check/manifests/init.pp
index 39dfcea7..4eb5c51f 100644
--- a/modules/youri-check/manifests/init.pp
+++ b/modules/youri-check/manifests/init.pp
@@ -4,7 +4,7 @@ class youri-check {
$user = 'youri'
$config = '/etc/youri/cauldron.conf'
$outdir = '/var/www/youri-check'
- $home = '/var/tmp/youri'
+ $home = '/var/lib/youri'
user { $user:
comment => 'Youri Check',
@@ -13,6 +13,13 @@ class youri-check {
home => $home,
}
+ file { $home:
+ ensure => directory,
+ owner => $user,
+ group => $user,
+ mode => 755,
+ }
+
$pgsql_server = "$vhost"
$pgsql_db = 'youri_check'
$pgsql_user = 'youri'