Skip to content
Snippets Groups Projects
Commit 9b5f7a47 authored by Davisson Henrique Paulino's avatar Davisson Henrique Paulino
Browse files

fixed ci

parent 98cb32af
No related branches found
No related tags found
2 merge requests!4Issue/16,!1Issue/9
......@@ -8,6 +8,4 @@ config.db_config = {
port: 5432
};
config.fqdn = 'pinsis.c3sl.ufpr.br';
config.agentVersion = 0.0;
......@@ -47,7 +47,7 @@ if [[ "$HAS_USER" -eq 0 ]]; then
else
CREATE_QUERY="CREATE USER \"$USERNAME\" WITH PASSWORD '${PASSWORD}';"
psql -c "${CREATE_QUERY}"
psql -d "$DATABASE_NAME" -c "${CREATE_QUERY}"
fi
GRANT_QUERY="GRANT ${PRIVILAGES} ON ALL TABLES IN SCHEMA \"${SCHEMA_NAME}\" to \"${USERNAME}\";"
......
var config = module.exports = {};
config.db_config = {
user: 'user',
password: 'password',
database: 'dbname_test',
user: 'test',
password: 'test',
database: 'test',
host: 'localhost',
port: 5432
};
config.fqdn = 'pinsis.c3sl.ufpr.br';
config.agentVersion = 0.0;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment