Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerlya02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:8e80217e59
[formerly3360eb6c5f
] Former-commit-id:377dcd10b9
14 lines
517 B
Bash
Executable file
14 lines
517 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export AWIPS_HOME=$(readlink -f $AWIPS_HOME)
|
|
|
|
. ${AWIPS_HOME}/GFESuite/ServiceBackup/configuration/svcbu.properties
|
|
|
|
export PATH=$PATH:$GFESUITE_HOME/bin:$GFESUITE_HOME/ServiceBackup/scripts:/awips2/fxa/bin/
|
|
source /etc/profile.d/awips2Python.sh
|
|
|
|
# Make the directories
|
|
[ ! -d ${SVCBU_HOME} ] && (umask 000;mkdir -p ${SVCBU_HOME})
|
|
[ ! -d ${IFPS_LOG} ] && (umask 000;mkdir -p ${IFPS_LOG})
|
|
[ ! -d ${LOCK_DIR} ] && (umask 000;mkdir -p ${LOCK_DIR})
|
|
[ ! -d ${IFPS_DATA} ] && (umask 000;mkdir -p ${IFPS_DATA})
|