diff options
author | William Hubbs <williamh@gentoo.org> | 2011-04-15 19:21:20 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2011-04-15 19:21:20 -0500 |
commit | de0ded4ed05f1d52f92b22386fe7d5321ebf7e8e (patch) | |
tree | bb7d7564deac4c86fd67dcbb0136e085f6e199fe /init.d | |
parent | 75722dac4ed11ea90f4eeda2095ed75293ec3586 (diff) |
revert changes for bug #292894
This is being done because these dependency changes caused a regression.
We will need to revisit the previously mentioned bug.
X-Gentoo-Bug: 363693
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=363693
Diffstat (limited to 'init.d')
-rw-r--r-- | init.d/net.lo.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/init.d/net.lo.in b/init.d/net.lo.in index 68c88958..8f4ea9ba 100644 --- a/init.d/net.lo.in +++ b/init.d/net.lo.in @@ -18,12 +18,14 @@ depend() local IFACE=${RC_SVCNAME#*.} local IFVAR=$(shell_var "${IFACE}") + need localmount + after bootmisc provide net keyword -jail -prefix -vserver case "${IFACE}" in - lo|lo0) before mtab ; need root ;; - *) after bootmisc net.lo net.lo0 ; need localmount ;; + lo|lo0);; + *) after net.lo net.lo0;; esac if [ "$(command -v "depend_${IFVAR}")" = "depend_${IFVAR}" ]; then |