You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
507 B
27 lines
507 B
#!/bin/bash
|
|
#/**
|
|
#* Digital Voice Modem - Host Software
|
|
#* GPLv2 Open Source. Use is subject to license terms.
|
|
#* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
#*
|
|
#* @package DVM / Host Software
|
|
#*
|
|
#*/
|
|
PID=`pgrep dvmhost`
|
|
pgrep dvmhost >/dev/null
|
|
if [ $? -eq 0 ]; then
|
|
kill -15 $PID
|
|
sleep 2s
|
|
pgrep dvmhost >/dev/null
|
|
if [ $? -eq 0 ]; then
|
|
kill -9 $PID
|
|
fi
|
|
fi
|
|
|
|
PID=`pgrep dvm-watchdog.sh`
|
|
pgrep dvm-watchdog.sh >/dev/null
|
|
if [ $? -eq 0 ]; then
|
|
kill -9 $PID
|
|
fi
|
|
|