summaryrefslogtreecommitdiff
path: root/libre/mariadb/mariadb.install
blob: f56a0dcaa6297773c9c945cb69287b9ebe43c01c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
post_install(){
  groupadd -g 89 mysql &>/dev/null
  useradd -u 89 -g mysql -d /var/lib/mariadb -s /bin/false mysql &>/dev/null
  /usr/bin/mysql_install_db --user=mysql --basedir=/usr --datadir=/var/lib/mariadb
  chown -R mysql:mysql /var/lib/mariadb &>/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/mariadb -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
}