diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2012-08-24 16:09:57 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2012-08-25 17:09:04 -0500 |
commit | 1f011573544487bab0bee9d2a3d6ffa81c08ff48 (patch) | |
tree | 3fbca5df5f832c0912568fd413f1d260b43fdc57 /init.d | |
parent | 8f675d14e86e9e86a2d17b825aae9af519214305 (diff) |
do not provide a virtual for the loopback
The loopback interface is active on all systems, so there is no need to
provide a virtual for it.
Diffstat (limited to 'init.d')
-rw-r--r-- | init.d/net.lo.in | 2 | ||||
-rw-r--r-- | init.d/network.in | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/init.d/net.lo.in b/init.d/net.lo.in index 088398b1..de441e22 100644 --- a/init.d/net.lo.in +++ b/init.d/net.lo.in @@ -26,7 +26,7 @@ depend() keyword -jail -prefix -vserver case "${IFACE}" in - lo|lo0) provide lo;; + lo|lo0) ;; *) after net.lo net.lo0 dbus provide net diff --git a/init.d/network.in b/init.d/network.in index 65c199c1..6e9b8c1f 100644 --- a/init.d/network.in +++ b/init.d/network.in @@ -12,7 +12,6 @@ depend() { need localmount after bootmisc - provide lo if [ -n "$(interfaces)" ]; then provide net fi |