69 lines
2.3 KiB
Bash
Executable File
69 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
#########################################################################################################
|
|
##
|
|
## Name: killDPWR
|
|
## Created: September 2015
|
|
## Author(s): Philip Smart
|
|
## Description: A shell script to stop the dPWR controller.
|
|
##
|
|
## Credits:
|
|
## Copyright: (c) 2015-2019 Philip Smart <philip.smart@net2net.org>
|
|
##
|
|
## History: September 2015 - Initial module written.
|
|
##
|
|
#########################################################################################################
|
|
## This source file is free software: you can redistribute it and#or modify
|
|
## it under the terms of the GNU General Public License as published
|
|
## by the Free Software Foundation, either version 3 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## This source file is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#########################################################################################################
|
|
|
|
#-----------------------------------------------------------
|
|
# kill script for the DPWR server
|
|
#-----------------------------------------------------------
|
|
export SYSTEM=`uname`
|
|
export PACKAGE=DPWR
|
|
if [ "${SYSTEM}" = "Linux" ]; then
|
|
export BASEDIR=/usr/local/${PACKAGE}
|
|
else
|
|
export BASEDIR=/usr/local/${PACKAGE}
|
|
fi
|
|
. /etc/profile
|
|
. ${BASEDIR}/etc/${PACKAGE}.shc
|
|
|
|
#-----------------------------------------------------------
|
|
# kill script for the DPWR server
|
|
#-----------------------------------------------------------
|
|
echo "Killing ${KILL_NAMES}, if running..."
|
|
KILL_NAMES="${PROCESS}"
|
|
|
|
cd $ETCDIR
|
|
for PROCESS in ${KILL_NAMES}
|
|
do
|
|
PID=`${PS} | grep "$PROCESS" |grep -v grep | grep -v gvim | grep -v vi | awk '{print $2}'`
|
|
if test "$PID" != ""
|
|
then
|
|
kill -1 $PID
|
|
if [ $? -ne 0 ]; then
|
|
echo kill $PID ERROR
|
|
fi
|
|
sleep 2
|
|
|
|
PID=`${PS} | grep "$PID" |grep -v grep | grep -v gvim | grep -v vi | awk '{print $2}'`
|
|
if test "$PID" != ""
|
|
then
|
|
kill -9 $PID
|
|
fi
|
|
fi
|
|
done
|
|
|
|
echo "killDPWR done."
|