view network/dhcpcd/dhcpcd @ 669:97da3728a2f8

core/bash-completion: fix CMake config directory
author David Demelier <markand@malikania.fr>
date Wed, 31 Jul 2019 21:05:00 +0200
parents 657ee4987f4d
children 3dfef64b81c1
line wrap: on
line source

#!/bin/sh
#
# /etc/rc.d/dhcpcd -- run control script for dhcpcd
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

if [ -f /etc/rc.conf ]; then
	. /etc/rc.conf
fi

: ${DHCPCD_CMD:=/bin/dhcpcd}
: ${DHCPCD_ARGS:=-q -b}
: ${DHCPCD_PID:=/var/run/dhcpcd.pid}

dhcpcd_start()
{
	echo "Starting dhcpcd: $DHCPCD_CMD $DHCPCD_ARGS"
	$DHCPCD_CMD $DHCPCD_ARGS
}

dhcpcd_status()
{
	if [ -s $DHCPCD_PID ]; then
		echo "dhcpcd is running with pid: `cat $DHCPCD_PID`"
	else
		echo "dhcpcd is not running"
	fi
}

dhcpcd_stop()
{
	if [ -s $DHCPCD_PID ]; then
		echo "Stopping dhcpcd."
		$DHCPCD_CMD -x
	fi
}

dhcpcd_restart()
{
	dhcpcd_stop
	sleep 3
	dhcpcd_start
}

case $1 in
start)
	dhcpcd_start
	;;
status)
	dhcpcd_status
	;;
stop)
	dhcpcd_stop
	;;
restart)
	dhcpcd_restart
	;;
*)
	echo "usage: $(basename $0) restart|start|status|stop"
	;;
esac