diff options
author | veego <veego> | 2000-07-03 13:45:54 +0000 |
---|---|---|
committer | veego <veego> | 2000-07-03 13:45:54 +0000 |
commit | 31754df624d1528e934687e30e223eb7c7eb1d71 (patch) | |
tree | eb559502d68c62fc9349d34b40f003135b7850e4 /news/inn | |
parent | 72151b788087f6f22fd29f3712b9ce50ceacee09 (diff) | |
download | pkgsrc-31754df624d1528e934687e30e223eb7c7eb1d71.tar.gz |
test(1) -e doesn't work on Solaris so use -f instead.
Diffstat (limited to 'news/inn')
-rw-r--r-- | news/inn/pkg/INSTALL | 4 |
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 |