package motion
tags 560539 +patch
thanks
Hi,
I noticed that same issue. The attached patch works for me. Can you test
it too?
diff -Nru motion-3.2.12/debian/motion.postinst motion-3.2.12/debian/motion.postinst
--- motion-3.2.12/debian/motion.postinst 2010-04-10 18:18:52.000000000 +0300
+++ motion-3.2.12/debian/motion.postinst 2011-03-04 22:47:05.000000000 +0200
@@ -10,7 +10,7 @@
add_group_if_missing() {
if [ -x /usr/sbin/addgroup ]; then
if ! getent group motion >/dev/null; then
- addgroup --force-badname motion || true
+ addgroup --system --force-badname motion || true
fi
fi
}