#!/bin/sh # # /etc/rc.d/rc.dhcpcd # # Start/stop the DHCP daemon. # # This script doesn't do anything other than starting dhcpcp for all interfaces. For more functionality see rc.inet1. case "$1" in 'start') dhcpcd -b ;; 'stop') dhcpcd -k ;; *) echo "Usage: $0 start|stop" esac