Check-in [380071b4cc]
Logged in as anonymous
Overview
Comment:add cloned interfaces, make sure interfaces are initialized after module loading
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 380071b4cce5000ec6f664ded2325e14ae3304fdb4cdad1c2103787b5d6d0ba4
User & Date: arcade on 2019-10-20 12:31:43.047
Other Links: manifest | tags
Context
2019-10-21
10:37
rework daemonization, export enable variables and add checks for them check-in: 716b0393df user: arcade tags: trunk
2019-10-20
12:31
add cloned interfaces, make sure interfaces are initialized after module loading check-in: 380071b4cc user: arcade tags: trunk
12:28
add automountd check-in: c7728de200 user: arcade tags: trunk
Changes
Added cloned.init version [64db65eb84].
1
2
3
4
5
6
7
8
9
10
# vim:ft=make:

IFCONFIG_IFACES?=lo0
IFCONFIG_lo0?=inet 127.0.0.1/8 up

ifconfig: adjkerntz wlans
	: Starting interfaces.
.for iface in ${IFCONFIG_IFACES}
	ifconfig ${iface} ${IFCONFIG_${iface}}
.endfor





|




1
2
3
4
5
6
7
8
9
10
# vim:ft=make:

IFCONFIG_IFACES?=lo0
IFCONFIG_lo0?=inet 127.0.0.1/8 up

ifconfig: adjkerntz wlans cloned kld
	: Starting interfaces.
.for iface in ${IFCONFIG_IFACES}
	ifconfig ${iface} ${IFCONFIG_${iface}}
.endfor