* Create dhcpd.leases, otherwise dhcpd won't start.

svn path=/nixos/trunk/; revision=8380
This commit is contained in:
Eelco Dolstra 2007-03-20 12:34:52 +00:00
parent 80a0904196
commit 8447e036fd

View File

@ -16,9 +16,15 @@ start on network-interfaces/started
stop on network-interfaces/stop stop on network-interfaces/stop
script script
mkdir -m 755 -p ${stateDir}
touch ${stateDir}/dhcpd.leases
exec ${dhcp}/sbin/dhcpd -f -cf ${configFile} \\ exec ${dhcp}/sbin/dhcpd -f -cf ${configFile} \\
-lf ${stateDir}/dhcpd.leases \\ -lf ${stateDir}/dhcpd.leases \\
${toString interfaces} ${toString interfaces}
end script end script
"; ";