From 838c9efb36b3b058c5a5b9d0e8c6d4d4789a44b9 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Mon, 18 Mar 2013 18:29:36 -0500 Subject: 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. --- net/udhcpc.sh | 110 ---------------------------------------------------------- 1 file changed, 110 deletions(-) delete mode 100644 net/udhcpc.sh (limited to 'net/udhcpc.sh') 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 -# 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 -} -- cgit v1.2.3