diff options
author | monty@mashka.mysql.fi <> | 2003-02-16 22:50:00 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-02-16 22:50:00 +0200 |
commit | a533db746bdb074f96d472f1a2eaf4cc292b7e9c (patch) | |
tree | 10aed87e653c90aca05d9b435b57af56f6e7398e /scripts | |
parent | 62eda324f871f493156164164caf6cd77772fc8b (diff) | |
download | mariadb-git-a533db746bdb074f96d472f1a2eaf4cc292b7e9c.tar.gz |
Patch for novell
Reverted wrong patch for mysqld_safe.sh
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysqld_safe.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysqld_safe.sh b/scripts/mysqld_safe.sh index 49c5b0f51b7..3ccf5301503 100644 --- a/scripts/mysqld_safe.sh +++ b/scripts/mysqld_safe.sh @@ -272,6 +272,7 @@ echo "Starting $MYSQLD daemon with databases from $DATADIR" echo "`date +'%y%m%d %H:%M:%S mysqld started'`" >> $err_log while true do + rm -f $MYSQL_UNIX_PORT $pid_file # Some extra safety if test -z "$args" then $NOHUP_NICENESS $ledir/$MYSQLD $defaults --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR $USER_OPTION --pid-file=$pid_file @MYSQLD_DEFAULT_SWITCHES@ >> $err_log 2>&1 @@ -310,7 +311,6 @@ do I=`expr $I + 1` done fi - rm -f $MYSQL_UNIX_PORT $pid_file # Some extra safety echo "`date +'%y%m%d %H:%M:%S'` mysqld restarted" | tee -a $err_log done |