From: Nicolas Thill Date: Sun, 2 Oct 2005 22:51:39 +0000 (+0000) Subject: start httpd only if /www exists X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=6cdb681373d34966b2086a6d55347f5f4892e9e5 start httpd only if /www exists SVN-Revision: 2032 --- diff --git a/openwrt/package/base-files/default/etc/init.d/S50httpd b/openwrt/package/base-files/default/etc/init.d/S50httpd index 9cf551e5c6..01772c12ea 100755 --- a/openwrt/package/base-files/default/etc/init.d/S50httpd +++ b/openwrt/package/base-files/default/etc/init.d/S50httpd @@ -1,2 +1,2 @@ #!/bin/sh -httpd -p 80 -h /www -r WRT54G Router +[ -d /www ] && httpd -p 80 -h /www -r WRT54G Router