Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/openrc:master commit in: init.d/
Date: Sun, 26 Aug 2012 01:32:55
Message-Id: 1345932544.1f011573544487bab0bee9d2a3d6ffa81c08ff48.WilliamH@OpenRC
1 commit: 1f011573544487bab0bee9d2a3d6ffa81c08ff48
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Fri Aug 24 21:09:57 2012 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 25 22:09:04 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=1f011573
7
8 do not provide a virtual for the loopback
9
10 The loopback interface is active on all systems, so there is no need to
11 provide a virtual for it.
12
13 ---
14 init.d/net.lo.in | 2 +-
15 init.d/network.in | 1 -
16 2 files changed, 1 insertions(+), 2 deletions(-)
17
18 diff --git a/init.d/net.lo.in b/init.d/net.lo.in
19 index 088398b..de441e2 100644
20 --- a/init.d/net.lo.in
21 +++ b/init.d/net.lo.in
22 @@ -26,7 +26,7 @@ depend()
23 keyword -jail -prefix -vserver
24
25 case "${IFACE}" in
26 - lo|lo0) provide lo;;
27 + lo|lo0) ;;
28 *)
29 after net.lo net.lo0 dbus
30 provide net
31
32 diff --git a/init.d/network.in b/init.d/network.in
33 index 65c199c..6e9b8c1 100644
34 --- a/init.d/network.in
35 +++ b/init.d/network.in
36 @@ -12,7 +12,6 @@ depend()
37 {
38 need localmount
39 after bootmisc
40 - provide lo
41 if [ -n "$(interfaces)" ]; then
42 provide net
43 fi