blob: 80869ca94e96287b499ba301ee7c46d5b54d0c77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
/usr/bin/makedbz -i -o 2>&- >&-
mkdir /var/log/news 2>&- >&-
chown 9:13 -R var/spool/news 2>&- >&-
chown 9:13 var/log/news 2>&- >&-
chown 9:13 -R var/db/inn 2>&- >&-
echo ""
echo "->"
echo "-> If this is a first-time installation, a minimal active file and"
echo "-> history database have been installed. Do not forget to update"
echo "-> your cron entries and configure INN. See INSTALL for more"
echo "-> information."
echo "->"
echo "-> The default user:group for inn is news:news"
echo "->"
echo ""
}
|