diff options
author | James Meyer <james.meyer@operamail.com> | 2009-08-01 03:12:52 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-08-01 03:12:52 (GMT) |
commit | db2c1433cfbd4fde1af9ffe3ad1e3d74dea8557e (patch) | |
tree | bcb58c687072dde1230fdb21c25b8af4f346345f /abs/core-testing/dhcp/dhcpd | |
parent | ad8df64823af09c36fa9f7369bb6e70ed8f3beda (diff) | |
download | linhes_pkgbuild-db2c1433cfbd4fde1af9ffe3ad1e3d74dea8557e.zip linhes_pkgbuild-db2c1433cfbd4fde1af9ffe3ad1e3d74dea8557e.tar.gz linhes_pkgbuild-db2c1433cfbd4fde1af9ffe3ad1e3d74dea8557e.tar.bz2 |
dhcp: version 4.1
Diffstat (limited to 'abs/core-testing/dhcp/dhcpd')
-rwxr-xr-x | abs/core-testing/dhcp/dhcpd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/abs/core-testing/dhcp/dhcpd b/abs/core-testing/dhcp/dhcpd index 0aebcc8..1fbb31e 100755 --- a/abs/core-testing/dhcp/dhcpd +++ b/abs/core-testing/dhcp/dhcpd @@ -2,6 +2,7 @@ . /etc/rc.conf . /etc/rc.d/functions +. /etc/conf.d/dhcp PIDFILE="/var/run/dhcpd.pid" PID=`cat $PIDFILE 2>/dev/null` @@ -9,7 +10,7 @@ case "$1" in start) stat_busy "Starting DHCP Server" if [ "$PID" = "" ]; then - /usr/sbin/dhcpd -q + /usr/sbin/dhcpd $DHCP_ARGS fi if [ "$PID" != "" -o $? -gt 0 ]; then stat_fail |