dhcpcd is a small, bloat free DHCP client which includes these features * DHCP over firewire * User Class * SIP Servers * Domain Search * Classless Static Routes * IPv4LL aka APIPA aka Zeroconf * Node specific Client Identifiers * DHCP over Infiniband * Link carrier and interface addition/removal detection * Dynamic route management
15 lines
255 B
Bash
Executable file
15 lines
255 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# PROVIDE: dhcpcd
|
|
# REQUIRE: network mountcritlocal
|
|
# BEFORE: NETWORKING
|
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
|
|
|
name="dhcpcd"
|
|
rcvar=$name
|
|
command="@PREFIX@/sbin/${name}"
|
|
pidfile="@VARBASE@/run/${name}.pid"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|