]> git.sur5r.net Git - bacula/bacula/blob - bacula/scripts/startmysql.in
kes Add host name to items printed during dump.
[bacula/bacula] / bacula / scripts / startmysql.in
1 #!/bin/sh
2 cd @SQL_BINDIR@
3 if [ -x ./safe_mysqld ]; then
4   ./safe_mysqld $* &
5   exit $?
6 fi
7 if [ -x ./mysqld_safe ]; then
8   ./mysqld_safe $* &
9   exit $?
10 fi
11 echo "Neither safe_mysqld nor mysqld_safe found!"
12 exit 1