Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 8412 - Misspelled variable in /etc/init.d/netmount
Summary: Misspelled variable in /etc/init.d/netmount
Status: RESOLVED DUPLICATE of bug 7803
Alias: None
Product: Gentoo Infrastructure
Classification: Unclassified
Component: Bugzilla (show other bugs)
Hardware: x86 Linux
: Normal minor (vote)
Assignee: John Davis (zhen) (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-09-26 08:38 UTC by pasi.valminen
Modified: 2011-10-30 23:15 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 pasi.valminen 2002-09-26 08:38:34 UTC
Unmounting nfs mounts fail during shutdown. This is because in
/etc/init.d/netmount there's need ${mydeps} while there should be need
${myneed}. ${mydeps} is undefined and thus empty and the portmap gets stopped
before nfs shares is unmounted. So fixing the variable will do. Here's a diff.

24c24
< 	need ${mydeps}
---
> 	need ${myneed}
Comment 1 SpanKY gentoo-dev 2002-09-26 10:18:29 UTC

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