diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-15 22:12:44 +0200 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2017-04-15 22:12:44 +0200 |
commit | 4bfba45e78d64412e57bc4b21d4652fbeb079d6c (patch) | |
tree | 7f4a67132d732851907354a1b256e8a25808a318 /modules | |
parent | bf8faa964c43f9496071483bff5550cc3a4114d4 (diff) | |
download | puppet-4bfba45e78d64412e57bc4b21d4652fbeb079d6c.tar puppet-4bfba45e78d64412e57bc4b21d4652fbeb079d6c.tar.gz puppet-4bfba45e78d64412e57bc4b21d4652fbeb079d6c.tar.bz2 puppet-4bfba45e78d64412e57bc4b21d4652fbeb079d6c.tar.xz puppet-4bfba45e78d64412e57bc4b21d4652fbeb079d6c.zip |
Try a better fix for db creation
Diffstat (limited to 'modules')
-rw-r--r-- | modules/youri-check/manifests/init.pp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/youri-check/manifests/init.pp b/modules/youri-check/manifests/init.pp index e8736d17..30b91171 100644 --- a/modules/youri-check/manifests/init.pp +++ b/modules/youri-check/manifests/init.pp @@ -4,6 +4,7 @@ class youri-check { $user = 'youri' $home = '/var/lib/youri' $home_check = '/var/www/youri-check' + $pgsql_password = extlookup('youri_pgsql','x') user { $user: comment => 'Youri Check', @@ -26,11 +27,6 @@ class youri-check { package { ['youri-check', 'perl-DBD-Pg', 'perl-Youri-Media']: } - $pgsql_password = extlookup('youri_pgsql','x') - postgresql::remote_db_and_user { 'youricauldron': - description => 'Youri cauldron', - password => $pgsql_password, - } } |