diff options
author | Israel Madueme <purelogiq@gmail.com> | 2018-03-21 22:00:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-21 22:00:33 +0100 |
commit | 9356ed8882760e0b724db963a0dff8f8d1943450 (patch) | |
tree | 05fe383b3acae5e3d7f9ffcd6e380c8691726195 /Bugzilla/Install | |
parent | 24eeb9e547d9a49838dea6c796ede1ce2bcbd5f3 (diff) | |
download | bugzilla-9356ed8882760e0b724db963a0dff8f8d1943450.tar.gz bugzilla-9356ed8882760e0b724db963a0dff8f8d1943450.tar.xz |
Bug 1447669 - Add localconfig parameter for changing shadowdb user and pass
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Localconfig.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Bugzilla/Install/Localconfig.pm b/Bugzilla/Install/Localconfig.pm index de2219f16..7a913358c 100644 --- a/Bugzilla/Install/Localconfig.pm +++ b/Bugzilla/Install/Localconfig.pm @@ -175,6 +175,14 @@ use constant LOCALCONFIG_VARS => ( name => 'inbound_proxies', default => _migrate_param( 'inbound_proxies', '' ), }, + { + name => 'shadowdb_user', + default => '', + }, + { + name => 'shadowdb_pass', + default => '', + } ); |