Package: fuse-utils Version: 2.7.4-1.1 Severity: important Tags: patch User: initscripts-ng-de...@lists.alioth.debian.org Usertags: incorrect-dependency
Hi, While looking for init scripts with a missing dependency on $remote_fs, I found yours to be testing for the existence of a /usr/bin binary: > # Gracefully exit if the package has been removed. > test -x `which fusermount` || exit 0 $ which fusermount /usr/bin/fusermount Not depending on $remote_fs can prevent some fuse-enabled partitions from being (u)mounted by the fuse init scripts. All is needed is: @@ -1,8 +1,8 @@ #! /bin/sh ### BEGIN INIT INFO # Provides: fuse -# Required-Start: $local_fs -# Required-Stop: $local_fs +# Required-Start: $remote_fs +# Required-Stop: $remote_fs # Default-Start: S # Default-Stop: 0 6 # Short-Description: Filesystem in userspace Cheers, -- Raphael Geissert - Debian Maintainer www.debian.org - get.debian.net -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org