From 0f87d3166b41e2728ddf9ba981a4585d03c31d04 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?=
 <coadde@parabola.nu>
Date: Mon, 11 May 2015 20:51:14 -0300
Subject: move [~coadde] to ssh://git@projects.parabola.nu/~git/pcr.git

---
 ~coadde/mariadb/mysql.install | 26 --------------------------
 1 file changed, 26 deletions(-)
 delete mode 100644 ~coadde/mariadb/mysql.install

(limited to '~coadde/mariadb/mysql.install')

diff --git a/~coadde/mariadb/mysql.install b/~coadde/mariadb/mysql.install
deleted file mode 100644
index 9a4479215..000000000
--- a/~coadde/mariadb/mysql.install
+++ /dev/null
@@ -1,26 +0,0 @@
-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
-}
-- 
cgit v1.2.3-2-g168b