Check-in [c9cd53b0f6]
Logged in as anonymous
Overview
Comment:make interface configuration multiline
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: c9cd53b0f66586015aeac4c088ee2982d06665dcfa8756b638f1ba54d4ea75b1
User & Date: arcade on 2019-10-23 07:40:41.910
Other Links: manifest | tags
Context
2019-10-23
07:54
join all init scripts to speed up initialization check-in: 295630c60d user: arcade tags: trunk
07:40
make interface configuration multiline check-in: c9cd53b0f6 user: arcade tags: trunk
06:33
add rc script check-in: 17041521b1 user: arcade tags: trunk
Changes
1
2
3
4
5
6

7

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

ifconfig: adjkerntz wlans cloned kld
	echo "MRC:$@> Starting interfaces: ${IFCONFIG_IFACES}"
.for iface in ${IFCONFIG_IFACES}

	ifconfig ${iface} ${IFCONFIG_${iface}}

.endfor

|




>
|
>

1
2
3
4
5
6
7
8
9
10
IFCONFIG_IFACES?=lo0
IFCONFIG_lo0?="inet 127.0.0.1/8 up"

ifconfig: adjkerntz wlans cloned kld
	echo "MRC:$@> Starting interfaces: ${IFCONFIG_IFACES}"
.for iface in ${IFCONFIG_IFACES}
.for item in ${IFCONFIG_${iface}}
	ifconfig ${iface} ${item}
.endfor
.endfor