From: Florian Fainelli Date: Sat, 23 Feb 2008 17:18:04 +0000 (+0000) Subject: Fix init script (#3057) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=84c38219601148c48686ce8f7075fd0cd769be73 Fix init script (#3057) SVN-Revision: 10520 --- diff --git a/net/dhcp/files/dhcpd.init b/net/dhcp/files/dhcpd.init index 15159bb8e3..ea16f01be5 100644 --- a/net/dhcp/files/dhcpd.init +++ b/net/dhcp/files/dhcpd.init @@ -15,7 +15,7 @@ start() { /usr/sbin/dhcpd -q -cf $config_file -lf $lease_file - if [ $$ -eq 0 ]; then + if [ $? -eq 0 ]; then echo " isc-dhcpd failed to start" fi } @@ -25,7 +25,7 @@ stop() { if [ -e $pid_file ]; then kill `cat $pid_file` - if [ $$ -eq 0 ]; then + if [ $? -eq 0 ]; then echo " PID " `cat $pid_file` not found echo " Is the DHCP server running?" fi