Fix up mix of man(7)/mdoc(7).
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / examples / chroot-setup / OSF1
blobdd6ae6473a9720a8360222a8803f827d4beb7039
1 *******************************************************************
2 #                       setup chroot jail for OSF1
3 #                            prabhat@wonder
4 set -e
5 umask 022
7 #Default POSTFIX_DIR = /var/spool/postfix
8 #Else set POSTFIX_DIR in environment
10 POSTFIX_DIR=${POSTFIX_DIR-/var/spool/postfix}
12 cd ${POSTFIX_DIR}
13 mkdir etc
14 cp /etc/svc.conf /etc/services /etc/resolv.conf etc
16 # The following line added to make the timestamps in syslog to be correct.
17 # /PetBi@UNIT.LiU.SE
19 cp -r /etc/zoneinfo etc
21 #*******************************************************************