Merge with 4.0.17

This commit is contained in:
monty@mysql.com 2003-12-17 17:35:34 +02:00
commit e0cc6799ec
152 changed files with 2776 additions and 1235 deletions

View file

@ -11,6 +11,13 @@
# Written by Lenz Grimmer <lenz@mysql.com>
#
# Suppress the annoying "$1: unbound variable" error when no option
# was given
if [ -z $1 ] ; then
echo "Usage: $0 [start|stop|restart] "
exit 1
fi
# Source the common setup functions for startup scripts
test -r /etc/rc.common || exit 1
. /etc/rc.common