Browse Source

Added usr local to crontab scritp

pull/131/head
Pascal 3 years ago
parent
commit
fe788c8a59
2 changed files with 6 additions and 1 deletions
  1. +1
    -0
      common.sh
  2. +5
    -1
      schedule_sat.sh

+ 1
- 0
common.sh View File

@@ -4,6 +4,7 @@
# set -x

. "$HOME/.noaa.conf"
export PATH=$PATH:/usr/local/bin/

declare -A levels=([DEBUG]=0 [INFO]=1 [WARN]=2 [ERROR]=3)
log_level=${LOG_LEVEL}


+ 5
- 1
schedule_sat.sh View File

@@ -32,7 +32,11 @@ log "Looking for passes of $1" INFO
PREDICTION_START=$(predict -t "${NOAA_HOME}"/predict/weather.tle -p "${1}" | head -1)
PREDICTION_END=$(predict -t "${NOAA_HOME}"/predict/weather.tle -p "${1}" | tail -1)

[ -z "$PREDICTION_START" ] && log "predict did not return any values for $1!" ERROR
if [ -z "$PREDICTION_START" ]; then
log "predict did not return any values for $1!" ERROR
log "predict -t \"${NOAA_HOME}\"/predict/weather.tle -p \"${1}\"" ERROR
predict -t "${NOAA_HOME}"/predict/weather.tle -p "${1}" >> /var/log/noaa.log 2>&1
fi

var2=$(echo "${PREDICTION_END}" | cut -d " " -f 1)



Loading…
Cancel
Save