]> git.etc.gen.nz Git - mythtv-status.git/commitdiff
Switch to using a script to update the MOTD 0.10.7 debian-sid-0.10.7-1
authorAndrew Ruthven <puck@catalyst.net.nz>
Sat, 10 Jan 2015 03:38:27 +0000 (16:38 +1300)
committerAndrew Ruthven <puck@catalyst.net.nz>
Sun, 11 Jan 2015 02:20:34 +0000 (15:20 +1300)
ChangeLog
bin/mythtv-status
bin/mythtv-update-motd
debian/changelog
debian/cron.d
debian/init.d
debian/install
man/mythtv-update-motd.1 [new file with mode: 0644]

index 6a1af3f73c2502b338a019e2647f7b60849385f6..4b2b509ce0a83c6e073def958fb8832d0d2bb08e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-10     Andrew Ruthven
+       Make the cron.d file for Debian use mythtv-update-motd to stop
+       systemd from being upset.
+
 2014-12-02     Andrew Ruthven
        Add in more UTF-8 encodings as required for Perl v5.18, thanks to
        Jan Schneider for reporting the UTF-8 issue.
index 6c099b962b4381c6f727a0fa821ea885763c54a8..83cf6cc72531f3aa4bba65b6a10e9db99f62995b 100755 (executable)
@@ -85,7 +85,7 @@ my @size_thresholds = (
 
 my $return_code_only = 0;
 
-my $VERSION = '0.10.6';
+my $VERSION = '0.10.7';
 
 # Some display blocks are disabled by default:
 $c->{'display'}{'Shows due to Auto Expire'} = 0;
index b7e080b7f683707b8d058d5e86b39c0d9d09c000..3d5703b68d379e0f41b1c4edeb1dd81281065bd4 100755 (executable)
@@ -1,5 +1,11 @@
 #!/bin/bash
 
+# Run mythtv-status to update the MOTD.
+
+NAME=mythtv-update-motd
+WORKFILE=/var/run/motd
+TEMPFILE=/var/run/motd.mythtv-status
+
 . /etc/default/mythtv-status
 
 if [ x$RUN != xyes ]
@@ -7,11 +13,38 @@ then
   exit
 fi
 
+# Debian Wheezy+ handles the MOTD differently.
+[ -f /var/run/motd.dynamic ] && WORKFILE=/var/run/motd.dynamic
+
+# Just incase someone has removed their motd file.
+[ -f $WORKFILE ] || touch $WORKFILE
+[ -f /var/run/motd.orig ] || cp $WORKFILE /var/run/motd.orig
+
+# If the tempfile is less than 15 minutes old, object, otherwise
+# we'll assume that something went wrong and remove it.
+if [ -f $TEMPFILE ]; then
+    AGE=$(stat -c "%Z" $TEMPFILE);
+    if (( $AGE > $(date +'%s') - 900 ))
+    then
+        echo "I think another $NAME is running."
+        exit 1
+    fi
+fi
+
 [ ! -f /var/run/motd.orig ] && cp /var/run/motd /var/run/motd.orig
 
 cp /var/run/motd.orig /var/run/motd.new
 ret=0
-mythtv-status $ARGS -h $HOST >> /var/run/motd.new 2> /dev/null || ret=$?
+mythtv-status $ARGS -h $HOST >> $TEMPFILE 2> /dev/null || ret=$?
 if [ $ret -eq 0 -o $ret -eq 1 ]; then
-  [ -f /var/run/motd.new ] && mv /var/run/motd.new /var/run/motd
+    if [ ! -f $TEMPFILE ]; then
+        echo My temporary file has gone away, failed.
+        exit 1
+    else
+        mv $TEMPFILE $WORKFILE
+    fi
+else
+    # Something else went wrong, remove the temp file.
+    rm $TEMPFILE
+    exit 1
 fi
index 8c475b94d2761f2da9cd8a93a38180b2eda86d45..3b8b7f93b03c01fb3cb5b431919c2169ab7ec9d5 100644 (file)
@@ -1,3 +1,9 @@
+mythtv-status (0.10.7-1) unstable; urgency=low
+
+  * New upstream release (Closes: #772801).
+
+ -- Andrew Ruthven <andrew@etc.gen.nz>  Sat, 10 Jan 2015 15:56:21 +1300
+
 mythtv-status (0.10.6-1) unstable; urgency=low
 
   * New upstream release.
index 2efa2eba96347956f530d539804362230b265745..0dcad6a39b3286bf174fc6b2214c6ec68de5e641 100644 (file)
@@ -1,4 +1,4 @@
 #
 # Regular cron jobs for the mythtv-status package
 #
-*/10 * * * *   root    [ -x /etc/init.d/mythtv-status ] && /etc/init.d/mythtv-status reload > /dev/null
+*/10 * * * *   root    [ -x /usr/sbin/mythtv-update-motd ] && /usr/sbin/mythtv-update-motd > /dev/null
index e64f7197842740ea50aa85cc02f21cff37d41cfd..5111a17ffd3cbaab73c93eda1b4081c5598e7648 100644 (file)
@@ -63,37 +63,13 @@ case "$1" in
   start|reload|refresh|restart|force-reload)
     log_daemon_msg "Updating $DESC" "$NAME"
 
-    # Just incase someone has removed their motd file.
-    [ -f $WORKFILE ] || touch $WORKFILE
-    [ -f /var/run/motd.orig ] || cp $WORKFILE /var/run/motd.orig
-
-    # If the tempfile is less than 15 minutes old, object, otherwise
-    # we'll assume that something went wrong and remove it.
-    if [ -f $TEMPFILE ]; then
-      AGE=$(stat -c "%Z" $TEMPFILE);
-      if expr $AGE \> $(date +'%s') - 900
-      then
-        log_warning_msg "I think another $NAME is running."
+    if ! /usr/sbin/mythtv-update-motd; then
+        log_failure_msg "Failed to update MOTD"
         exit 1
-      fi
-    fi
-
-    cp /var/run/motd.orig $TEMPFILE
 
-    ret=0
-    start=$(date)
-    $DAEMON $ARGS -h $HOST >> $TEMPFILE || ret=$?
-    if [ $ret -eq 0 -o $ret -eq 1 ]; then
-      if [ ! -f $TEMPFILE ]; then
-        log_failure_msg "My temporary file has gone away, failed."
-        exit 1
-      else
-        mv $TEMPFILE $WORKFILE
-      fi
-      log_end_msg 0
-    else
-      log_failure_msg 
     fi
+
+    log_end_msg 0
     ;;
   stop)
     log_daemon_msg "Stopping $DESC" "$NAME"
index 8cb8553499a76c9cf1a776f97205039ae9395c01..850b6ef3374919c7495d6ea10130b617dd43c8d8 100644 (file)
@@ -1,5 +1,6 @@
 bin/mythtv-status usr/bin
 bin/mythtv_recording_now usr/bin
 bin/mythtv_recording_soon usr/bin
+bin/mythtv-update-motd /usr/sbin
 molly-guard/40-mythtv-recording-soon etc/molly-guard/run.d
 debian/lintian/overrides/mythtv-status usr/share/lintian/overrides
diff --git a/man/mythtv-update-motd.1 b/man/mythtv-update-motd.1
new file mode 100644 (file)
index 0000000..d0d88b6
--- /dev/null
@@ -0,0 +1,44 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.TH MYTHTV-UPDATE-MOTD 1 "2015-01-11"
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh        disable hyphenation
+.\" .hy        enable hyphenation
+.\" .ad l      left justify
+.\" .ad b      justify to both left and right margins
+.\" .nf        disable filling
+.\" .fi        enable filling
+.\" .br        insert line break
+.\" .sp <n>    insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+mythtv-update-motd \- update the MOTD with the MythTV backend status
+.SH SYNOPSIS
+.B mythtv-update-motd
+.SH DESCRIPTION
+.B mythtv-update-motd
+Update the system MOTD with the status of the MythTV backend.
+It checks the host which is configured in 
+.I /etc/default/mythtv-status
+with the HOST setting.
+.SH OPTIONS
+None
+.SH "EXIT STATUS"
+.TP
+.B 0
+Updated MOTD with MythTV status
+.TP
+.B 1
+Failed to update MOTD with MythTV status
+.SH FILES
+.B /etc/default/mythtv-status
+Config file
+.SH SEE ALSO
+.BR mythtv-status (1),
+.SH AUTHOR
+mythtv-update-motd and this manpage were written by Andrew Ruthven
+<andrew@etc.gen.nz>.