diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2013-03-18 18:29:36 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-08-13 16:33:41 -0500 |
commit | 838c9efb36b3b058c5a5b9d0e8c6d4d4789a44b9 (patch) | |
tree | 4d30e9357d1f666ea37186b8a95dbe83c86b4dc8 /net/udhcpc.sh | |
parent | b2f8ac9382d5dad70181ef803a37f43896f5cb91 (diff) |
Remove gentoo's net.* scripts
It has been determined that it will be best for gentoo's net.* scripts
to be in a separate package to allow independent development.
This package will be called netifrc and maintained by Gentoo.
Diffstat (limited to 'net/udhcpc.sh')
-rw-r--r-- | net/udhcpc.sh | 110 |
1 files changed, 0 insertions, 110 deletions
diff --git a/net/udhcpc.sh b/net/udhcpc.sh deleted file mode 100644 index 130f8736..00000000 --- a/net/udhcpc.sh +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright (c) 2007-2008 Roy Marples <roy@marples.name> -# Released under the 2-clause BSD license. - -udhcpc_depend() -{ - program start /bin/busybox - after interface - provide dhcp -} - -_config_vars="$_config_vars dhcp udhcpc" - -udhcpc_start() -{ - local args= opt= opts= pidfile="/var/run/udhcpc-${IFACE}.pid" - local sendhost=true cachefile="/var/cache/udhcpc-${IFACE}.lease" - - eval args=\$udhcpc_${IFVAR} - - # Get our options - eval opts=\$dhcp_${IFVAR} - [ -z "${opts}" ] && opts=${dhcp} - - # This omits the Gentoo specific patch to busybox, - # but it creates temporary files. - # We can move this stuff to udhcpc hook script to avoid that, should we do? - local conf="/var/run/udhcpc-${IFACE}.conf" - echo -n >"$conf" - # Map some generic options to dhcpcd - for opt in ${opts}; do - case "${opt}" in - nodns) echo "PEER_DNS=no" >>"$conf" ;; - nontp) echo "PEER_NTP=no" >>"$conf" ;; - nogateway) echo "PEER_ROUTERS=no" >>"$conf" ;; - nosendhost) sendhost=false; - esac - done - - [ "${metric:-0}" != "0" ] && echo "IF_METRIC=${metric}" >>"$conf" - - ebegin "Running udhcpc" - - # Try and load the cache if it exists - if [ -f "${cachefile}" ]; then - case "$ {args} " in - *" --request="*|*" -r "*);; - *) - local x=$(cat "${cachefile}") - # Check for a valid ip - case "${x}" in - *.*.*.*) args="${args} --request=${x}";; - esac - ;; - esac - fi - - case " ${args} " in - *" --quit "*|*" -q "*) x="/bin/busybox udhcpc";; - *) x="start-stop-daemon --start --exec /bin/busybox \ - --pidfile \"${pidfile}\" -- udhcpc";; - esac - - case " ${args} " in - *" --hostname="*|*" -h "*|*" -H "*);; - *) - if ${sendhost}; then - local hname="$(hostname)" - if [ "${hname}" != "(none)" ] && [ "${hname}" != "localhost" ]; then - args="${args} -x hostname:'${hname}'" - fi - fi - ;; - esac - - eval "${x}" "${args}" --interface="${IFACE}" --now \ - --script="${RC_LIBEXECDIR}/sh/udhcpc-hook.sh" \ - --pidfile="${pidfile}" >/dev/null - eend $? || return 1 - - _show_address - return 0 -} - -udhcpc_stop() -{ - local pidfile="/var/run/udhcpc-${IFACE}.pid" opts= - [ ! -f "${pidfile}" ] && return 0 - - # Get our options - eval opts=\$dhcp_${IFVAR} - [ -z "${opts}" ] && opts=${dhcp} - - ebegin "Stopping udhcpc on ${IFACE}" - case " ${opts} " in - *" release "*) - start-stop-daemon --stop --quiet --signal USR2 \ - --exec /bin/busybox --pidfile "${pidfile}" - if [ -f /var/cache/udhcpc-"${IFACE}".lease ]; then - rm -f /var/cache/udhcpc-"${IFACE}".lease - fi - ;; - esac - - start-stop-daemon --stop --exec /bin/busybox --pidfile "${pidfile}" - eend $? - - if [ -e "/var/run/udhcpc-${IFACE}.conf" ]; then - rm -f "/var/run/udhcpc-${IFACE}.conf" - fi -} |