diff --git a/dvm-watchdog.sh b/dvm-watchdog.sh index cc87fcc0..e1505cf3 100644 --- a/dvm-watchdog.sh +++ b/dvm-watchdog.sh @@ -1,4 +1,12 @@ #!/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 +#* +#*/ R_PATH=/opt/dvm pushd ${R_PATH} >/dev/null diff --git a/start-dvm.sh b/start-dvm.sh index 08b01336..cbc80da2 100644 --- a/start-dvm.sh +++ b/start-dvm.sh @@ -1,4 +1,12 @@ #!/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 +#* +#*/ R_PATH=/opt/dvm pushd ${R_PATH} >/dev/null diff --git a/stop-dvm.sh b/stop-dvm.sh index f764ba07..36fc208c 100644 --- a/stop-dvm.sh +++ b/stop-dvm.sh @@ -1,4 +1,12 @@ #!/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 diff --git a/stop-watchdog.sh b/stop-watchdog.sh index b6e1684e..4864d555 100644 --- a/stop-watchdog.sh +++ b/stop-watchdog.sh @@ -1,4 +1,12 @@ #!/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 dvm-watchdog.sh` pgrep dvm-watchdog.sh >/dev/null if [ $? -eq 0 ]; then