1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/news/leafnode+/files/INSTALL.in
SADA Kenji 558151a7e6 Unified the writing of working directories.
The `test .. || ..' style could abort the make process,
so changed to be using `if .. then' style.
1999-07-05 18:59:58 +00:00

28 lines
663 B
Bash

#!/bin/sh
# $Id$
LIBDIR=@LIBDIR@
SPOOLDIR=@SPOOLDIR@
if [ x$2 = xPOST-INSTALL -a x$LEAFNODE_SETUP_WRKDIRS != x ]; then
if [ ! -d $LIBDIR ]; then
mkdir -p $LIBDIR
chown -R news.news $LIBDIR/.
fi
if [ ! -d $SPOOLDIR ]; then
mkdir -p $SPOOLDIR
mkdir -p $SPOOLDIR/message.id
mkdir -p $SPOOLDIR/interesting.groups
mkdir -p $SPOOLDIR/out.going
cd $SPOOLDIR/message.id ; for a in 0 1 2 3 4 5 6 7 8 9 ; do \
for b in 0 1 2 3 4 5 6 7 8 9 ; do \
mkdir -p ${a}${b}0 ${a}${b}1 ${a}${b}2 \
${a}${b}3 ${a}${b}4 ${a}${b}5 \
${a}${b}6 ${a}${b}7 ${a}${b}8 \
${a}${b}9 ; \
done
done
chown -R news.news $SPOOLDIR/.
chmod 2750 $SPOOLDIR
fi
fi
exit 0