summaryrefslogtreecommitdiff
path: root/libre/mariadb/mysql.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <andre@pc-01.localdomain>2012-04-15 19:28:29 -0300
committerAndré Fabian Silva Delgado <andre@pc-01.localdomain>2012-04-15 19:28:29 -0300
commit3f8787917d574a6d71f9358746fb09fefedc74b6 (patch)
treeb4ac986521baa8386f455bdff107d4d74a443dad /libre/mariadb/mysql.install
parentfa3fb08b58f31f70b23250a098f2841903bec1aa (diff)
mariadb-5.5.23-1.4: fixed issues, now is stable version
Diffstat (limited to 'libre/mariadb/mysql.install')
-rw-r--r--libre/mariadb/mysql.install26
1 files changed, 26 insertions, 0 deletions
diff --git a/libre/mariadb/mysql.install b/libre/mariadb/mysql.install
new file mode 100644
index 000000000..9a4479215
--- /dev/null
+++ b/libre/mariadb/mysql.install
@@ -0,0 +1,26 @@
+post_install(){
+ groupadd -g 89 mysql &>/dev/null
+ useradd -u 89 -g mysql -d /var/lib/mysql -s /bin/false mysql &>/dev/null
+ usr/bin/mysql_install_db --user=mysql --basedir=/usr
+ chown -R mysql:mysql var/lib/mysql &>/dev/null
+}
+
+post_upgrade(){
+ getent group mysql >/dev/null 2>&1 || groupadd -g 89 mysql &>/dev/null
+ getent passwd mysql >/dev/null 2>&1 || useradd -u 89 -g mysql -d /var/lib/mysql -s /bin/false mysql &>/dev/null
+
+ if [ "$(vercmp $2 5.5)" -lt 0 ]; then
+ echo " >> "
+ echo " >> Major version update. Consider restart the service, and then running mysql_upgrade after it."
+ echo " >> "
+ fi
+}
+
+post_remove(){
+ if getent passwd mysql >/dev/null 2>&1; then
+ userdel mysql
+ fi
+ if getent group mysql >/dev/null 2>&1; then
+ groupdel mysql
+ fi
+}