2017-12-31 00:00:39 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-01-18 13:29:56 +00:00
|
|
|
post_install() {
|
2024-08-14 10:24:08 +00:00
|
|
|
cat <<-EOM
|
|
|
|
:: You need to initialize the MariaDB data directory prior to starting
|
|
|
|
the service. This can be done with mariadb-install-db command, e.g.:
|
|
|
|
# mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql
|
|
|
|
EOM
|
2014-12-05 16:47:24 +00:00
|
|
|
}
|
|
|
|
|
2019-02-24 21:19:41 +00:00
|
|
|
post_upgrade() {
|
2019-01-18 13:29:56 +00:00
|
|
|
# show for feature release: 10.1 -> 10.2 -> 10.3 -> ...
|
2019-04-05 12:37:31 +00:00
|
|
|
if [ $(vercmp "${1%.*-*}" "${2%.*-*}") -ne 0 ]; then
|
2024-08-14 10:24:08 +00:00
|
|
|
cat <<-EOM
|
|
|
|
:: MariaDB was updated to a new feature release. To update the data run:
|
|
|
|
# systemctl restart mariadb.service && mariadb-upgrade -u root -p
|
|
|
|
EOM
|
2019-01-18 13:29:56 +00:00
|
|
|
fi
|
|
|
|
}
|