summaryrefslogtreecommitdiffstats
path: root/satellit_installer/includes/50-add_mysql_dbs_users.inc
diff options
context:
space:
mode:
authorSimon Rettberg2016-01-13 13:58:24 +0100
committerSimon Rettberg2016-01-13 13:58:24 +0100
commit5787cbecfa71af980ebe01f073221bc6524c2dde (patch)
tree2fc546c6b96b414c71a3e93ac750c76cbc19c13a /satellit_installer/includes/50-add_mysql_dbs_users.inc
parentlighttpd.conf: Ignore Expect header (diff)
downloadsetup-scripts-5787cbecfa71af980ebe01f073221bc6524c2dde.tar.gz
setup-scripts-5787cbecfa71af980ebe01f073221bc6524c2dde.tar.xz
setup-scripts-5787cbecfa71af980ebe01f073221bc6524c2dde.zip
[SSPS] mysql: Grant DROP, CREATE, ALTER to sat user on sat db
Diffstat (limited to 'satellit_installer/includes/50-add_mysql_dbs_users.inc')
-rw-r--r--satellit_installer/includes/50-add_mysql_dbs_users.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/satellit_installer/includes/50-add_mysql_dbs_users.inc b/satellit_installer/includes/50-add_mysql_dbs_users.inc
index 73a15b1..75116f6 100644
--- a/satellit_installer/includes/50-add_mysql_dbs_users.inc
+++ b/satellit_installer/includes/50-add_mysql_dbs_users.inc
@@ -4,7 +4,7 @@ add_mysql_dbs_users() {
mysql_add_db sat
# $1=user, $2=database, $3=privileges, $4=password
- mysql_add_user sat sat "DELETE, INSERT, SELECT, UPDATE" "$MYSQL_SAT_PASS"
+ mysql_add_user sat sat "DELETE, INSERT, SELECT, UPDATE, ALTER, CREATE, DROP" "$MYSQL_SAT_PASS"
mysql_add_user openslx openslx ALL "$MYSQL_OPENSLX_PASS"
# $1=user, $2=database, $3=privileges
mysql_add_privs openslx sat ALL