Bug#447611: [PATCH] updated patch

2008-04-02 Thread Raphael Hertzog
On Tue, 01 Apr 2008, Joey Hess wrote:
 The attached patch is against current git, and has been tested with
 the trigger-enabled dpkg in experimental. This patch is ready to be
 applied immediately.

I think the patch lacks the triggers files itself.

Cheers,
-- 
Raphaël Hertzog

Le best-seller français mis à jour pour Debian Etch :
http://www.ouaza.com/livre/admin-debian/




Bug#447611: [PATCH] updated patch

2008-04-02 Thread Joey Hess
Raphael Hertzog wrote:
 I think the patch lacks the triggers files itself.

Indeed, here's a fixed patch.

-- 
see shy jo
From a71ad25d0aeebc67835cc6a6f586e3e3593d6a65 Mon Sep 17 00:00:00 2001
From: Joey Hess [EMAIL PROTECTED]
Date: Wed, 2 Apr 2008 15:26:52 -0400
Subject: [PATCH] use dpkg-trigger

This is a lightly modified version of Ian Jackson's original patch,
incorporating maximilian attems's comments.

dh_installdeb automatically installs the triggers file, so the rules file
does not need to be changed.
---
 debian/initramfs-tools.postinst |   11 +--
 debian/initramfs-tools.triggers |1 +
 update-initramfs|   13 +
 3 files changed, 23 insertions(+), 2 deletions(-)
 create mode 100644 debian/initramfs-tools.triggers

diff --git a/debian/initramfs-tools.postinst b/debian/initramfs-tools.postinst
index 2f36f3f..6ecfe2e 100644
--- a/debian/initramfs-tools.postinst
+++ b/debian/initramfs-tools.postinst
@@ -6,9 +6,16 @@ if [ ! -e /etc/initramfs-tools/modules ]; then
 	cp /usr/share/initramfs-tools/modules /etc/initramfs-tools/
 fi
 
-# Regenerate initramfs on upgrade
-if [ $1 = configure ]  [ -n $2 ]; then
+# Regenerate initramfs whenever we go to dpkg state `installed'
+
+if [ x$1 != xtriggered ]  \
+   dpkg --compare-versions $DPKG_RUNNING_VERSION ge '1.14.5ubuntu10~~'
+then
+	# this activates the trigger, if triggers are working
 	update-initramfs -u
+else
+	# force it to actually happen
+	DPKG_MAINTSCRIPT_PACKAGE='' update-initramfs -u
 fi
 
 #DEBHELPER#
diff --git a/debian/initramfs-tools.triggers b/debian/initramfs-tools.triggers
new file mode 100644
index 000..860c664
--- /dev/null
+++ b/debian/initramfs-tools.triggers
@@ -0,0 +1 @@
+interest update-initramfs
diff --git a/update-initramfs b/update-initramfs
index 42f2831..7bb7319 100755
--- a/update-initramfs
+++ b/update-initramfs
@@ -4,6 +4,7 @@ STATEDIR=/var/lib/initramfs-tools
 BOOTDIR=/boot
 CONF=/etc/initramfs-tools/update-initramfs.conf
 KPKGCONF=/etc/kernel-img.conf
+USETRIGGERS=true
 mode=
 version=
 
@@ -11,6 +12,18 @@ set -e
 
 [ -r ${CONF} ]  . ${CONF}
 
+if	   $USETRIGGERS		\
+	 [ x$DPKG_MAINTSCRIPT_PACKAGE != x ]		\
+	 [ $# = 1 ]	 	\
+	 [ x$1 = x-u ]	\
+	 dpkg-trigger --check-supported 2/dev/null
+then
+	if dpkg-trigger --no-await update-initramfs; then
+		echo update-initramfs: deferring update (trigger activated)
+		exit 0
+	fi	
+fi
+
 usage()
 {
 	if [ -n ${1} ]; then
-- 
1.5.4.4



signature.asc
Description: Digital signature


Bug#447611: [PATCH] updated patch

2008-04-01 Thread Joey Hess
tag 447611 patch
thanks

The attached patch is against current git, and has been tested with
the trigger-enabled dpkg in experimental. This patch is ready to be
applied immediately.

-- 
see shy jo
From c4a58806cb810a54cfe2b0b85c7e59d7dfd34220 Mon Sep 17 00:00:00 2001
From: Joey Hess [EMAIL PROTECTED]
Date: Tue, 1 Apr 2008 18:14:57 -0400
Subject: [PATCH] use dpkg-trigger

This is a lightly modified version of Ian Jackson's original patch,
incorporating maximilian attems's comments.

dh_installdeb automatically installs the triggers file, so the rules file
does not need to be changed.
---
 debian/initramfs-tools.postinst |   11 +--
 update-initramfs|   13 +
 2 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/debian/initramfs-tools.postinst b/debian/initramfs-tools.postinst
index 2f36f3f..6ecfe2e 100644
--- a/debian/initramfs-tools.postinst
+++ b/debian/initramfs-tools.postinst
@@ -6,9 +6,16 @@ if [ ! -e /etc/initramfs-tools/modules ]; then
 	cp /usr/share/initramfs-tools/modules /etc/initramfs-tools/
 fi
 
-# Regenerate initramfs on upgrade
-if [ $1 = configure ]  [ -n $2 ]; then
+# Regenerate initramfs whenever we go to dpkg state `installed'
+
+if [ x$1 != xtriggered ]  \
+   dpkg --compare-versions $DPKG_RUNNING_VERSION ge '1.14.5ubuntu10~~'
+then
+	# this activates the trigger, if triggers are working
 	update-initramfs -u
+else
+	# force it to actually happen
+	DPKG_MAINTSCRIPT_PACKAGE='' update-initramfs -u
 fi
 
 #DEBHELPER#
diff --git a/update-initramfs b/update-initramfs
index 42f2831..7bb7319 100755
--- a/update-initramfs
+++ b/update-initramfs
@@ -4,6 +4,7 @@ STATEDIR=/var/lib/initramfs-tools
 BOOTDIR=/boot
 CONF=/etc/initramfs-tools/update-initramfs.conf
 KPKGCONF=/etc/kernel-img.conf
+USETRIGGERS=true
 mode=
 version=
 
@@ -11,6 +12,18 @@ set -e
 
 [ -r ${CONF} ]  . ${CONF}
 
+if	   $USETRIGGERS		\
+	 [ x$DPKG_MAINTSCRIPT_PACKAGE != x ]		\
+	 [ $# = 1 ]	 	\
+	 [ x$1 = x-u ]	\
+	 dpkg-trigger --check-supported 2/dev/null
+then
+	if dpkg-trigger --no-await update-initramfs; then
+		echo update-initramfs: deferring update (trigger activated)
+		exit 0
+	fi	
+fi
+
 usage()
 {
 	if [ -n ${1} ]; then
-- 
1.5.4.4



signature.asc
Description: Digital signature