core/mariadb/mariadb.install
2015-11-19 22:29:03 +01:00

24 lines
844 B
Plaintext

post_install(){
groupadd -g 89 mysql &>/dev/null
useradd -u 89 -g 89 -d /var/lib/mysql -s /bin/false mysql &>/dev/null
echo ":: You need to initialize the MariaDB data directory prior to starting"
echo " the service. This can be done with mysql_install_db command, e.g.:"
echo " mysql_install_db --user=mysql --basedir=/usr --datadir=/var/lib/mysql"
if hash systemd-tmpfiles &> /dev/null; then
systemd-tmpfiles --create mysql.conf
fi
}
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 10.1)" -lt 0 ]]; then
echo ":: Major version update. Consider restarting mysqld.service and"
echo " running mysql_upgrade afterwards."
fi
}