Compare commits

...

No commits in common. "v961" and "v963" have entirely different histories.
v961 ... v963

3 changed files with 39 additions and 23 deletions

View File

@ -1,4 +0,0 @@
send host-name "_hostname_of_the_machine_";
send fqdn.fqdn "_hostname_of_the_machine.fqdn.";
send fqdn.encoded on;
send fqdn.server-update off;

18
etc/init/dhcpd.conf Normal file
View File

@ -0,0 +1,18 @@
description "dhcp Daemon (Dynamic host configuration) startup"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started rpc))
stop on runlevel [016]
pre-start script
/sbin/CheckPid /var/run/dhcpd.pid
exit $?
console none
script
if [ -f /etc/sysconfig/dhcp/dhcpd.conf ]; then
/sbin/dhcpd -q -cf /etc/sysconfig/dhcp/dhcpd.conf -f
fi
end script

View File

@ -21,6 +21,7 @@
#
#
if [ -d /var/install/sysvinit* ]; then
WDIR=`pwd`
cd etc/init.d
for i in *; do
@ -40,4 +41,5 @@ for i in 3 4 5; do
cd ..
done
cd $WDIR
fi
mkdir -p etc/sysconfig/dhcp