Skip to content
Snippets Groups Projects
Unverified Commit 173314eb authored by Michal Hrusecky's avatar Michal Hrusecky
Browse files

mariadb: Handle non-existent logger in init


Make sure init script has a fallback when logger is not available.

Signed-off-by: default avatarMichal Hrusecky <michal.hrusecky@turris.com>
parent a333d71f
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ STOP=10
NAME=mysqld
LOGGER="/usr/bin/logger -p user.err -s -t $NAME --"
[ -x "$LOGGER" ] || LOGGER="echo"
MYSQLADMIN=/usr/bin/mysqladmin
MYSQLD=/usr/bin/$NAME
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment