core/mariadb/mariadb.install

24 lines
844 B
Plaintext
Raw Normal View History

post_install(){
groupadd -g 89 mysql &>/dev/null
2015-11-20 05:29:03 +08:00
useradd -u 89 -g 89 -d /var/lib/mysql -s /bin/false mysql &>/dev/null
2015-11-20 05:29:03 +08:00
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
2015-11-20 05:29:03 +08:00
getent passwd mysql >/dev/null 2>&1 || useradd -u 89 -g mysql -d /var/lib/mysql \
-s /bin/false mysql &>/dev/null
2015-11-20 05:29:03 +08:00
if [[ "$(vercmp $2 10.1)" -lt 0 ]]; then
echo ":: Major version update. Consider restarting mysqld.service and"
echo " running mysql_upgrade afterwards."
fi
}