Package: freevo
Version: 1.9.0-5
Severity: normal
Tags: patch
Justification: Policy 9.3.2
User: [email protected]
Usertags: origin-ubuntu maverick ubuntu-patch
Hi,
in Ubuntu we applied the following change:
- debian/scripts/freevo: Fix argument handling.
And we think you might be interested in applying it too. Attaching the
patch.
diff -pruN 1.9.0-5/debian/scripts/freevo 1.9.0-5ubuntu1/debian/scripts/freevo
--- 1.9.0-5/debian/scripts/freevo 2008-02-17 18:25:35.000000000 +0000
+++ 1.9.0-5ubuntu1/debian/scripts/freevo 2010-09-01 20:48:55.000000000 +0100
@@ -2,6 +2,7 @@
DAEMON=/usr/bin/freevo
+X="$DAEMON.real $@"
U=`id -u`
G=`id -g`
@@ -35,7 +36,7 @@ fi
for i in `id -G` ; do
if test "$i" = "$FREEVO_GID" ; then
echo "Switching process to principal group 'freevo'."
- exec sg freevo -c "$DAEMON.real $@"
+ exec sg freevo -c "$X"
fi
done