diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2017-03-29 11:44:10 +0200 |
---|---|---|
committer | Nicolas Lécureuil <neoclust@mageia.org> | 2017-03-29 11:44:10 +0200 |
commit | 79bc5bce37f926243ef373996ddc22d641fc373a (patch) | |
tree | b6edd29dafcece6f2aec09471b642aedbc897477 /modules/bugzilla/manifests | |
parent | 8ba09a92724d07ee763663d52657d529d598642c (diff) | |
download | puppet-79bc5bce37f926243ef373996ddc22d641fc373a.tar puppet-79bc5bce37f926243ef373996ddc22d641fc373a.tar.gz puppet-79bc5bce37f926243ef373996ddc22d641fc373a.tar.bz2 puppet-79bc5bce37f926243ef373996ddc22d641fc373a.tar.xz puppet-79bc5bce37f926243ef373996ddc22d641fc373a.zip |
Fix database name
Diffstat (limited to 'modules/bugzilla/manifests')
-rwxr-xr-x[-rw-r--r--] | modules/bugzilla/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 06c53abc..ca5e7ea7 100644..100755 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -12,7 +12,7 @@ class bugzilla { $pgsql_password = extlookup('bugzilla_pgsql','x') $ldap_password = extlookup('bugzilla_ldap','x') - postgresql::remote_db_and_user { 'bugs': + postgresql::remote_db_and_user { 'bugs-dev': description => 'Bugzilla database', password => $pgsql_password, } |