Attached is the diff for the NMU I'm about to upload to DELAYED/7.
--
Good news at once. Bad news never in the evening or on Friday.
diff -ru reseed-1.1-original/debian/changelog reseed-1.1/debian/changelog
--- reseed-1.1-original/debian/changelog 2006-06-26 20:47:49.000000000 +0300
+++ reseed-1.1/debian/changelog 2006-06-26 20:58:54.000000000 +0300
@@ -1,3 +1,11 @@
+reseed (1.1-3.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * debian/postinst: Call the /etc/init.d/urandom script via invoke-rc.d,
+ as per current policy. (Closes: #367718)
+
+ -- Lars Wirzenius <[EMAIL PROTECTED]> Mon, 26 Jun 2006 20:57:59 +0300
+
reseed (1.1-3) unstable; urgency=low
* resolves lintian error: build-depends-without-arch-dep
diff -ru reseed-1.1-original/debian/postinst reseed-1.1/debian/postinst
--- reseed-1.1-original/debian/postinst 2006-06-26 20:47:49.000000000 +0300
+++ reseed-1.1/debian/postinst 2006-06-26 21:01:22.000000000 +0300
@@ -29,7 +29,11 @@
rm -f /var/lib/urandom/random-seed;
fi
/usr/sbin/reseed
- /etc/init.d/urandom start
+ if which invoke-rc.d >/dev/null 2>&1; then
+ invoke-rc.d urandom start
+ else
+ /etc/init.d/urandom start
+ fi
;;
abort-upgrade|abort-remove|abort-deconfigure)