an easy and consistent way of installing software ported to FreeBSD
#!/bin/sh
# $FreeBSD: ports/www/apache13/pkg-deinstall,v 1.2 2001/12/07 23:12:27 ache Exp $
#
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
USER=www
if pw usershow "${USER}" 2>/dev/null 1>&2; then
echo "To delete Apache user permanently, use 'pw userdel ${USER}'"
fi
exit 0
Apache is an HTTP server designed as a plug-in replacement for the NCSA
server version 1.3 (or 1.4). It fixes numerous bugs in the NCSA server and
includes many frequently requested new features, and has an API which
allows it to be extended to meet users' needs more easily.
WWW: http://httpd.apache.org/
#!/bin/sh
# $FreeBSD: ports/www/apache13/pkg-install,v 1.1 2001/10/21 17:33:37 ache Exp $
#
if [ "$2" != "PRE-INSTALL" ]; then
exit 0
fi
USER=www
GROUP=${USER}
UID=80
GID=${UID}
if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then
if pw groupadd ${GROUP} -g ${GID}; then
echo "Added group \"${GROUP}\"."
else
echo "Adding group \"${GROUP}\" failed..."
exit 1
fi
fi
if ! pw usershow "${USER}" 2>/dev/null 1>&2; then
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-s "/sbin/nologin" -d "/nonexistent" \
-c "World Wide Web Owner"; \
then
echo "Added user \"${USER}\"."
else
echo "Adding user \"${USER}\" failed..."
exit 1
fi
fi
exit 0
===> COMPATIBILITY NOTE:
As of version 1.3.24, the RedirectMatch directive requires an
absolute URL target location per RFC 2068. Uses of RedirectMatch that
specify a relative URL will fail and must be corrected to function.
===> BE CAREFULL HOW TO BOOT on 1.3.29_4 or after:
To run apache www server from startup, add apache_enable="YES"
in your /etc/rc.conf.
@comment $FreeBSD: ports/www/apache13/pkg-plist,v 1.66 2007/10/19 06:57:29 ache Exp $
bin/checkgid
bin/dbmmanage
bin/htdigest
bin/htpasswd
@unexec if cmp -s %D/etc/apache/access.conf %D/etc/apache/access.conf-dist; then rm -f %D/etc/apache/access.conf; fi
etc/apache/access.conf-dist
@exec [ -f %B/access.conf ] || cp %B/%f %B/access.conf
@unexec if cmp -s %D/etc/apache/httpd.conf %D/etc/apache/httpd.conf-dist; then rm -f %D/etc/apache/httpd.conf; fi
etc/apache/httpd.conf-dist
@exec [ -f %B/httpd.conf ] || cp %B/%f %B/httpd.conf
@unexec if cmp -s %D/etc/apache/magic %D/etc/apache/magic-dist; then rm -f %D/etc/apache/magic; fi
etc/apache/magic-dist
@exec [ -f %B/magic ] || cp %B/%f %B/magic
@unexec if cmp -s %D/etc/apache/mime.types %D/etc/apache/mime.types-dist; then rm -f %D/etc/apache/mime.types; fi
etc/apache/mime.types-dist
@exec [ -f %B/mime.types ] || cp %B/%f %B/mime.types
@unexec if cmp -s %D/etc/apache/srm.conf %D/etc/apache/srm.conf-dist; then rm -f %D/etc/apache/srm.conf; fi
etc/apache/srm.conf-dist
@exec [ -f %B/srm.conf ] || cp %B/%f %B/srm.conf
include/apache/ap.h
include/apache/ap_alloc.h
include/apache/ap_compat.h
include/apache/ap_config.h
include/apache/ap_config_auto.h
include/apache/ap_ctype.h
include/apache/ap_ebcdic.h
include/apache/ap_md5.h
include/apache/ap_mmn.h
include/apache/ap_sha1.h
include/apache/buff.h
include/apache/compat.h
include/apache/conf.h
include/apache/explain.h
include/apache/fnmatch.h
include/apache/hsregex.h
include/apache/http_conf_globals.h
include/apache/http_config.h
include/apache/http_core.h
include/apache/http_log.h
include/apache/http_main.h
include/apache/http_protocol.h
include/apache/http_request.h
include/apache/http_vhost.h
include/apache/httpd.h
include/apache/multithread.h
include/apache/os-inline.c
include/apache/os.h
include/apache/rfc1413.h
include/apache/scoreboard.h
include/apache/util_date.h
include/apache/util_md5.h
include/apache/util_script.h
include/apache/util_uri.h
include/apache/xml/asciitab.h
include/apache/xml/hashtable.h
include/apache/xml/iasciitab.h
include/apache/xml/latin1tab.h
include/apache/xml/nametab.h
include/apache/xml/utf8tab.h
include/apache/xml/xmldef.h
include/apache/xml/xmlparse.h
include/apache/xml/xmlrole.h
include/apache/xml/xmltok.h
include/apache/xml/xmltok_impl.h
libexec/apache/httpd.exp
libexec/apache/libproxy.so
libexec/apache/mod_access.so
libexec/apache/mod_actions.so
libexec/apache/mod_alias.so
libexec/apache/mod_asis.so
libexec/apache/mod_auth.so
libexec/apache/mod_auth_anon.so
libexec/apache/mod_auth_db.so
libexec/apache/mod_autoindex.so
libexec/apache/mod_cern_meta.so
libexec/apache/mod_cgi.so
libexec/apache/mod_digest.so
libexec/apache/mod_dir.so
libexec/apache/mod_env.so
libexec/apache/mod_expires.so
libexec/apache/mod_headers.so
libexec/apache/mod_imap.so
libexec/apache/mod_include.so
libexec/apache/mod_info.so
libexec/apache/mod_log_config.so
libexec/apache/mod_log_forensic.so
libexec/apache/mod_mime.so
libexec/apache/mod_mime_magic.so
libexec/apache/mod_mmap_static.so
libexec/apache/mod_negotiation.so
libexec/apache/mod_rewrite.so
libexec/apache/mod_setenvif.so
libexec/apache/mod_speling.so
libexec/apache/mod_status.so
libexec/apache/mod_unique_id.so
libexec/apache/mod_userdir.so
libexec/apache/mod_usertrack.so
libexec/apache/mod_vhost_alias.so
sbin/ab
sbin/apachectl
sbin/apxs
sbin/httpd
sbin/logresolve
sbin/rotatelogs
%%SUB_SUEXEC%%sbin/suexec
@exec mkdir -p -m 755 %D/www/data-dist
@exec [ -d %D/www/data/ ] || mkdir -p -m 755 %D/www/data/
www/data-dist/apache_pb.gif
www/data-dist/index.html.ca
www/data-dist/index.html.cz
www/data-dist/index.html.de
www/data-dist/index.html.dk
www/data-dist/index.html.ee
www/data-dist/index.html.el
www/data-dist/index.html.en
www/data-dist/index.html.es
www/data-dist/index.html.fr
www/data-dist/index.html.he.iso8859-8
www/data-dist/index.html.hu
www/data-dist/index.html.it
www/data-dist/index.html.ja.jis
www/data-dist/index.html.kr.iso-kr
www/data-dist/index.html.lb.utf8
www/data-dist/index.html.nl
www/data-dist/index.html.nn
www/data-dist/index.html.no
www/data-dist/index.html.po.iso-pl
www/data-dist/index.html.pt
www/data-dist/index.html.pt-br
www/data-dist/index.html.ru.cp-1251
www/data-dist/index.html.ru.cp866
www/data-dist/index.html.ru.iso-ru
www/data-dist/index.html.ru.koi8-r
www/data-dist/index.html.ru.ucs2
www/data-dist/index.html.ru.ucs4
www/data-dist/index.html.ru.utf8
www/data-dist/index.html.se
www/data-dist/index.html.zh-tw.big5
%%NODOCS%%%%DOCSDIR%%/LICENSE
%%NODOCS%%%%DOCSDIR%%/bind.html.en
%%NODOCS%%%%DOCSDIR%%/bind.html.fr
%%NODOCS%%%%DOCSDIR%%/bind.html.html
%%NODOCS%%%%DOCSDIR%%/bind.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/configuring.html.en
%%NODOCS%%%%DOCSDIR%%/configuring.html.fr
%%NODOCS%%%%DOCSDIR%%/configuring.html.html
%%NODOCS%%%%DOCSDIR%%/configuring.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/content-negotiation.html.en
%%NODOCS%%%%DOCSDIR%%/content-negotiation.html.html
%%NODOCS%%%%DOCSDIR%%/content-negotiation.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/custom-error.html.en
%%NODOCS%%%%DOCSDIR%%/custom-error.html.fr
%%NODOCS%%%%DOCSDIR%%/custom-error.html.html
%%NODOCS%%%%DOCSDIR%%/custom-error.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/cygwin.html
%%NODOCS%%%%DOCSDIR%%/dns-caveats.html.en
%%NODOCS%%%%DOCSDIR%%/dns-caveats.html.fr
%%NODOCS%%%%DOCSDIR%%/dns-caveats.html.html
%%NODOCS%%%%DOCSDIR%%/dns-caveats.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/dso.html
%%NODOCS%%%%DOCSDIR%%/ebcdic.html
%%NODOCS%%%%DOCSDIR%%/env.html.en
%%NODOCS%%%%DOCSDIR%%/env.html.html
%%NODOCS%%%%DOCSDIR%%/env.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/footer.html
%%NODOCS%%%%DOCSDIR%%/handler.html.en
%%NODOCS%%%%DOCSDIR%%/handler.html.html
%%NODOCS%%%%DOCSDIR%%/handler.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/header.html
%%NODOCS%%%%DOCSDIR%%/howto/auth.html
%%NODOCS%%%%DOCSDIR%%/howto/cgi.html.en
%%NODOCS%%%%DOCSDIR%%/howto/cgi.html.html
%%NODOCS%%%%DOCSDIR%%/howto/cgi.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/howto/footer.html
%%NODOCS%%%%DOCSDIR%%/howto/header.html
%%NODOCS%%%%DOCSDIR%%/howto/htaccess.html
%%NODOCS%%%%DOCSDIR%%/howto/ssi.html.en
%%NODOCS%%%%DOCSDIR%%/howto/ssi.html.html
%%NODOCS%%%%DOCSDIR%%/howto/ssi.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/images/apache_header.gif
%%NODOCS%%%%DOCSDIR%%/images/custom_errordocs.gif
%%NODOCS%%%%DOCSDIR%%/images/home.gif
%%NODOCS%%%%DOCSDIR%%/images/index.gif
%%NODOCS%%%%DOCSDIR%%/images/mod_rewrite_fig1.fig
%%NODOCS%%%%DOCSDIR%%/images/mod_rewrite_fig1.gif
%%NODOCS%%%%DOCSDIR%%/images/mod_rewrite_fig2.fig
%%NODOCS%%%%DOCSDIR%%/images/mod_rewrite_fig2.gif
%%NODOCS%%%%DOCSDIR%%/images/pixel.gif
%%NODOCS%%%%DOCSDIR%%/images/sub.gif
%%NODOCS%%%%DOCSDIR%%/index.html.en
%%NODOCS%%%%DOCSDIR%%/index.html.fr
%%NODOCS%%%%DOCSDIR%%/index.html.html
%%NODOCS%%%%DOCSDIR%%/index.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/install-tpf.html
%%NODOCS%%%%DOCSDIR%%/install-ztpf.html
%%NODOCS%%%%DOCSDIR%%/install.html.en
%%NODOCS%%%%DOCSDIR%%/install.html.es
%%NODOCS%%%%DOCSDIR%%/install.html.fr
%%NODOCS%%%%DOCSDIR%%/install.html.html
%%NODOCS%%%%DOCSDIR%%/install.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/invoking.html.en
%%NODOCS%%%%DOCSDIR%%/invoking.html.fr
%%NODOCS%%%%DOCSDIR%%/invoking.html.html
%%NODOCS%%%%DOCSDIR%%/invoking.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/keepalive.html.en
%%NODOCS%%%%DOCSDIR%%/keepalive.html.html
%%NODOCS%%%%DOCSDIR%%/keepalive.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/location.html.en
%%NODOCS%%%%DOCSDIR%%/location.html.html
%%NODOCS%%%%DOCSDIR%%/location.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/logs.html
%%NODOCS%%%%DOCSDIR%%/man-template.html
%%NODOCS%%%%DOCSDIR%%/misc/API.html
%%NODOCS%%%%DOCSDIR%%/misc/FAQ.html
%%NODOCS%%%%DOCSDIR%%/misc/HTTP_Features.tsv
%%NODOCS%%%%DOCSDIR%%/misc/client_block_api.html
%%NODOCS%%%%DOCSDIR%%/misc/compat_notes.html
%%NODOCS%%%%DOCSDIR%%/misc/custom_errordocs.html
%%NODOCS%%%%DOCSDIR%%/misc/descriptors.html
%%NODOCS%%%%DOCSDIR%%/misc/fin_wait_2.html
%%NODOCS%%%%DOCSDIR%%/misc/footer.html
%%NODOCS%%%%DOCSDIR%%/misc/header.html
%%NODOCS%%%%DOCSDIR%%/misc/howto.html
%%NODOCS%%%%DOCSDIR%%/misc/index.html
%%NODOCS%%%%DOCSDIR%%/misc/known_client_problems.html
%%NODOCS%%%%DOCSDIR%%/misc/nopgp.html
%%NODOCS%%%%DOCSDIR%%/misc/perf-bsd44.html
%%NODOCS%%%%DOCSDIR%%/misc/perf-dec.html
%%NODOCS%%%%DOCSDIR%%/misc/perf-hp.html
%%NODOCS%%%%DOCSDIR%%/misc/perf-tuning.html
%%NODOCS%%%%DOCSDIR%%/misc/perf.html
%%NODOCS%%%%DOCSDIR%%/misc/rewriteguide.html
%%NODOCS%%%%DOCSDIR%%/misc/security_tips.html
%%NODOCS%%%%DOCSDIR%%/misc/tutorials.html
%%NODOCS%%%%DOCSDIR%%/misc/vif-info.html
%%NODOCS%%%%DOCSDIR%%/misc/windoz_keepalive.html
%%NODOCS%%%%DOCSDIR%%/mod/core.html.en
%%NODOCS%%%%DOCSDIR%%/mod/core.html.fr
%%NODOCS%%%%DOCSDIR%%/mod/core.html.html
%%NODOCS%%%%DOCSDIR%%/mod/core.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/directive-dict.html.en
%%NODOCS%%%%DOCSDIR%%/mod/directive-dict.html.fr
%%NODOCS%%%%DOCSDIR%%/mod/directive-dict.html.html
%%NODOCS%%%%DOCSDIR%%/mod/directive-dict.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/directives.html.de
%%NODOCS%%%%DOCSDIR%%/mod/directives.html.en
%%NODOCS%%%%DOCSDIR%%/mod/directives.html.fr
%%NODOCS%%%%DOCSDIR%%/mod/directives.html.html
%%NODOCS%%%%DOCSDIR%%/mod/directives.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/footer.html
%%NODOCS%%%%DOCSDIR%%/mod/header.html
%%NODOCS%%%%DOCSDIR%%/mod/index-bytype.html.en
%%NODOCS%%%%DOCSDIR%%/mod/index-bytype.html.fr
%%NODOCS%%%%DOCSDIR%%/mod/index-bytype.html.html
%%NODOCS%%%%DOCSDIR%%/mod/index-bytype.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/index.html.en
%%NODOCS%%%%DOCSDIR%%/mod/index.html.fr
%%NODOCS%%%%DOCSDIR%%/mod/index.html.html
%%NODOCS%%%%DOCSDIR%%/mod/index.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_access.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_access.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_access.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_actions.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_actions.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_actions.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_alias.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_alias.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_alias.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_asis.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_asis.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_asis.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_auth.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_auth.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_auth.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_auth_anon.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_auth_db.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_auth_dbm.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_auth_digest.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_browser.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_cern_meta.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_cgi.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_cgi.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_cgi.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_cookies.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_digest.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_dir.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_dir.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_dir.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_dld.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_env.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_env.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_env.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_example.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_expires.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_headers.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_imap.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_include.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_info.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_info.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_info.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_isapi.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_log_agent.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_log_common.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_log_config.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_log_config.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_log_config.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_log_forensic.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_log_forensic.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_log_referer.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_mime.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_mime.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_mime.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_mime_magic.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_mmap_static.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_negotiation.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_negotiation.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_negotiation.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_proxy.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_rewrite.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_rewrite.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_rewrite.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_setenvif.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_setenvif.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_setenvif.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_so.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_so.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_so.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_speling.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_speling.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_speling.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_status.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_unique_id.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_unique_id.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_unique_id.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_userdir.html.en
%%NODOCS%%%%DOCSDIR%%/mod/mod_userdir.html.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_userdir.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mod/mod_usertrack.html
%%NODOCS%%%%DOCSDIR%%/mod/mod_vhost_alias.html
%%NODOCS%%%%DOCSDIR%%/mod/module-dict.html.en
%%NODOCS%%%%DOCSDIR%%/mod/module-dict.html.html
%%NODOCS%%%%DOCSDIR%%/mod/module-dict.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/mpeix.html
%%NODOCS%%%%DOCSDIR%%/multilogs.html
%%NODOCS%%%%DOCSDIR%%/netware.html
%%NODOCS%%%%DOCSDIR%%/new_features_1_0.html
%%NODOCS%%%%DOCSDIR%%/new_features_1_1.html
%%NODOCS%%%%DOCSDIR%%/new_features_1_2.html
%%NODOCS%%%%DOCSDIR%%/new_features_1_3.html.en
%%NODOCS%%%%DOCSDIR%%/new_features_1_3.html.html
%%NODOCS%%%%DOCSDIR%%/new_features_1_3.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/process-model.html.en
%%NODOCS%%%%DOCSDIR%%/process-model.html.html
%%NODOCS%%%%DOCSDIR%%/process-model.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/programs/ab.html
%%NODOCS%%%%DOCSDIR%%/programs/apachectl.html.en
%%NODOCS%%%%DOCSDIR%%/programs/apachectl.html.html
%%NODOCS%%%%DOCSDIR%%/programs/apachectl.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/programs/apxs.html
%%NODOCS%%%%DOCSDIR%%/programs/dbmmanage.html
%%NODOCS%%%%DOCSDIR%%/programs/footer.html
%%NODOCS%%%%DOCSDIR%%/programs/header.html
%%NODOCS%%%%DOCSDIR%%/programs/htdigest.html
%%NODOCS%%%%DOCSDIR%%/programs/htpasswd.html.en
%%NODOCS%%%%DOCSDIR%%/programs/htpasswd.html.html
%%NODOCS%%%%DOCSDIR%%/programs/htpasswd.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/programs/httpd.html.en
%%NODOCS%%%%DOCSDIR%%/programs/httpd.html.html
%%NODOCS%%%%DOCSDIR%%/programs/httpd.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/programs/index.html.en
%%NODOCS%%%%DOCSDIR%%/programs/index.html.html
%%NODOCS%%%%DOCSDIR%%/programs/index.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/programs/logresolve.html
%%NODOCS%%%%DOCSDIR%%/programs/other.html
%%NODOCS%%%%DOCSDIR%%/programs/rotatelogs.html
%%NODOCS%%%%DOCSDIR%%/programs/suexec.html.en
%%NODOCS%%%%DOCSDIR%%/programs/suexec.html.html
%%NODOCS%%%%DOCSDIR%%/programs/suexec.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/readme-tpf.html
%%NODOCS%%%%DOCSDIR%%/sections.html.en
%%NODOCS%%%%DOCSDIR%%/sections.html.html
%%NODOCS%%%%DOCSDIR%%/sections.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/server-wide.html.en
%%NODOCS%%%%DOCSDIR%%/server-wide.html.fr
%%NODOCS%%%%DOCSDIR%%/server-wide.html.html
%%NODOCS%%%%DOCSDIR%%/server-wide.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/sitemap.html
%%NODOCS%%%%DOCSDIR%%/sourcereorg.html
%%NODOCS%%%%DOCSDIR%%/stopping.html.en
%%NODOCS%%%%DOCSDIR%%/stopping.html.fr
%%NODOCS%%%%DOCSDIR%%/stopping.html.html
%%NODOCS%%%%DOCSDIR%%/suexec.html.en
%%NODOCS%%%%DOCSDIR%%/suexec.html.html
%%NODOCS%%%%DOCSDIR%%/suexec.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/suexec_1_2.html
%%NODOCS%%%%DOCSDIR%%/unixware.html
%%NODOCS%%%%DOCSDIR%%/upgrading_to_1_3.html
%%NODOCS%%%%DOCSDIR%%/urlmapping.html
%%NODOCS%%%%DOCSDIR%%/vhosts/details.html
%%NODOCS%%%%DOCSDIR%%/vhosts/details_1_2.html
%%NODOCS%%%%DOCSDIR%%/vhosts/examples.html
%%NODOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.en
%%NODOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.html
%%NODOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/vhosts/footer.html
%%NODOCS%%%%DOCSDIR%%/vhosts/header.html
%%NODOCS%%%%DOCSDIR%%/vhosts/host.html
%%NODOCS%%%%DOCSDIR%%/vhosts/index.html.en
%%NODOCS%%%%DOCSDIR%%/vhosts/index.html.html
%%NODOCS%%%%DOCSDIR%%/vhosts/index.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/vhosts/ip-based.html
%%NODOCS%%%%DOCSDIR%%/vhosts/mass.html
%%NODOCS%%%%DOCSDIR%%/vhosts/name-based.html.en
%%NODOCS%%%%DOCSDIR%%/vhosts/name-based.html.html
%%NODOCS%%%%DOCSDIR%%/vhosts/name-based.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/vhosts/vhosts-in-depth.html
%%NODOCS%%%%DOCSDIR%%/vhosts/virtual-host.html
%%NODOCS%%%%DOCSDIR%%/win_compiling.html.en
%%NODOCS%%%%DOCSDIR%%/win_compiling.html.html
%%NODOCS%%%%DOCSDIR%%/win_compiling.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/win_service.html.en
%%NODOCS%%%%DOCSDIR%%/win_service.html.html
%%NODOCS%%%%DOCSDIR%%/win_service.html.ja.jis
%%NODOCS%%%%DOCSDIR%%/windows.html.en
%%NODOCS%%%%DOCSDIR%%/windows.html.html
%%NODOCS%%%%DOCSDIR%%/windows.html.ja.jis
@exec mkdir -p -m 755 %D/www/cgi-bin-dist
@exec [ -d %D/www/cgi-bin/ ] || mkdir -p -m 755 %D/www/cgi-bin/
www/cgi-bin-dist/printenv
www/cgi-bin-dist/test-cgi
www/icons/README
www/icons/README.html
www/icons/a.gif
www/icons/a.png
www/icons/alert.black.gif
www/icons/alert.black.png
www/icons/alert.red.gif
www/icons/alert.red.png
www/icons/apache_pb.gif
www/icons/apache_pb.png
www/icons/back.gif
www/icons/back.png
www/icons/ball.gray.gif
www/icons/ball.gray.png
www/icons/ball.red.gif
www/icons/ball.red.png
www/icons/binary.gif
www/icons/binary.png
www/icons/binhex.gif
www/icons/binhex.png
www/icons/blank.gif
www/icons/blank.png
www/icons/bomb.gif
www/icons/bomb.png
www/icons/box1.gif
www/icons/box1.png
www/icons/box2.gif
www/icons/box2.png
www/icons/broken.gif
www/icons/broken.png
www/icons/burst.gif
www/icons/burst.png
www/icons/c.gif
www/icons/c.png
www/icons/comp.blue.gif
www/icons/comp.blue.png
www/icons/comp.gray.gif
www/icons/comp.gray.png
www/icons/compressed.gif
www/icons/compressed.png
www/icons/continued.gif
www/icons/continued.png
www/icons/dir.gif
www/icons/dir.png
www/icons/diskimg.gif
www/icons/diskimg.png
www/icons/down.gif
www/icons/down.png
www/icons/dvi.gif
www/icons/dvi.png
www/icons/f.gif
www/icons/f.png
www/icons/folder.gif
www/icons/folder.open.gif
www/icons/folder.open.png
www/icons/folder.png
www/icons/folder.sec.gif
www/icons/folder.sec.png
www/icons/forward.gif
www/icons/forward.png
www/icons/generic.gif
www/icons/generic.png
www/icons/generic.red.gif
www/icons/generic.red.png
www/icons/generic.sec.gif
www/icons/generic.sec.png
www/icons/hand.right.gif
www/icons/hand.right.png
www/icons/hand.up.gif
www/icons/hand.up.png
www/icons/icon.sheet.gif
www/icons/icon.sheet.png
www/icons/image1.gif
www/icons/image1.png
www/icons/image2.gif
www/icons/image2.png
www/icons/image3.gif
www/icons/image3.png
www/icons/index.gif
www/icons/index.png
www/icons/layout.gif
www/icons/layout.png
www/icons/left.gif
www/icons/left.png
www/icons/link.gif
www/icons/link.png
www/icons/movie.gif
www/icons/movie.png
www/icons/p.gif
www/icons/p.png
www/icons/patch.gif
www/icons/patch.png
www/icons/pdf.gif
www/icons/pdf.png
www/icons/pie0.gif
www/icons/pie0.png
www/icons/pie1.gif
www/icons/pie1.png
www/icons/pie2.gif
www/icons/pie2.png
www/icons/pie3.gif
www/icons/pie3.png
www/icons/pie4.gif
www/icons/pie4.png
www/icons/pie5.gif
www/icons/pie5.png
www/icons/pie6.gif
www/icons/pie6.png
www/icons/pie7.gif
www/icons/pie7.png
www/icons/pie8.gif
www/icons/pie8.png
www/icons/portal.gif
www/icons/portal.png
www/icons/ps.gif
www/icons/ps.png
www/icons/quill.gif
www/icons/quill.png
www/icons/right.gif
www/icons/right.png
www/icons/screw1.gif
www/icons/screw1.png
www/icons/screw2.gif
www/icons/screw2.png
www/icons/script.gif
www/icons/script.png
www/icons/small/back.gif
www/icons/small/back.png
www/icons/small/binary.gif
www/icons/small/binary.png
www/icons/small/binhex.gif
www/icons/small/binhex.png
www/icons/small/blank.gif
www/icons/small/blank.png
www/icons/small/broken.gif
www/icons/small/broken.png
www/icons/small/burst.gif
www/icons/small/burst.png
www/icons/small/comp1.gif
www/icons/small/comp1.png
www/icons/small/comp2.gif
www/icons/small/comp2.png
www/icons/small/compressed.gif
www/icons/small/compressed.png
www/icons/small/continued.gif
www/icons/small/continued.png
www/icons/small/dir.gif
www/icons/small/dir.png
www/icons/small/dir2.gif
www/icons/small/dir2.png
www/icons/small/doc.gif
www/icons/small/doc.png
www/icons/small/forward.gif
www/icons/small/forward.png
www/icons/small/generic.gif
www/icons/small/generic.png
www/icons/small/generic2.gif
www/icons/small/generic2.png
www/icons/small/generic3.gif
www/icons/small/generic3.png
www/icons/small/image.gif
www/icons/small/image.png
www/icons/small/image2.gif
www/icons/small/image2.png
www/icons/small/index.gif
www/icons/small/index.png
www/icons/small/key.gif
www/icons/small/key.png
www/icons/small/movie.gif
www/icons/small/movie.png
www/icons/small/patch.gif
www/icons/small/patch.png
www/icons/small/ps.gif
www/icons/small/ps.png
www/icons/small/rainbow.gif
www/icons/small/rainbow.png
www/icons/small/sound.gif
www/icons/small/sound.png
www/icons/small/sound2.gif
www/icons/small/sound2.png
www/icons/small/tar.gif
www/icons/small/tar.png
www/icons/small/text.gif
www/icons/small/text.png
www/icons/small/transfer.gif
www/icons/small/transfer.png
www/icons/small/unknown.gif
www/icons/small/unknown.png
www/icons/small/uu.gif
www/icons/small/uu.png
www/icons/sound1.gif
www/icons/sound1.png
www/icons/sound2.gif
www/icons/sound2.png
www/icons/sphere1.gif
www/icons/sphere1.png
www/icons/sphere2.gif
www/icons/sphere2.png
www/icons/tar.gif
www/icons/tar.png
www/icons/tex.gif
www/icons/tex.png
www/icons/text.gif
www/icons/text.png
www/icons/transfer.gif
www/icons/transfer.png
www/icons/unknown.gif
www/icons/unknown.png
www/icons/up.gif
www/icons/up.png
www/icons/uu.gif
www/icons/uu.png
www/icons/uuencoded.gif
www/icons/uuencoded.png
www/icons/world1.gif
www/icons/world1.png
www/icons/world2.gif
www/icons/world2.png
@exec mkdir -p %D/www/proxy
@unexec rm -f %D/etc/apache/httpd.conf.bak 2> /dev/null || true
@dirrmtry etc/apache
@dirrm include/apache/xml
@dirrm include/apache
@dirrmtry libexec/apache
%%NODOCS%%@dirrm %%DOCSDIR%%/howto
%%NODOCS%%@dirrm %%DOCSDIR%%/images
%%NODOCS%%@dirrm %%DOCSDIR%%/misc
%%NODOCS%%@dirrm %%DOCSDIR%%/mod
%%NODOCS%%@dirrm %%DOCSDIR%%/programs
%%NODOCS%%@dirrm %%DOCSDIR%%/vhosts
%%NODOCS%%@dirrm %%DOCSDIR%%
@dirrmtry www/data/
@dirrm www/data-dist
@dirrmtry www/cgi-bin/
@dirrm www/cgi-bin-dist
@dirrm www/icons/small
@dirrmtry www/icons
@dirrm www/proxy