From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3F3B61395E1 for ; Thu, 3 Nov 2016 18:33:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D82BDE09B9; Thu, 3 Nov 2016 18:33:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C19D5E09B9 for ; Thu, 3 Nov 2016 18:33:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD687340F98 for ; Thu, 3 Nov 2016 18:33:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1EA5C7E1 for ; Thu, 3 Nov 2016 18:33:28 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1478197579.2bad4da89119c0385f9c92baef148590fb576c88.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:0.22.x commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/loopback.in X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 2bad4da89119c0385f9c92baef148590fb576c88 X-VCS-Branch: 0.22.x Date: Thu, 3 Nov 2016 18:33:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 50d028cc-661b-45c9-acea-0f2ad04ede5d X-Archives-Hash: c712c3ddaa026d105aafd18856787398 commit: 2bad4da89119c0385f9c92baef148590fb576c88 Author: William Hubbs gmail com> AuthorDate: Thu Nov 3 17:47:01 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Nov 3 18:26:19 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=2bad4da8 init.d/loopback.in: drop the route to the loopback interface on Linux This is related to #103. init.d/loopback.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/init.d/loopback.in b/init.d/loopback.in index 59bdae2..61f21cd 100644 --- a/init.d/loopback.in +++ b/init.d/loopback.in @@ -22,11 +22,9 @@ start() ebegin "Bringing up network interface lo" if command -v ip > /dev/null 2>&1; then ip addr add 127.0.0.1/8 dev lo brd + - ip route add 127.0.0.0/8 dev lo ip link set lo up else ifconfig lo 127.0.0.1 netmask 255.0.0.0 - route add -net 127.0.0.0 netmask 255.0.0.0 gw 127.0.0.1 fi else ebegin "Bringing up network interface lo0"