From 65dde4e2567be0179753f32e965fd8277cdb589a Mon Sep 17 00:00:00 2001 From: Andrew Taylor Date: Mon, 12 Feb 2024 20:37:37 +0000 Subject: [PATCH] Fix for #59 --- aprsgateway.service | 2 +- dapnetgateway.service | 2 +- dgidgateway.service | 2 +- dmr2nxdn.service | 2 +- dmr2ysf.service | 2 +- dmrgateway.service | 2 +- m17gateway.service | 2 +- mmdvmhost.service | 2 +- mmdvmhost_NoOLED.service | 2 +- nxdn2dmr.service | 2 +- nxdngateway.service | 2 +- nxdnparrot.service | 2 +- p25gateway.service | 2 +- p25parrot.service | 2 +- ysf2dmr.service | 2 +- ysf2nxdn.service | 2 +- ysf2p25.service | 2 +- ysfgateway.service | 2 +- ysfparrot.service | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) diff --git a/aprsgateway.service b/aprsgateway.service index c6b905e..6b5d931 100755 --- a/aprsgateway.service +++ b/aprsgateway.service @@ -49,7 +49,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/dapnetgateway.service b/dapnetgateway.service index e23e982..bfc605a 100755 --- a/dapnetgateway.service +++ b/dapnetgateway.service @@ -52,7 +52,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/dgidgateway.service b/dgidgateway.service index 7243823..a706e5c 100755 --- a/dgidgateway.service +++ b/dgidgateway.service @@ -62,7 +62,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/dmr2nxdn.service b/dmr2nxdn.service index 93d37e8..d8c01e6 100755 --- a/dmr2nxdn.service +++ b/dmr2nxdn.service @@ -61,7 +61,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/dmr2ysf.service b/dmr2ysf.service index 85620eb..a197554 100755 --- a/dmr2ysf.service +++ b/dmr2ysf.service @@ -61,7 +61,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/dmrgateway.service b/dmrgateway.service index cfbeb51..525fff8 100755 --- a/dmrgateway.service +++ b/dmrgateway.service @@ -63,7 +63,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/m17gateway.service b/m17gateway.service index 5634ebb..edb9cf4 100755 --- a/m17gateway.service +++ b/m17gateway.service @@ -55,7 +55,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/mmdvmhost.service b/mmdvmhost.service index d2f1889..09de692 100755 --- a/mmdvmhost.service +++ b/mmdvmhost.service @@ -51,7 +51,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/mmdvmhost_NoOLED.service b/mmdvmhost_NoOLED.service index 3465d65..3048818 100755 --- a/mmdvmhost_NoOLED.service +++ b/mmdvmhost_NoOLED.service @@ -55,7 +55,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/nxdn2dmr.service b/nxdn2dmr.service index 559b1ff..c0d3099 100755 --- a/nxdn2dmr.service +++ b/nxdn2dmr.service @@ -61,7 +61,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/nxdngateway.service b/nxdngateway.service index 544e8fb..6a95915 100755 --- a/nxdngateway.service +++ b/nxdngateway.service @@ -62,7 +62,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/nxdnparrot.service b/nxdnparrot.service index 4a9317c..e136e77 100755 --- a/nxdnparrot.service +++ b/nxdnparrot.service @@ -57,7 +57,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/p25gateway.service b/p25gateway.service index 723d7d9..3665ac1 100755 --- a/p25gateway.service +++ b/p25gateway.service @@ -60,7 +60,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/p25parrot.service b/p25parrot.service index 90bdc91..d1fd64c 100755 --- a/p25parrot.service +++ b/p25parrot.service @@ -55,7 +55,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/ysf2dmr.service b/ysf2dmr.service index 217ba6c..5f053b5 100755 --- a/ysf2dmr.service +++ b/ysf2dmr.service @@ -61,7 +61,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/ysf2nxdn.service b/ysf2nxdn.service index 51212de..ea107cd 100755 --- a/ysf2nxdn.service +++ b/ysf2nxdn.service @@ -65,7 +65,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/ysf2p25.service b/ysf2p25.service index 6770d05..14385c8 100755 --- a/ysf2p25.service +++ b/ysf2p25.service @@ -61,7 +61,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/ysfgateway.service b/ysfgateway.service index f896804..596504d 100755 --- a/ysfgateway.service +++ b/ysfgateway.service @@ -67,7 +67,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done diff --git a/ysfparrot.service b/ysfparrot.service index d08c541..cba9786 100755 --- a/ysfparrot.service +++ b/ysfparrot.service @@ -53,7 +53,7 @@ case "$1" in exit 0; else # Wait for an IP address - until [ $ipVar != " " ]; do + until [ "${ipVar}" != " " ]; do sleep 10 ipVar=`hostname -I` done