Package: fuse-utils
Version: 2.6.2-1
Hi,
postinst contains the following snippet, which works for systems which have
udev, but not others.
if [ -x "$(command -v MAKEDEV)" ]; then
echo "creating fuse device node..."
cd /dev; MAKEDEV fuse
fi
test -f /etc/default/fuse-utils && rm -f /etc/default/fuse-utils;
echo "creating fuse group..."
getent group fuse >/dev/null || addgroup --system fuse
if [ -x /sbin/udevcontrol ];
then /sbin/udevcontrol reload_rules || true;
fi
Maybe something like adding an else clause might help.
if [ -x /sbin/udevcontrol ];
then /sbin/udevcontrol reload_rules || true;
else
chgrp fuse /dev/fuse
fi
regards,
junichi
--
[EMAIL PROTECTED],netfort.gr.jp} Debian Project
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]