From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/openrc:master commit in: conf.d/
Date: Tue, 19 Jul 2016 17:37:29 +0000 (UTC) [thread overview]
Message-ID: <1468946790.2108285d64e2ee8cc03fbe544efc3752fe349bdd.williamh@OpenRC> (raw)
commit: 2108285d64e2ee8cc03fbe544efc3752fe349bdd
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Tue Jul 19 15:22:17 2016 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Jul 19 16:46:30 2016 +0000
URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=2108285d
conf.d: remove network file fragnents
conf.d/network.BSD.in | 4 ----
conf.d/network.GNU-kFreeBSD.in | 4 ----
conf.d/network.GNU.in | 4 ----
conf.d/network.Linux.in | 43 ------------------------------------------
conf.d/network.in | 28 ---------------------------
5 files changed, 83 deletions(-)
diff --git a/conf.d/network.BSD.in b/conf.d/network.BSD.in
deleted file mode 100644
index 9f49b81..0000000
--- a/conf.d/network.BSD.in
+++ /dev/null
@@ -1,4 +0,0 @@
-
-# You can assign a default route
-#defaultroute="192.168.0.1"
-#defaultroute6="2001:a:b:c"
diff --git a/conf.d/network.GNU-kFreeBSD.in b/conf.d/network.GNU-kFreeBSD.in
deleted file mode 100644
index 9f49b81..0000000
--- a/conf.d/network.GNU-kFreeBSD.in
+++ /dev/null
@@ -1,4 +0,0 @@
-
-# You can assign a default route
-#defaultroute="192.168.0.1"
-#defaultroute6="2001:a:b:c"
diff --git a/conf.d/network.GNU.in b/conf.d/network.GNU.in
deleted file mode 100644
index 78aa412..0000000
--- a/conf.d/network.GNU.in
+++ /dev/null
@@ -1,4 +0,0 @@
-
-# You can assign a default route
-#defaultroute="gw 192.168.0.1"
-#defaultroute6="gw 2001:a:b:c"
diff --git a/conf.d/network.Linux.in b/conf.d/network.Linux.in
deleted file mode 100644
index f57ec91..0000000
--- a/conf.d/network.Linux.in
+++ /dev/null
@@ -1,43 +0,0 @@
-
-# You can assign a default route
-#defaultroute="gw 192.168.0.1"
-#defaultroute6="gw 2001:a:b:c"
-
-# ifconfig under Linux is not that powerful and doesn't easily handle
-# multiple addresses
-# On the other hand, ip (iproute2) is quite powerful and is also supported
-#ip_eth0="192.168.0.10/24; 192.168.10.10/24"
-
-# You can also use ip to add the default route.
-#defaultiproute="via 192.168.0.1"
-#defaultiproute6="via 2001:a:b:c"
-
-# ip doesn't handle MTU like ifconfig, but we can do it like so
-#ifup_eth0="ip link set \$int mtu 1500"
-
-# Create a bonded interface
-#interfaces="bond0"
-#ifup_bond0="modprobe bonding; ifconfig \$int up; ifenslave \$int bge0"
-#ifconfig_bond0="192.168.0.10 netmask 255.255.255.0"
-#ifdown_bond0="rmmod bonding"
-
-# Create tap interface and a bridge interface.
-# We add the tap to the bridge.
-# An external program, like dhcpcd, will configure the IP on the bridge
-#interfaces="tun0 br0"
-#ifup_tun0="tunctl -t \$int"
-#ifdown_tun0="tunctl -d \$int"
-#ifup_br0="brctl addbr \$int; brctl add \$int eth1; brtctl add \$int eth2"
-#ifdown_br0="ifconfig \$int down; btctl delbr \$int"
-
-# Create VLAN
-#interfaces="eth0_2 eth0_3 eth0_4"
-#ifup_eth0="vconfig add \$int 2; vconfig add \$int 3; vconfig add \$int 4"
-#ifconfig_eth0_2="192.168.2.10 netmask 255.255.255.0"
-#ifconfig_eth0_3="192.168.3.10 netmask 255.255.255.0"
-#ifconfig_eth0_4="192.168.4.10 netmask 255.255.255.0"
-#ifdown_eth0="vconfig rem \$int.2; vconfig rem \$int.3; vconfig rem \$int.4"
-
-# Normally you would use wpa_supplicant to configure wireless, but you can
-# use iwconfig also
-#ifup_wlan0="iwconfig \$int key s:secretkey enc open essid foobar"
diff --git a/conf.d/network.in b/conf.d/network.in
deleted file mode 100644
index d5477a0..0000000
--- a/conf.d/network.in
+++ /dev/null
@@ -1,28 +0,0 @@
-# Assign static IP addresses and run custom scripts per interface.
-# Seperate commands with ;
-# Prefix with ! to run a shell script.
-# Use \$int to represent the interface
-#ifconfig_eth0="192.168.0.10 netmask 255.255.255.0"
-
-# You also have ifup_eth0 and ifdown_eth0 to run other commands when
-# eth0 is started and stopped.
-# You should note that we don't stop the network at system shutdown by default.
-# If you really need this, then set keep_network=NO
-
-# Lastly, the interfaces variable pulls in virtual interfaces that cannot
-# be automatically detected.
-#interfaces="br0 bond0 vlan0"
-
-# You can also use files instead of variables here if you like:
-# /etc/ifconfig.eth0 is equivalent to ifconfig_eth0
-# /etc/ip.eth0 is equivalent to ifconfig_eth0
-# /etc/ifup.eth0 is equivalent to ifup_eth0
-# /etc/ifdown.eth0 is equivalent to ifdown_eth0
-# Any files found will automatically be put into the interfaces variable.
-# You don't need to escape variables in files, so use $int instead of \$int.
-
-# If you require DHCP, you should install dhcpcd and it to the boot or
-# default runlevel.
-
-# NIS users can set the domain name here
-#domainname="foobar"
next reply other threads:[~2016-07-19 17:37 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-19 17:37 William Hubbs [this message]
-- strict thread matches above, loose matches on Subject: below --
2017-07-24 22:28 [gentoo-commits] proj/openrc:master commit in: conf.d/ William Hubbs
2016-11-03 17:07 William Hubbs
2016-07-19 17:37 William Hubbs
2016-07-19 17:37 William Hubbs
2016-07-19 17:37 William Hubbs
2016-01-19 22:26 William Hubbs
2015-11-11 21:54 William Hubbs
2014-08-22 19:10 William Hubbs
2014-08-10 18:08 ` William Hubbs
2014-03-13 20:28 William Hubbs
2014-01-09 20:14 William Hubbs
2012-11-29 18:46 William Hubbs
2012-07-09 14:28 William Hubbs
2012-06-07 15:56 William Hubbs
2012-03-02 17:06 William Hubbs
2011-10-08 18:54 Robin H. Johnson
2011-06-19 23:43 William Hubbs
2011-05-17 18:12 William Hubbs
2011-03-22 5:39 William Hubbs
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1468946790.2108285d64e2ee8cc03fbe544efc3752fe349bdd.williamh@OpenRC \
--to=williamh@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox