#!/bin/bash
# ************************************************************
# *
# * Name: INS0100
# *
# * Desc: Build DASD image files for page datasets
# *       and append to ./conf/starter1.conf
# *
# ************************************************************
PATH=../hercules:${PATH}
THISDIR=`pwd`
cd ..
GENDIR=`pwd`
cd ${THISDIR}

bash makeadisk page00 160
bash makeadisk page01 161
if ! test -f starter.conf1
then
   cp starter.conf starter.conf1
else
   cp starter.conf1 starter.conf
fi
cat >>../conf/starter.conf <<!EOF!
01C0 3340 ../dasd/page00.160
01C1 3340 ../dasd/page01.161
!EOF!
