author | Christian Hesse
<eworm@archlinux.org> 2023-07-12 07:28:44 UTC |
committer | Christian Hesse
<eworm@archlinux.org> 2023-07-12 07:28:44 UTC |
parent | e03e0b5af8bd6576390a81c7d7f8d05862a673c8 |
mariadb.install | +2 | -2 |
diff --git a/mariadb.install b/mariadb.install index c67092b..bad4526 100644 --- a/mariadb.install +++ b/mariadb.install @@ -3,13 +3,13 @@ post_install() { echo ":: You need to initialize the MariaDB data directory prior to starting" echo " the service. This can be done with mariadb-install-db command, e.g.:" - echo " mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql" + echo " # mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql" } post_upgrade() { # show for feature release: 10.1 -> 10.2 -> 10.3 -> ... if [ $(vercmp "${1%.*-*}" "${2%.*-*}") -ne 0 ]; then echo ":: MariaDB was updated to a new feature release. To update the data run:" - echo " systemctl restart mariadb.service && mariadb-upgrade -u root -p" + echo " # systemctl restart mariadb.service && mariadb-upgrade -u root -p" fi }