Package: gvfs
Version: 0.2.2-1
Severity: normal
Tags: patch
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu hardy ubuntu-patch
The gvfs-backends.postinst script sends KILLHUP to trigger a reload,
but should not complain, if there has been no process "killed".
The attached patch does "s/killall/killall -q/".
diff -u gvfs-0.2.2/debian/gvfs-backends.postinst
gvfs-0.2.2/debian/gvfs-backends.postinst
--- gvfs-0.2.2/debian/gvfs-backends.postinst
+++ gvfs-0.2.2/debian/gvfs-backends.postinst
@@ -5,7 +5,7 @@
if [ "$1" = "configure" ]; then
# Let gvfsd reload it's backend list
- killall /usr/lib/gvfs/gvfsd -HUP || true
+ killall -q /usr/lib/gvfs/gvfsd -HUP || true
fi
exit 0