vdr/nvram-wakeup/debian changelog postinst postrm

Thomas Schmidt pkg-vdr-dvb-changes@lists.alioth.debian.org
Sun, 03 Oct 2004 09:49:06 +0000


Update of /cvsroot/pkg-vdr-dvb/vdr/nvram-wakeup/debian
In directory haydn:/tmp/cvs-serv3447/vdr/nvram-wakeup/debian

Modified Files:
	changelog postinst postrm 
Log Message:
source the debconf-confmodule in postinst and postrm, even if we do not use it, to stop lintian from complaining

Index: changelog
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/nvram-wakeup/debian/changelog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- changelog	2 Aug 2004 15:48:47 -0000	1.20
+++ changelog	3 Oct 2004 09:49:03 -0000	1.21
@@ -1,3 +1,11 @@
+nvram-wakeup (0.97-3) unstable; urgency=low
+
+  * Thomas Schmidt <thomas.schmidt@in.stud.tu-ilmenau.de>
+    - Load the debconf-confmodule in postinst, to stop lintian 
+      from complaining
+
+ -- Debian VDR Team <pkg-vdr-dvb-devel@lists.alioth.debian.org>  Sun,  3 Oct 2004 11:42:55 +0200
+
 nvram-wakeup (0.97-2) unstable; urgency=low
 
   * Thomas Schmidt <thomas.schmidt@in.stud.tu-ilmenau.de>

Index: postinst
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/nvram-wakeup/debian/postinst,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- postinst	2 Aug 2004 11:25:38 -0000	1.8
+++ postinst	3 Oct 2004 09:49:03 -0000	1.9
@@ -5,6 +5,10 @@
 
 set -e
 
+# Load Debconf-confmodule
+. /usr/share/debconf/confmodule
+
+
 # summary of how this script can be called:
 #        * <postinst> `configure' <most-recently-configured-version>
 #        * <old-postinst> `abort-upgrade' <new version>

Index: postrm
===================================================================
RCS file: /cvsroot/pkg-vdr-dvb/vdr/nvram-wakeup/debian/postrm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- postrm	7 Jul 2004 13:13:47 -0000	1.2
+++ postrm	3 Oct 2004 09:49:03 -0000	1.3
@@ -5,6 +5,9 @@
 
 set -e
 
+# Load Debconf-confmodule
+. /usr/share/debconf/confmodule
+
 # summary of how this script can be called:
 #        * <postrm> `remove'
 #        * <postrm> `purge'
@@ -21,7 +24,6 @@
 case "$1" in
 	purge)
    	# purge debconf database	
-	   . /usr/share/debconf/confmodule
 	   db_purge || echo "WARNING: db_purge failed"
 	;;