ref: d8999511e0921e2aaa45f862c5b4ca9098d78a96
dir: /rc/bin/inst/startether/
#!/bin/rc # desc: activate ethernet card # prereq: configether switch($1) { case checkready if(isipdevup $netdev) { startether=done export startether } case go if(isipdevup $netdev) exit log starting ethernet $ethermethod config switch($ethermethod) { case manual ip/ipconfig -g $gwaddr ether $netdev $ipaddr $ipmask >>[2]/srv/log case dhcp ip/ipconfig >>[2]/srv/log } case checkdone if(! isipdevup $netdev) { startether=notdone export startether } }