File: OSF1

package info (click to toggle)
postfix 2.11.3-1%2Bdeb8u2
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 22,360 kB
  • ctags: 16,042
  • sloc: ansic: 111,369; makefile: 14,398; sh: 5,532; perl: 2,652; python: 1,450; awk: 148
file content (21 lines) | stat: -rw-r--r-- 582 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
*******************************************************************
#                       setup chroot jail for OSF1
#                            prabhat@wonder
set -e
umask 022

#Default POSTFIX_DIR = /var/spool/postfix
#Else set POSTFIX_DIR in environment

POSTFIX_DIR=${POSTFIX_DIR-/var/spool/postfix}

cd ${POSTFIX_DIR}
mkdir etc
cp /etc/svc.conf /etc/services /etc/resolv.conf etc
#
# The following line added to make the timestamps in syslog to be correct.
# /PetBi@UNIT.LiU.SE
#
cp -r /etc/zoneinfo etc

#*******************************************************************