Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 285059 Details for
Bug 381131
net-fs/nfs-utils - Permit configuration of rpc.pipefs mount point
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
New init script
init.d_rpc.pipefs (text/plain), 897 bytes, created by
lgringo
on 2011-08-30 08:45:40 UTC
(
hide
)
Description:
New init script
Filename:
MIME Type:
Creator:
lgringo
Created:
2011-08-30 08:45:40 UTC
Size:
897 bytes
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2011 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/rpc.pipefs.initd,v 1.2 2011/06/19 23:04:36 vapier Exp $ > >mount_pipefs() { > local fstype=rpc_pipefs mntpoint="${RPC_PIPEFS_MOUNT_POINT}" > > if [ -z "$mntpoint" ]; then > mntpoint="/var/lib/nfs/rpc_pipefs" > fi > > # if things are already mounted, nothing to do > mountinfo -q ${mntpoint} && return 0 > > # if rpc_pipefs is not available, try to load sunrpc for it #219566 > grep -qs ${fstype} /proc/filesystems || modprobe -q sunrpc > # if still not available, the `mount` will issue an error for the user > > # now just do it for kicks > mkdir -p ${mntpoint} > mount -t ${fstype} ${fstype} ${mntpoint} >} > >start() { > ebegin "Setting up RPC pipefs" > mount_pipefs > eend $? "make sure you have NFS/SUNRPC enabled in your kernel" >}
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 381131
:
285057
|
285059
|
285239
|
285241
|
285243