[Pkg-xfce-commits] r723 - in desktop/trunk: exo/debian
xfce-mcs-plugins/debian xfce4-mixer/debian xfce4-panel/debian
xfce4-session/debian xfce4-utils/debian xfdesktop4/debian
xfprint4/debian xfwm4/debian
Yves-Alexis Perez
corsac-guest at costa.debian.org
Mon Jul 10 09:08:17 UTC 2006
Author: corsac-guest
Date: 2006-07-10 09:08:16 +0000 (Mon, 10 Jul 2006)
New Revision: 723
Modified:
desktop/trunk/exo/debian/changelog
desktop/trunk/exo/debian/libexo-0.3-0.postinst
desktop/trunk/xfce-mcs-plugins/debian/changelog
desktop/trunk/xfce-mcs-plugins/debian/postinst
desktop/trunk/xfce4-mixer/debian/changelog
desktop/trunk/xfce4-mixer/debian/postinst
desktop/trunk/xfce4-panel/debian/changelog
desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst
desktop/trunk/xfce4-session/debian/changelog
desktop/trunk/xfce4-session/debian/postinst
desktop/trunk/xfce4-utils/debian/changelog
desktop/trunk/xfce4-utils/debian/postinst
desktop/trunk/xfdesktop4/debian/changelog
desktop/trunk/xfdesktop4/debian/postinst
desktop/trunk/xfprint4/debian/changelog
desktop/trunk/xfprint4/debian/postinst
desktop/trunk/xfwm4/debian/changelog
desktop/trunk/xfwm4/debian/postinst
Log:
update postinst scripts to use `pidof xfce-mcs-manager`
Modified: desktop/trunk/exo/debian/changelog
===================================================================
--- desktop/trunk/exo/debian/changelog 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/exo/debian/changelog 2006-07-10 09:08:16 UTC (rev 723)
@@ -1,7 +1,7 @@
exo (0.3.1.8beta2-1) UNRELEASED; urgency=low
* New upstream release
- * Fixed package on hurd by not using pkill in postinst
+ * debian/postinst: fixed install on hurd by not using pkill
* Updated standards version to 3.7.2 (no changes needed)
-- Yves-Alexis Perez <corsac at corsac.net> Sun, 9 Jul 2006 23:11:38 +0200
Modified: desktop/trunk/exo/debian/libexo-0.3-0.postinst
===================================================================
--- desktop/trunk/exo/debian/libexo-0.3-0.postinst 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/exo/debian/libexo-0.3-0.postinst 2006-07-10 09:08:16 UTC (rev 723)
@@ -4,7 +4,7 @@
# Get xfce-mcs-manager to reinit
#Hurd doesnt have pkill so we use another way
#pkill -USR1 -f xfce-mcs-manager || true
- kill -USR1 $(pidof xfce-mcs-manager)
+ kill -USR1 `pidof xfce-mcs-manager` || true
fi
#DEBHELPER#
Modified: desktop/trunk/xfce-mcs-plugins/debian/changelog
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/changelog 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfce-mcs-plugins/debian/changelog 2006-07-10 09:08:16 UTC (rev 723)
@@ -1,6 +1,6 @@
xfce-mcs-plugins (4.3.90.1-2) unstable; urgency=low
- * Fixed package on hurd by not using pkill in postinst
+ * debian/postinst: fixed install on hurd by not using pkill.
-- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:42:06 +0200
Modified: desktop/trunk/xfce-mcs-plugins/debian/postinst
===================================================================
--- desktop/trunk/xfce-mcs-plugins/debian/postinst 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfce-mcs-plugins/debian/postinst 2006-07-10 09:08:16 UTC (rev 723)
@@ -4,8 +4,7 @@
# Get xfce-mcs-manager to reinit
# hurd doesnt have procps so we do it another way
#pkill -USR1 -f xfce-mcs-manager || true
- mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
- kill -USR1 $mcs || true
+ kill -USR1 `pidof xfce-mcs-manager` || true
fi
Modified: desktop/trunk/xfce4-mixer/debian/changelog
===================================================================
--- desktop/trunk/xfce4-mixer/debian/changelog 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfce4-mixer/debian/changelog 2006-07-10 09:08:16 UTC (rev 723)
@@ -1,6 +1,6 @@
xfce4-mixer (4.3.90.1-3) UNRELEASED; urgency=low
- * Fix package on hurd by not using pkill in postinst
+ * debian/postinst: fix install on hurd by not using pkill
-- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:37:27 +0200
Modified: desktop/trunk/xfce4-mixer/debian/postinst
===================================================================
--- desktop/trunk/xfce4-mixer/debian/postinst 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfce4-mixer/debian/postinst 2006-07-10 09:08:16 UTC (rev 723)
@@ -4,8 +4,7 @@
# Get xfce-mcs-manager to reinit
# hurd doesnt have procps so we do that another way
#pkill -USR1 -f xfce-mcs-manager || true
- mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
- kill -USR1 $mcs || true
+ kill -USR1 `pidof xfce-mcs-manager` || true
fi
Modified: desktop/trunk/xfce4-panel/debian/changelog
===================================================================
--- desktop/trunk/xfce4-panel/debian/changelog 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfce4-panel/debian/changelog 2006-07-10 09:08:16 UTC (rev 723)
@@ -1,7 +1,7 @@
xfce4-panel (4.3.90.1-4) UNRELEASED; urgency=low
* Fixed typo in debian/NEWS
- * Fixed package on hurd by not using pkill in postinst Closes: #374618
+ * debian/postinst: fixed install on hurd by not using pkill. Closes: #374618
-- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:38:59 +0200
Modified: desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst
===================================================================
--- desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfce4-panel/debian/xfce4-panel.postinst 2006-07-10 09:08:16 UTC (rev 723)
@@ -4,8 +4,7 @@
# Get xfce-mcs-manager to reinit
# hurd doesnt have procps so we do it another way
#pkill -USR1 -f xfce-mcs-manager || true
- mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
- kill -USR1 $mcs || true
+ kill -USR1 `pidof xfce-mcs-manager` || true
# Run ldconfig to update shared library system
ldconfig
Modified: desktop/trunk/xfce4-session/debian/changelog
===================================================================
--- desktop/trunk/xfce4-session/debian/changelog 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfce4-session/debian/changelog 2006-07-10 09:08:16 UTC (rev 723)
@@ -1,6 +1,6 @@
xfce4-session (4.3.90.1-2) UNRELEASED; urgency=low
- * Fixed package on hurd by not using pkill in postinst
+ * debian/postinst: fixed install on hurd by not using pkill.
-- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:40:19 +0200
Modified: desktop/trunk/xfce4-session/debian/postinst
===================================================================
--- desktop/trunk/xfce4-session/debian/postinst 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfce4-session/debian/postinst 2006-07-10 09:08:16 UTC (rev 723)
@@ -9,8 +9,7 @@
# Get xfce-mcs-manager to reinit
# hurd doesnt have procps so we do it another way
#pkill -USR1 -f xfce-mcs-manager || true
- mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
- kill -USR1 $mcs || true
+ kill -USR1 `pidof xfce-mcs-manager` || true
fi
Modified: desktop/trunk/xfce4-utils/debian/changelog
===================================================================
--- desktop/trunk/xfce4-utils/debian/changelog 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfce4-utils/debian/changelog 2006-07-10 09:08:16 UTC (rev 723)
@@ -1,6 +1,6 @@
xfce4-utils (4.3.90.1-2) UNRELEASED; urgency=low
- * Fixed package on hurd by not using pkill in postinst
+ * debian/postinst: fixed install on hurd by not using pkill.
-- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:41:14 +0200
Modified: desktop/trunk/xfce4-utils/debian/postinst
===================================================================
--- desktop/trunk/xfce4-utils/debian/postinst 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfce4-utils/debian/postinst 2006-07-10 09:08:16 UTC (rev 723)
@@ -3,10 +3,8 @@
if [ "$1" = "configure" ]; then
# Get xfce-mcs-manager to reinit
# hurd doesnt have procps so we do it another way
- mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
- kill -USR1 $mcs || true
-
#pkill -USR1 -f xfce-mcs-manager || true
+ kill -USR1 `pidof xfce-mcs-manager` || true
fi
#DEBHELPER#
Modified: desktop/trunk/xfdesktop4/debian/changelog
===================================================================
--- desktop/trunk/xfdesktop4/debian/changelog 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfdesktop4/debian/changelog 2006-07-10 09:08:16 UTC (rev 723)
@@ -1,6 +1,6 @@
xfdesktop4 (4.3.90.1-4) UNRELEASED; urgency=low
- * Fixed package on hurd by not using pkill in postinst
+ * debian/postinst: fixed install on hurd by not using pkill.
-- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:43:04 +0200
Modified: desktop/trunk/xfdesktop4/debian/postinst
===================================================================
--- desktop/trunk/xfdesktop4/debian/postinst 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfdesktop4/debian/postinst 2006-07-10 09:08:16 UTC (rev 723)
@@ -13,8 +13,7 @@
# Get xfce-mcs-manager to reinit
# hurd doesnt have procps so we do it another way
#pkill -USR1 -f xfce-mcs-manager || true
- mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
- kill -USR1 $mcs || true
+ kill -USR1 `pidof xfce-mcs-manager` || true
fi
Modified: desktop/trunk/xfprint4/debian/changelog
===================================================================
--- desktop/trunk/xfprint4/debian/changelog 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfprint4/debian/changelog 2006-07-10 09:08:16 UTC (rev 723)
@@ -1,6 +1,6 @@
xfprint4 (4.3.90.1-2) UNRELEASED; urgency=low
- * Fixed package on hurd by not using pkill in postinst
+ * debian/postinst: fixed install on hurd by not using pkill.
-- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:43:51 +0200
Modified: desktop/trunk/xfprint4/debian/postinst
===================================================================
--- desktop/trunk/xfprint4/debian/postinst 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfprint4/debian/postinst 2006-07-10 09:08:16 UTC (rev 723)
@@ -4,8 +4,7 @@
# Get xfce-mcs-manager to reinit
# hurd doesnt have procps so we do it another way
#pkill -USR1 -f xfce-mcs-manager || true
- mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
- kill -USR1 $mcs || true
+ kill -USR1 `pidof xfce-mcs-manager` || true
fi
Modified: desktop/trunk/xfwm4/debian/changelog
===================================================================
--- desktop/trunk/xfwm4/debian/changelog 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfwm4/debian/changelog 2006-07-10 09:08:16 UTC (rev 723)
@@ -1,6 +1,6 @@
xfwm4 (4.3.90.1-2) UNRELEASED; urgency=low
- * Fixed package on hurd by not using pkill in postinst
+ * debian/changelog: fixed install on hurd by not using pkill.
-- Yves-Alexis Perez <corsac at corsac.net> Tue, 20 Jun 2006 13:45:16 +0200
Modified: desktop/trunk/xfwm4/debian/postinst
===================================================================
--- desktop/trunk/xfwm4/debian/postinst 2006-07-09 21:38:21 UTC (rev 722)
+++ desktop/trunk/xfwm4/debian/postinst 2006-07-10 09:08:16 UTC (rev 723)
@@ -11,8 +11,7 @@
# Get xfce-mcs-manager to reinit
# hurd doesnt have procps so we do it another way
#pkill -USR1 -f xfce-mcs-manager || true
- mcs=`ps aux | grep xfce-[m]cs-manager | awk '{ print $2 }'`
- kill -USR1 $mcs || true
+ kill -USR1 `pidof xfce-mcs-manager` || true
fi
More information about the Pkg-xfce-commits
mailing list