/usr/share/metview/etc/MARS_local is in metview-data 5.0.0~beta.1-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #---------------------------------------------------------- MARS_local
#
# Definition of the local ECMWF MARS data bases
#
#
# prefer the 'system' mars config file selector
MARS_SELECT_CFG_FILE=$MARS_HOME/bin/select_mars_config
if [ ! -f $MARS_SELECT_CFG_FILE ]
then
# 'remote' file does not exist - try to use our local one
MARS_SELECT_CFG_FILE=$METVIEW_BIN/select_mars_config
fi
MARS_CFG_FILE=`$MARS_SELECT_CFG_FILE`
export MARS_CFG_FILE
if [ -f $MARS_CFG_FILE ]
then
cat $MARS_CFG_FILE
else
echo "+---------+ Local ECMWF MARS access configured but" 3>&2 2>&1 1>&3
echo "| CFG ERR | local MARS configuration file not found!" 3>&2 2>&1 1>&3
echo "+---------+ Check configuration of MARS_local/MARS_remote/MARS_none?" 3>&2 2>&1 1>&3
fi
#---------------------------------------------------------------------
|