source: bootscripts-standard/cblfs/init.d/dhcp @ 7df280d

Last change on this file since 7df280d was 7df280d, checked in by Joe Ciccone <jciccone@…>, 16 years ago

Change /bin/sh to /bin/bash in the bootscripts because the bootscripts use bashisms. Having ash linked to sh will cause errors. Thanks to Bigdassaved for providing the diff and Copper for bring up the issue.

  • Property mode set to 100644
File size: 734 bytes
Line 
1#!/bin/bash
2# Begin $rc_base/init.d/dhcp
3
4# Based on sysklogd script from LFS-3.1 and earlier.
5# Rewritten by Gerard Beekmans  - gerard@linuxfromscratch.org
6
7#$LastChangedBy: bdubbs $
8#$Date: 2005-08-01 14:29:19 -0500 (Mon, 01 Aug 2005) $
9
10. /etc/sysconfig/rc
11. $rc_functions
12
13case "$1" in
14        start)
15                boot_mesg "Starting DHCP Server..."
16                loadproc /usr/sbin/dhcpd -q eth1
17                ;;
18
19        stop)
20                boot_mesg "Stopping DHCP Server..."
21                killproc /usr/sbin/dhcpd
22                ;;
23
24        reload)
25                boot_mesg "Reloading DHCP Server..."
26                reloadproc /usr/sbin/dhcpd
27                ;;
28
29        restart)
30                $0 stop
31                sleep 1
32                $0 start
33                ;;
34
35        status)
36                statusproc /usr/sbin/dhcpd
37                ;;
38
39        *)
40                echo "Usage: $0 {start|stop|reload|restart|status}"
41                exit 1
42                ;;
43esac
44
45# End $rc_base/init.d/dhcp
Note: See TracBrowser for help on using the repository browser.