diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-06-04 16:32:26 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-06-04 16:32:26 +0000 |
commit | 92e23540e4577a7adc1d9e00acd5f38a71f3d91d (patch) | |
tree | b0f4c2e38307af5d9babd3186cf12d79ef4639b3 | |
parent | 3f77a1319ea9497de334f74f3f3308dd4efcd92a (diff) | |
download | FreeBSD-ports-92e23540e4577a7adc1d9e00acd5f38a71f3d91d.zip FreeBSD-ports-92e23540e4577a7adc1d9e00acd5f38a71f3d91d.tar.gz |
- Remove only symbolic links on deinstall
PR: 36804
-rw-r--r-- | www/apache13-modssl/pkg-plist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/apache13-modssl/pkg-plist b/www/apache13-modssl/pkg-plist index 81ab42d..fe8f02b 100644 --- a/www/apache13-modssl/pkg-plist +++ b/www/apache13-modssl/pkg-plist @@ -723,7 +723,7 @@ www/icons/world2.png @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 cd %D/etc/apache/ssl.crt && make >/dev/null 2>&1 -@unexec rm -f %D/etc/apache/ssl.crt/[0-9a-fA-F]*.[0-9]* +@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 @dirrm etc/apache/ssl.crl @dirrm etc/apache/ssl.csr |