The wildcard removal of config files in post-install was removing

all config files rather than just the old default files.
This commit is contained in:
Paul Richards 2000-04-05 23:06:19 +00:00
parent 810b23015a
commit 2e4b0566cb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=27352

View file

@ -123,8 +123,8 @@ certificate:
&& ${MAKE} certificate TYPE=${TYPE} CRT=${CRT} KEY=${KEY}
post-install:
@${RM} -f ${PREFIX}/etc/apache/access.conf*
@${RM} -f ${PREFIX}/etc/apache/srm.conf*
@${RM} -f ${PREFIX}/etc/apache/access.conf.*
@${RM} -f ${PREFIX}/etc/apache/srm.conf.*
@if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \
${ECHO} "Installing ${PREFIX}/etc/rc.d/apache.sh startup file."; \
${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/apache.sh; \