Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 1691 - init script netmount ran before nfs init script
Summary: init script netmount ran before nfs init script
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Martin Schlemmer (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-04-12 00:28 UTC by Richard D. Jackson
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Richard D. Jackson 2002-04-12 00:28:19 UTC
The netmount init script is run before the nfs init script. This will cause the
boot process to hang if nfs mounts in fstab are set to mount at boot. Temporary
fix is set nfs mounts to not mount a boot. then manual mount them at a shell
prompt. This is a pain for me in that I have quite a few nfs mounts that I
normaly mount at boot. This is for Version 1.1a BTW.

Sugested solution have the netmount init script check to see if portmap is
running. if not start it. But only do this if nfs mounts are to be mounted. You
may also look into implementing a time out in case the user gets the fstab wrong
simular to what mandrake/redhat do.
Comment 1 Martin Schlemmer (RETIRED) gentoo-dev 2002-04-13 00:35:58 UTC
Look at the netmount initscript.  It already will run portmap if it is
*ADDED* to the "default" runlevel.  The logical reasoing is that if
a user use nfs mounts, he will merge portmap, and then add it to the
default runlevel:

# rc-update add portmap default

Check if this solves your problem.