git » mariadb.git » commit 10f0dbf

use indented here doc for messages in install script

author Christian Hesse
2024-06-11 09:15:38 UTC
committer Christian Hesse
2024-06-11 09:15:38 UTC
parent dd2b6d1d96d609592cf538835718aaa0638de91e

use indented here doc for messages in install script

mariadb.install +9 -5

diff --git a/mariadb.install b/mariadb.install
index bad4526..aa379d3 100644
--- a/mariadb.install
+++ b/mariadb.install
@@ -1,15 +1,19 @@
 #!/bin/sh
 
 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"
+	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
 }
 
 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"
+	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
   fi
 }