diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2007-03-14 09:32:00 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2007-03-14 09:32:00 +0000 |
commit | 2a53c580b730fd657af004bde995e1c2eefe6234 (patch) | |
tree | 41d8df2748fb75a65feb142871b0244bfb3aebfa /util/init_script | |
parent | 2f759e1950e3908eb48fc000e88e0159649d8632 (diff) | |
download | libfuse-2a53c580b730fd657af004bde995e1c2eefe6234.tar.gz |
merge bugfixes up to merge3
Diffstat (limited to 'util/init_script')
-rwxr-xr-x | util/init_script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/init_script b/util/init_script index ed964cb..0ca395f 100755 --- a/util/init_script +++ b/util/init_script @@ -12,7 +12,7 @@ DESC="FUSE" MOUNTPOINT=/sys/fs/fuse/connections # Gracefully exit if the package has been removed. -test -x `which fusermount` || exit 0 +which fusermount &>/dev/null || exit 0 error() { |