]> git.etc.gen.nz Git - mythtv-status.git/commitdiff
Ensure we still work if RUN and ARGS are used instead of the new variables
authorAndrew Ruthven <andrew@etc.gen.nz>
Fri, 11 Jan 2019 11:48:37 +0000 (00:48 +1300)
committerAndrew Ruthven <andrew@etc.gen.nz>
Fri, 11 Jan 2019 11:48:37 +0000 (00:48 +1300)
bin/mythtv-update-motd
debian/init.d

index 59a54f5240d8fcbb96a8d3f69072f4f0844888e4..027e6bb2d189e965833f89ec7181ee756dd66b85 100755 (executable)
@@ -15,6 +15,9 @@ NAME=mythtv-update-motd
 # Fedora style
 [ -r /etc/sysconfig/mythtv-status ] && . /etc/sysconfig/mythtv-status
 
+# Support the old RUN variable
+[ x$UPDATE_MOTD = x ] && UPDATE_MOTD=$RUN
+
 if [ x$UPDATE_MOTD != xyes -o -f /var/lib/mythtv-status/motd_update_disabled ]
 then
   exit
@@ -74,6 +77,8 @@ else
   cp $STUBFILE $TEMPFILE
 fi
 
+# Support the old ARGS variable
+[ x$UPDATE_MOTD_ARGS = x ] && UPDATE_MOTD_ARGS=$ARGS
 
 ret=0
 mythtv-status $UPDATE_MOTD_ARGS -h $HOST >> $TEMPFILE || ret=$?
index aee2760a80e1c918a80098bd91633adec7e576d5..cbaa57f9715e3f033e5c6c6b994b7b5e0328cfd2 100644 (file)
@@ -48,6 +48,9 @@ if [ -f /etc/default/$NAME ] ; then
        . /etc/default/$NAME
 fi
 
+# Support the old RUN variable
+[ x$UPDATE_MOTD = x ] && UPDATE_MOTD=$RUN
+
 # Use this if you want the user to explicitly set 'UPDATE_MOTD' in 
 # /etc/default/mythtv-status
 if [ "x$UPDATE_MOTD" != "xyes" ] ; then