Home | History | Annotate | Line # | Download | only in chroot-setup
      1 *******************************************************************
      2 #                       setup chroot jail for OSF1
      3 #                            prabhat@wonder
      4 set -e
      5 umask 022
      6 
      7 #Default POSTFIX_DIR = /var/spool/postfix
      8 #Else set POSTFIX_DIR in environment
      9 
     10 POSTFIX_DIR=${POSTFIX_DIR-/var/spool/postfix}
     11 
     12 cd ${POSTFIX_DIR}
     13 mkdir etc
     14 cp /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 (a] UNIT.LiU.SE
     18 #
     19 cp -r /etc/zoneinfo etc
     20 
     21 #*******************************************************************
     22