pass db name and password for tests

This commit is contained in:
Girish Ramakrishnan
2016-05-13 19:12:17 -07:00
parent d9c5b2b642
commit 3f0e2024e4
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ function initialize(callback) {
certificates.getAdminCertificatePath(function (error, certFilePath, keyFilePath) {
if (error) return callback(error);
shell.sudo('seutp_infra', [ SETUP_INFRA_CMD, paths.DATA_DIR, config.fqdn(), config.adminFqdn(), certFilePath, keyFilePath ], callback);
shell.sudo('seutp_infra', [ SETUP_INFRA_CMD, paths.DATA_DIR, config.fqdn(), config.adminFqdn(), certFilePath, keyFilePath, config.database().name, config.database().password ], callback);
});
}