FreeBSD Bugzilla – Attachment 157242 Details for
Bug 200513
[FUSEFS] Race at shutdown and corrupt fusefs systems
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
init script to umount fusefs file systems prior to the termination of the daemon
unmount-fuse (text/plain), 448 bytes, created by
rkoberman
on 2015-05-29 05:50:39 UTC
(
hide
)
Description:
init script to umount fusefs file systems prior to the termination of the daemon
Filename:
MIME Type:
Creator:
rkoberman
Created:
2015-05-29 05:50:39 UTC
Size:
448 bytes
patch
obsolete
>#!/bin/sh ># > ># PROVIDE: unmount-fuse ># REQUIRE: DAEMON ># BEFORE: LOGIN ># KEYWORD: shutdown nostart > >. /etc/rc.subr > >name="unmount-fuse" >start_cmd=":" >stop_cmd="fuse_stop" > >fuse_stop() >{ > local err fusefs > > # unmount fuse filesystems > err=0 > echo -n 'Unmounting all fusefs filesystems...' > for fs in `df | grep ^/dev/fuse | cut -f6 -w` ; do > echo -n " $fs" > umount $fs > done > echo "" >} > >load_rc_config $name >run_rc_command "$1"
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 200513
:
157242
|
182140
|
182141