mariadb: Handle non-existent logger in init

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

Signed-off-by: Michal Hrusecky <michal.hrusecky@turris.com>
This commit is contained in:
Michal Hrusecky 2020-10-01 16:02:42 +02:00
parent a333d71fd0
commit 173314eb8f
No known key found for this signature in database
GPG Key ID: 7B7562FE6F4D91EF
1 changed files with 1 additions and 0 deletions

View File

@ -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