summaryrefslogtreecommitdiff
path: root/news/inn/pkg
diff options
context:
space:
mode:
authorveego <veego@pkgsrc.org>2000-07-03 13:45:54 +0000
committerveego <veego@pkgsrc.org>2000-07-03 13:45:54 +0000
commit0c7f7a44e8834fc64da40e5b1461aa33baae2af6 (patch)
treeeb559502d68c62fc9349d34b40f003135b7850e4 /news/inn/pkg
parentbf06fd85b45fb0e9ee58e30a53ffea79a1cd8f30 (diff)
downloadpkgsrc-0c7f7a44e8834fc64da40e5b1461aa33baae2af6.tar.gz
test(1) -e doesn't work on Solaris so use -f instead.
Diffstat (limited to 'news/inn/pkg')
-rw-r--r--news/inn/pkg/INSTALL4
1 files changed, 2 insertions, 2 deletions
diff --git a/news/inn/pkg/INSTALL b/news/inn/pkg/INSTALL
index 76b93392d14..80f866286e6 100644
--- a/news/inn/pkg/INSTALL
+++ b/news/inn/pkg/INSTALL
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: INSTALL,v 1.1 1999/07/18 23:34:14 tron Exp $
+# $NetBSD: INSTALL,v 1.2 2000/07/03 13:45:54 veego Exp $
if [ "$2" != "POST-INSTALL" ]; then
exit 0
@@ -29,7 +29,7 @@ done
ETC="actsync.cfg actsync.ign control.ctl cycbuff.conf distrib.pats expire.ctl incoming.conf inn.conf innfeed.conf innreport.conf innwatch.ctl moderators motd.news news2mail.cf newsfeeds nnrp.access nnrpd.track nntpsend.ctl overview.ctl overview.fmt passwd.nntp storage.conf"
for FILE in $ETC; do
- if [ ! -e @@INN_DATA_DIR@@/etc/$FILE ]; then
+ if [ ! -f @@INN_DATA_DIR@@/etc/$FILE ]; then
install -c -o news -g news -m 664 @@PREFIX@@/share/examples/inn/$FILE @@INN_DATA_DIR@@/etc
fi
done