Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 102418 Details for
Bug 105919
sys-fs/trustees removal notice
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
Trustees service init script
trustees-init.d (text/plain), 1.07 KB, created by
matts
on 2006-11-20 10:57:13 UTC
(
hide
)
Description:
Trustees service init script
Filename:
MIME Type:
Creator:
matts
Created:
2006-11-20 10:57:13 UTC
Size:
1.07 KB
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2005 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > >opts="${opts} reload" > >depend() { > need checkfs >} > >check_mntpt() { > if [ ! -d "$TRUSTEESFS_MNTPT" ]; then > ebegin "Creating trusteesfs mountpoint" > mkdir -p "$TRUSTEESFS_MNTPT" > if [ ! -d "$TRUSTEESFS_MNTPT" ]; then > eend 1 > exit 1 > else > eend 0 > fi > fi >} > >start() { > ebegin "Starting Linux Trustees" > modprobe trustees > result=$? > if [ $result -ne 0 ]; then > #echo failed to load trustees module > eend $result > fi > > mount -t trusteesfs none "$TRUSTEESFS_MNTPT" > result=$? > if [ $result -ne 0 ]; then > #echo failed to mount trusteesfs > eend $result > fi > > /sbin/settrustees -f "$TRUSTEES_CONF" > result=$? > eend $result >} > >stop() { > ebegin "Stopping Linux Trustees" > /sbin/settrustees -D > umount -a -t trusteesfs > result=$? > if [ $result -ne 0 ]; then > #echo failed to dismount trusteesfs > eend $result > fi > > rmmod trustees > result=$? > eend $result >} > >reload() { > ebegin "Reloading trustees.conf" > /sbin/settrustees -f "$TRUSTEES_CONF" >}
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 105919
:
68422
|
68423
|
88129
|
102416
|
102417
| 102418 |
102421
|
102422