#!/bin/sh [ -e /usr/local/etc/httpd/httpd.conf ] || ( cd /usr/local/etc && tar xf /usr/local/share/apache2.4/httpd.tar.gz > /dev/null 2>&1 ) [ -e /usr/local/apache2/htdocs/index.html ] || ( cp -L /usr/local/share/apache2.4/index.html /usr/local/apache2/htdocs > /dev/null 2>&1 )