Change-Id: I2fc1ac0fa8b9e199149fd2db3ab25bac9ba90024 Former-commit-id:4bce15db12
[formerly67ae7d2244
] [formerly62324b5194
] [formerly4bce15db12
[formerly67ae7d2244
] [formerly62324b5194
] [formerlyb078f57dc7
[formerly62324b5194
[formerly 95c604d179e14d110e0782a5a911f8b6d5104941]]]] Former-commit-id:b078f57dc7
Former-commit-id:403fa63efd
[formerly9959fe56ae
] [formerly d4116fc6b4626874796f71816cf22b488b6628df [formerlyf125f963b3
]] Former-commit-id: feb4196537e2e11c66da3b64b721548e61419d14 [formerly2c581c0c73
] Former-commit-id:bb2f387371
36 lines
1.3 KiB
Bash
36 lines
1.3 KiB
Bash
#!/bin/bash
|
|
##
|
|
# This software was developed and / or modified by Raytheon Company,
|
|
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
|
#
|
|
# U.S. EXPORT CONTROLLED TECHNICAL DATA
|
|
# This software product contains export-restricted data whose
|
|
# export/transfer/disclosure is restricted by U.S. law. Dissemination
|
|
# to non-U.S. persons whether in the United States or abroad requires
|
|
# an export license or other authorization.
|
|
#
|
|
# Contractor Name: Raytheon Company
|
|
# Contractor Address: 6825 Pine Street, Suite 340
|
|
# Mail Stop B8
|
|
# Omaha, NE 68106
|
|
# 402.291.0100
|
|
#
|
|
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
|
# further licensing information.
|
|
##
|
|
# resolve/set local variables
|
|
path_to_script=`readlink -f $0`
|
|
dir=$(dirname $path_to_script)
|
|
dir=$(dirname $dir)
|
|
awips_home=$(dirname $dir)
|
|
|
|
rpm -q awips2-java > /dev/null 2>&1
|
|
RC=$?
|
|
if [ ${RC} -ne 0 ]; then
|
|
echo "ERROR: awips2-java Must Be Installed."
|
|
echo "Unable To Continue ... Terminating."
|
|
fi
|
|
|
|
JAVA_INSTALL=`rpm -q --queryformat '%{INSTPREFIXES}' awips2-java`
|
|
|
|
${JAVA_INSTALL}/bin/java -classpath $awips_home/edex/lib/plugins/plugin-warning.jar:$awips_home/edex/lib/dependencies/org.geotools/jts-1.9.jar com.raytheon.edex.plugin.warning.tools.DamInfoTranslator $@
|