summaryrefslogtreecommitdiff
path: root/news/inn/INSTALL
blob: cbfac345304897e417d9634d7d6bc3d93dc0d65c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.1 2001/10/31 21:03:42 zuntum Exp $

if [ "$2" != "POST-INSTALL" ]; then
  exit 0
fi

if [ ! -d @@INN_DATA_DIR@@ ]; then
	mkdir -p @@INN_DATA_DIR@@
	chown news:news @@INN_DATA_DIR@@
	chmod 775 @@INN_DATA_DIR@@
fi

DIRS="db etc log log/OLD run spool tmp"
for DIR in $DIRS; do
	if [ ! -d @@INN_DATA_DIR@@/$DIR ]; then
		install -d -o news -g news -m 775 @@INN_DATA_DIR@@/$DIR
	fi
done

SPOOLS="articles overview archive incoming incoming/bad outgoing uniover innfeed"
for DIR in $SPOOLS; do
	if [ ! -d @@INN_DATA_DIR@@/spool/$DIR ]; then
		install -d -o news -g news -m 775 @@INN_DATA_DIR@@/spool/$DIR
	fi
done

ETC="actsync.cfg actsync.ign buffindexed.conf control.ctl cycbuff.conf distrib.pats expire.ctl incoming.conf inn.conf innfeed.conf innreport.conf innwatch.ctl moderators motd.news news2mail.cf newsfeeds nnrpd.track nntpsend.ctl ovdb.conf overview.fmt passwd.nntp radius.conf readers.conf sasl.conf storage.conf"

for FILE in $ETC; do 
	if [ ! -f @@INN_DATA_DIR@@/etc/$FILE ]; then
		install -c -o news -g news -m 664 ${PKG_PREFIX}/share/examples/inn/$FILE @@INN_DATA_DIR@@/etc
	fi
done

exit 0