0f75b2635e
'echo -n' is not a POSIX construct (no flag support), we shoud use 'printf', especially in init script. This patch was generated by the following command line: git grep -l 'echo -n' -- `git ls-files | grep -v 'patch'` | xargs sed -i 's/echo -n/printf/' Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
31 lines
598 B
Bash
31 lines
598 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
start)
|
|
if [ ! -d /var/mysql/mysql ] ; then
|
|
echo "Creating MySQL system tables..."
|
|
mysql_install_db --user=mysql --ldata=/var/mysql
|
|
fi
|
|
|
|
# We don't use start-stop-daemon because mysqld has
|
|
# its own wrapper script.
|
|
printf "Starting mysql..."
|
|
/usr/bin/mysqld_safe --pid-file=/var/run/mysqld.pid &
|
|
echo "done."
|
|
;;
|
|
stop)
|
|
printf "Stopping mysql..."
|
|
if test -f /var/run/mysqld.pid ; then
|
|
kill `cat /var/run/mysqld.pid`
|
|
fi
|
|
echo "done."
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "Usage: /etc/init.d/mysqld {start|stop|restart}"
|
|
;;
|
|
esac
|