PKGBUILDs/extra/mariadb/mariadb.install

42 lines
1.1 KiB
Plaintext
Raw Normal View History

2014-12-05 16:47:24 +00:00
post_install(){
2016-07-24 21:17:42 +00:00
if hash systemd-sysusers &> /dev/null; then
systemd-sysusers mariadb.conf
fi
if hash systemd-tmpfiles &> /dev/null; then
systemd-tmpfiles --create mariadb.conf
fi
2014-12-05 16:47:24 +00:00
2015-03-05 13:33:29 +00: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"
2014-12-05 16:47:24 +00:00
}
post_upgrade(){
2016-07-24 21:17:42 +00:00
if hash systemd-sysusers &> /dev/null; then
systemd-sysusers mariadb.conf
fi
if hash systemd-tmpfiles &> /dev/null; then
systemd-tmpfiles --create mariadb.conf
fi
2014-12-05 16:47:24 +00:00
if [[ "$(vercmp $2 5.5.25-4)" -lt 0 ]] && [[ -d /data ]]; then
for x in data/*; do
2015-03-07 14:54:57 +00:00
cp -r $x var/lib/mysql
2014-12-05 16:47:24 +00:00
done
rm -rf data
fi
if [[ "$(vercmp $2 5.5.25-5)" -lt 0 ]]; then
echo ":: mysql.service has been renamed to mysqld.service to keep"
echo " consistency with MySQL package."
fi
if [[ "$(vercmp $2 10.0)" -lt 0 ]]; then
echo ":: Major version update. Consider restarting mysqld.service and"
echo " running mysql_upgrade afterwards."
fi
}