diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2006-02-07 20:01:21 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2006-02-07 20:01:21 +0000 |
commit | 1bd5b41acb6e136ed5687df1834660e2fe6fddf9 (patch) | |
tree | 0a4774d6e45d3f24776c9843b15abcb939048fc7 /www/apache13-modssl | |
parent | 5849cbc93ca42084723158763e36c92025a319fb (diff) | |
download | ports-1bd5b41acb6e136ed5687df1834660e2fe6fddf9.tar.gz ports-1bd5b41acb6e136ed5687df1834660e2fe6fddf9.zip |
Notes
Diffstat (limited to 'www/apache13-modssl')
-rw-r--r-- | www/apache13-modssl/pkg-plist | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/apache13-modssl/pkg-plist b/www/apache13-modssl/pkg-plist index 1838cc3248bf..5d3f19a46b3c 100644 --- a/www/apache13-modssl/pkg-plist +++ b/www/apache13-modssl/pkg-plist @@ -129,7 +129,6 @@ sbin/httpd sbin/logresolve sbin/rotatelogs www/data-dist/apache_pb.gif -@exec [ -d %D/www/data/ ] || ln -fs %B %D/www/data www/data-dist/index.html.ca www/data-dist/index.html.cz www/data-dist/index.html.de @@ -511,7 +510,6 @@ www/data-dist/index.html.zh-tw.big5 %%DOCSDIR%%/urlmapping.html %%DOCSDIR%%/vhosts/index.html.html www/cgi-bin-dist/printenv -@exec [ -d %D/www/cgi-bin/ ] || ln -fs %B %D/www/cgi-bin www/cgi-bin-dist/test-cgi www/icons/README www/icons/a.gif @@ -732,8 +730,10 @@ www/icons/uuencoded.png www/icons/world1.png www/icons/world2.png @exec mkdir -p %D/www/proxy -@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi -@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi +@exec [ -e %D/www/cgi-bin/ ] || ln -s %D/www/cgi-bin-dist %D/www/cgi-bin +@exec [ -e %D/www/data/ ] || ln -s %D/www/data-dist %D/www/data +@unexec if [ -L %D/www/cgi-bin ]; then if [ `readlink %D/www/cgi-bin` = %D/www/cgi-bin-dist ]; then rm -f %D/www/cgi-bin; fi; fi +@unexec if [ -L %D/www/data ]; then if [ `readlink %D/www/data` = %D/www/data-dist ]; then rm -f %D/www/data; fi; fi @exec cd %D/etc/apache/ssl.crt && make >/dev/null 2>&1 @unexec for i in %D/etc/apache/ssl.crt/[0-9a-fA-F]*.[0-9]*; do if [ -L $i ]; then rm -f $i; fi; done @dirrm etc/apache/ssl.crt |