[Glibc-bsd-commits] r2723 - trunk/kfreebsd-7/debian
Aurelien Jarno
aurel32 at alioth.debian.org
Thu Aug 20 20:28:19 UTC 2009
Author: aurel32
Date: 2009-08-20 20:28:19 +0000 (Thu, 20 Aug 2009)
New Revision: 2723
Modified:
trunk/kfreebsd-7/debian/kfreebsd-image.postinst.in
trunk/kfreebsd-7/debian/kfreebsd-image.postrm.in
trunk/kfreebsd-7/debian/kfreebsd-image.preinst.in
trunk/kfreebsd-7/debian/kfreebsd-image.prerm.in
Log:
Fix maintainer script messages
Modified: trunk/kfreebsd-7/debian/kfreebsd-image.postinst.in
===================================================================
--- trunk/kfreebsd-7/debian/kfreebsd-image.postinst.in 2009-08-20 20:08:46 UTC (rev 2722)
+++ trunk/kfreebsd-7/debian/kfreebsd-image.postinst.in 2009-08-20 20:28:19 UTC (rev 2723)
@@ -56,7 +56,7 @@
# Run postinst hook if defined
postinst_hook=$(sed '/^\s*postinst_hook/!d;s/.*=//g' $KERNEL_IMG_CONF 2>/dev/null || true)
if [ -n "$postinst_hook" ] ; then
- echo "Running postinst hook script $script." 1>&2
+ echo "Running postinst hook script $postinst_hook." 1>&2
$postinst_hook "$VERSION" "/boot/kfreebsd-$RELEASE.gz"
fi
;;
Modified: trunk/kfreebsd-7/debian/kfreebsd-image.postrm.in
===================================================================
--- trunk/kfreebsd-7/debian/kfreebsd-image.postrm.in 2009-08-20 20:08:46 UTC (rev 2722)
+++ trunk/kfreebsd-7/debian/kfreebsd-image.postrm.in 2009-08-20 20:28:19 UTC (rev 2723)
@@ -28,7 +28,7 @@
# Run postrm hook if defined
postrm_hook=$(sed '/^\s*postrm_hook/!d;s/.*=//g' $KERNEL_IMG_CONF 2>/dev/null || true)
if [ -n "$postrm_hook" ] ; then
- echo "Running postrm hook script $script." 1>&2
+ echo "Running postrm hook script $postrm_hook." 1>&2
$postrm_hook "$VERSION" "/boot/kfreebsd-$RELEASE.gz"
fi
;;
Modified: trunk/kfreebsd-7/debian/kfreebsd-image.preinst.in
===================================================================
--- trunk/kfreebsd-7/debian/kfreebsd-image.preinst.in 2009-08-20 20:08:46 UTC (rev 2722)
+++ trunk/kfreebsd-7/debian/kfreebsd-image.preinst.in 2009-08-20 20:28:19 UTC (rev 2723)
@@ -23,7 +23,7 @@
# Run preinst hook if defined
preinst_hook=$(sed '/^\s*preinst_hook/!d;s/.*=//g' $KERNEL_IMG_CONF 2>/dev/null || true)
if [ -n "$preinst_hook" ] ; then
- echo "Running preinst hook script $script." 1>&2
+ echo "Running preinst hook script $preinst_hook." 1>&2
$preinst_hook "$VERSION" "/boot/kfreebsd-$RELEASE.gz"
fi
;;
Modified: trunk/kfreebsd-7/debian/kfreebsd-image.prerm.in
===================================================================
--- trunk/kfreebsd-7/debian/kfreebsd-image.prerm.in 2009-08-20 20:08:46 UTC (rev 2722)
+++ trunk/kfreebsd-7/debian/kfreebsd-image.prerm.in 2009-08-20 20:28:19 UTC (rev 2723)
@@ -26,7 +26,7 @@
# Run prerm hook if defined
prerm_hook=$(sed '/^\s*prerm_hook/!d;s/.*=//g' $KERNEL_IMG_CONF 2>/dev/null || true)
if [ -n "$prerm_hook" ] ; then
- echo "Running prerm hook script $script." 1>&2
+ echo "Running prerm hook script $prerm_hook." 1>&2
$prerm_hook "$VERSION" "/boot/kfreebsd-$RELEASE.gz"
fi
;;
More information about the Glibc-bsd-commits
mailing list