Reverted the changes to spec file to ignore mysqld_safe.pid file, updated the...

 Reverted the changes to spec file to ignore mysqld_safe.pid file, updated the logic to get the correct count of PID files
parent 199a98ee
...@@ -716,7 +716,7 @@ fi ...@@ -716,7 +716,7 @@ fi
# We assume that if there is exactly one ".pid" file, # We assume that if there is exactly one ".pid" file,
# it contains the valid PID of a running MySQL server. # it contains the valid PID of a running MySQL server.
NR_PID_FILES=`ls $PID_FILE_PATT 2>/dev/null | grep -v "mysqld_safe.pid" | wc -l` NR_PID_FILES=`ls -1 $PID_FILE_PATT 2>/dev/null | wc -l`
case $NR_PID_FILES in case $NR_PID_FILES in
0 ) SERVER_TO_START='' ;; # No "*.pid" file == no running server 0 ) SERVER_TO_START='' ;; # No "*.pid" file == no running server
1 ) SERVER_TO_START='true' ;; 1 ) SERVER_TO_START='true' ;;
...@@ -1195,8 +1195,8 @@ fi ...@@ -1195,8 +1195,8 @@ fi
# merging BK trees) # merging BK trees)
############################################################################## ##############################################################################
%changelog %changelog
* Thu Aug 29 2013 Balasubramanian Kandasamy <balasubramanian.kandasamy@oracle.com> * Mon Sep 09 2013 Balasubramanian Kandasamy <balasubramanian.kandasamy@oracle.com>
- Added logic to ignore mysqld_safe.pid file created by mysqld_safe script - Updated logic to get the correct count of PID files
* Tue Sep 11 2012 Joerg Bruehe <joerg.bruehe@oracle.com> * Tue Sep 11 2012 Joerg Bruehe <joerg.bruehe@oracle.com>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment