On Sun, May 11, 2008 at 3:26 PM, nathan spindel <nathans@xxxxxxxxx> wrote: > -# if installed, it doesn't need further configuration (module_path) > -test -z "$httpd" && httpd='lighttpd -f' > +# use lighttpd if it exists, otherwise use apache2 > +if test -z "$httpd" > +then > + if type "lighttpd" > /dev/null 2>&1; > + then > + httpd="lighttpd -f" > + else > + httpd="apache2 -f" > + fi > +fi I personally would prefer to use webrick over apache2, since it's much more lightweight. That's just my two cents. Dave. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html