diff options
author | Varun Gudisena <vg411h@att.com> | 2017-08-31 10:56:56 -0500 |
---|---|---|
committer | Varun Gudisena <vg411h@att.com> | 2017-08-31 10:57:12 -0500 |
commit | acc3ce02997219825091a2e4ed7fd493f2d440b2 (patch) | |
tree | de1db5979894f0dadd6752ae1841fdeb743a5830 /src/main/swm/common/common.env | |
parent | 3306e2f9cc17833d5816936e0ea2973d9013b00e (diff) |
Revert package name changes
Reverted package name changes to avoid any potential issues. Renamed maven
group id only.
Issue-id: DMAAP-74
Change-Id: I4ca4537d48e5723b2939148e5bd83645ee20dd30
Signed-off-by: Varun Gudisena <vg411h@att.com>
Diffstat (limited to 'src/main/swm/common/common.env')
-rw-r--r-- | src/main/swm/common/common.env | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main/swm/common/common.env b/src/main/swm/common/common.env new file mode 100644 index 0000000..b6ae68a --- /dev/null +++ b/src/main/swm/common/common.env @@ -0,0 +1,19 @@ + +# This file is used to source variables from the generated archetype +# Because the *proc.sh scripts may contain variables that conflict with +# Maven variables, we exclude those scripts and only replace values here +ROOT_DIR=${INSTALL_ROOT}${distFilesRoot}; export ROOT_DIR +LRMCLI=${INSTALL_ROOT}/opt/app/aft/scldlrm/bin/lrmcli +PATH=$PATH:`dirname $0`/utils; export PATH + + +# Fail - used to quickly exit with a rc and error message +fail() { + rc=$1 + shift; + echo "PROC_USER_MSG: [$rc]: $@" >&2 + exit ${rc} +} + + + |