1*******************************************************************
2#                       setup chroot jail for OSF1
3#                            prabhat@wonder
4set -e
5umask 022
6
7#Default POSTFIX_DIR = /var/spool/postfix
8#Else set POSTFIX_DIR in environment
9
10POSTFIX_DIR=${POSTFIX_DIR-/var/spool/postfix}
11
12cd ${POSTFIX_DIR}
13mkdir etc
14cp /etc/svc.conf /etc/services /etc/resolv.conf etc
15#
16# The following line added to make the timestamps in syslog to be correct.
17# /PetBi@UNIT.LiU.SE
18#
19cp -r /etc/zoneinfo etc
20
21#*******************************************************************
22