Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 9913

Summary: netmount rc script is broken
Product: Gentoo Linux Reporter: Bart Theunissen <Bart.Theunissen>
Component: [OLD] Core systemAssignee: Gentoo Linux bug wranglers <bug-wranglers>
Status: RESOLVED DUPLICATE    
Severity: normal    
Priority: High    
Version: unspecified   
Hardware: All   
OS: All   
Whiteboard:
Package list:
Runtime testing required: ---

Description Bart Theunissen 2002-10-29 13:13:43 UTC
When you have nfs mounted directories in /etc/fstab, 'portmap' is added to
'myneed'. But afterwards, 'need ${mydeps}' is called. It should be 'need ${myneed}'.

--- BEGIN FIX ---

--- /etc/init.d/netmount        2002-09-27 13:51:20.000000000 +0200
+++ netmount.fixed    2002-10-20 12:15:06.000000000 +0200
@@ -21,7 +21,7 @@
                local myuse="${myuse} nfs"
        fi
 
-       need ${mydeps}
+       need ${myneed}
        use ${myuse}
 }

--- END FIX ---
Comment 1 SpanKY gentoo-dev 2002-10-29 15:21:52 UTC
update your baselayout beaver

*** This bug has been marked as a duplicate of 7803 ***