vdr/vdr/debian changelog vdr-shutdown-message

Thomas Schmidt pkg-vdr-dvb-changes@lists.alioth.debian.org
Wed, 09 Feb 2005 12:07:12 +0000


Update of /cvsroot/pkg-vdr-dvb/vdr/vdr/debian
In directory haydn:/tmp/cvs-serv5193/vdr/vdr/debian

Modified Files:
	changelog vdr-shutdown-message 
Log Message:
* added a call to logger to vdr-shutdown

Index: changelog
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/vdr/debian/changelog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -d -r1.85 -r1.86
--- changelog	9 Feb 2005 11:59:45 -0000	1.85
+++ changelog	9 Feb 2005 12:07:09 -0000	1.86
@@ -1,15 +1,17 @@
 vdr (1.2.6-7) unstable; urgency=low
 
   * Thomas Schmidt <tschmidt@debian.org>
+    - This is the first upload of vdr, i can do by myself, i want 
+      to thank Andreas Müller (amu) and Christoph Martin (chrism) 
+      for their help with sponsoring previous uploads
     - Only try to change capabilities when vdr is called by root 
       (closes: #293042)
     - Added patch from Andreas Jochens to fix the FTBFS on amd64
       with gcc-4.0 (closes: #294041)
     - Changed my email-address to the new debian one
-    - This is the first upload of vdr, i can do by myself, i want 
-      to thank Andreas Müller (amu) and Christoph Martin (chrism) 
-      for their help with sponsoring previous uploads
-
+    - Make an entry in syslog when someone tries to shutdown vdr
+      while the automatic shutdown is disabled
+    
  -- Debian VDR Team <pkg-vdr-dvb-devel@lists.alioth.debian.org>  Wed, 09 Feb 2005 12:41:49 +0100
 
 vdr (1.2.6-6) unstable; urgency=high

Index: vdr-shutdown-message
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/vdr/debian/vdr-shutdown-message,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- vdr-shutdown-message	16 Jan 2005 18:49:37 -0000	1.2
+++ vdr-shutdown-message	9 Feb 2005 12:07:10 -0000	1.3
@@ -1,6 +1,9 @@
 #!/bin/sh
 
 svdrpsend="/usr/lib/vdr/svdrpsend.pl"
+log="logger -t vdr-shutdown"
+
+MESSAGE="Shutdown deactivated (see /etc/default/vdr)"
 
 osdmsg()
 {
@@ -10,6 +13,7 @@
     $svdrpsend MESG "$1"
 }
 
-osdmsg "Shutdown deactivated (see /etc/default/vdr)" &
+osdmsg $MESSAGE &
+$log $MESSAGE &
 
 exit 1