Merge branch 'development' of github.com:th3r00t/pyShelf into development

missed upstream changes
This commit is contained in:
Mike Young
2019-12-31 13:26:42 -05:00

2
installer vendored
View File

@@ -305,7 +305,7 @@ if RequiredServices().db_server_found(req) is False:
db_name = "pyshelf"
psql_cmd = """
CREATE DATABASE %s;
CREATE USER %s WITH ENCRYPTED PASSWORD \'%s\';
CREATE USER %s WITH PASSWORD \'%s\';
GRANT ALL PRIVILEGES ON DATABASE %s TO %s;
""" % (db_name, sql_user, sql_pass, db_name, sql_user)
_sql_file = "create_db.sql"