Add a new staticroute init script so that .... static routes can be configured!
Fixes Gentoo #288421.
This commit is contained in:
1
conf.d/.gitignore
vendored
1
conf.d/.gitignore
vendored
@@ -1 +1,2 @@
|
||||
network
|
||||
staticroute
|
||||
|
||||
@@ -1,14 +1,19 @@
|
||||
DIR= ${CONFDIR}
|
||||
CONF= bootmisc fsck hostname local localmount network urandom
|
||||
CONF= bootmisc fsck hostname local localmount network staticroute urandom
|
||||
|
||||
TARGETS+= network
|
||||
CLEANFILES+= network
|
||||
TARGETS+= network staticroute
|
||||
CLEANFILES+= network staticroute
|
||||
|
||||
MK= ../mk
|
||||
include ${MK}/os.mk
|
||||
include Makefile.${OS}
|
||||
include ${MK}/scripts.mk
|
||||
|
||||
SOS?= BSD
|
||||
|
||||
network: network.in network.${OS}
|
||||
cp network.in network
|
||||
[ -e network.${OS} ] && cat network.${OS} >> network || true
|
||||
cp $@.in $@
|
||||
[ -e $@.${OS} ] && cat $@.${OS} >> $@ || true
|
||||
|
||||
staticroute: staticroute.${SOS}
|
||||
cp $@.${SOS} $@
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
CONF+= consolefont dmesg hwclock keymaps modules
|
||||
SOS= Linux
|
||||
|
||||
2
conf.d/staticroute.BSD
Normal file
2
conf.d/staticroute.BSD
Normal file
@@ -0,0 +1,2 @@
|
||||
# Example static route. See route(8) for syntax.
|
||||
staticroute="net 192.168.0.0 -netmask 255.255.0.0 10.73.1.1"
|
||||
2
conf.d/staticroute.Linux
Normal file
2
conf.d/staticroute.Linux
Normal file
@@ -0,0 +1,2 @@
|
||||
# Example static route. See route(8) for syntax.
|
||||
staticroute="net 192.168.0.0 netmask 255.255.0.0 gw 10.73.1.1"
|
||||
Reference in New Issue
Block a user