2008-01-11 21:01:10 +05:30
|
|
|
# Copyright 2007-2008 Roy Marples <roy@marples.name>
|
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2008-01-11 20:38:57 +05:30
|
|
|
dhcpcd_depend()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
after interface
|
2008-01-11 04:53:39 +05:30
|
|
|
program start dhcpcd
|
2007-04-05 16:48:42 +05:30
|
|
|
provide dhcp
|
|
|
|
|
|
|
|
# We prefer dhcpcd over the others
|
|
|
|
after dhclient pump udhcpc
|
|
|
|
}
|
|
|
|
|
|
|
|
_config_vars="$_config_vars dhcp dhcpcd"
|
|
|
|
|
2008-01-11 20:38:57 +05:30
|
|
|
dhcpcd_start()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
local args= opt= opts= pidfile="/var/run/dhcpcd-${IFACE}.pid"
|
|
|
|
|
|
|
|
eval args=\$dhcpcd_${IFVAR}
|
|
|
|
|
|
|
|
# Get our options
|
|
|
|
eval opts=\$dhcp_${IFVAR}
|
|
|
|
[ -z "${opts}" ] && opts=${dhcp}
|
|
|
|
|
|
|
|
# Map some generic options to dhcpcd
|
2007-11-28 21:15:03 +05:30
|
|
|
for opt in ${opts}; do
|
2007-04-05 16:48:42 +05:30
|
|
|
case "${opt}" in
|
2007-11-28 21:15:03 +05:30
|
|
|
nodns) args="${args} -R";;
|
|
|
|
nontp) args="${args} -N";;
|
|
|
|
nonis) args="${args} -Y";;
|
|
|
|
nogateway) args="${args} -G";;
|
2007-04-05 16:48:42 +05:30
|
|
|
nosendhost) args="${args} -h ''";
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
# Add our route metric
|
|
|
|
[ "${metric:-0}" != "0" ] && args="${args} -m ${metric}"
|
|
|
|
|
|
|
|
# Bring up DHCP for this interface
|
|
|
|
ebegin "Running dhcpcd"
|
|
|
|
|
2007-11-21 21:09:19 +05:30
|
|
|
eval dhcpcd "${args}" "${IFACE}"
|
2007-04-05 16:48:42 +05:30
|
|
|
eend $? || return 1
|
|
|
|
|
|
|
|
_show_address
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2008-01-11 20:38:57 +05:30
|
|
|
dhcpcd_stop()
|
|
|
|
{
|
2007-11-21 21:09:19 +05:30
|
|
|
local pidfile="/var/run/dhcpcd-${IFACE}.pid" opts= sig=SIGTERM
|
2007-04-05 16:48:42 +05:30
|
|
|
[ ! -f "${pidfile}" ] && return 0
|
|
|
|
|
|
|
|
ebegin "Stopping dhcpcd on ${IFACE}"
|
2007-11-21 21:09:19 +05:30
|
|
|
eval opts=\$dhcp_${IFVAR}
|
|
|
|
[ -z "${opts}" ] && opts=${dhcp}
|
2007-04-05 16:48:42 +05:30
|
|
|
case " ${opts} " in
|
2007-11-21 21:09:19 +05:30
|
|
|
*" release "*) sig=SIGHUP;;
|
2007-04-05 16:48:42 +05:30
|
|
|
esac
|
2008-01-11 20:38:57 +05:30
|
|
|
start-stop-daemon --stop --quiet --signal ${sig} --pidfile "${pidfile}"
|
2007-04-05 16:48:42 +05:30
|
|
|
eend $?
|
|
|
|
}
|