From ee304ecd820df619f35aab7183852129d41e2901 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Fri, 11 Nov 2022 19:18:09 -0500 Subject: [PATCH] add copyright to files; --- dvm-watchdog.sh | 8 ++++++++ start-dvm.sh | 8 ++++++++ stop-dvm.sh | 8 ++++++++ stop-watchdog.sh | 8 ++++++++ 4 files changed, 32 insertions(+) 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