Skip to content

Commit

Permalink
Small fixes to sync scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Mar 5, 2024
1 parent cec5618 commit b553756
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
10 changes: 3 additions & 7 deletions etc/desimodel_sync_kpno_cron.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,11 @@ else
echo "Try loading focalplane model at ${DESIMODEL}... " >> "${logfile}"
PYTHON_CODE=$(cat <<END
from fiberassign.hardware import load_hardware
try:
hw = load_hardware()
print("yes")
except:
print("no")
hw = load_hardware()
END
)
result="$(python3 -c "$PYTHON_CODE")"
if [ "x$result" = "xyes" ]; then
result=$(python3 -c "$PYTHON_CODE")
if [ $? -eq 0 ]; then
echo "SUCCESS" >> "${logfile}"
# Now commit result
mesg="Appending DB sync ${calfile} to current focalplane model"
Expand Down
10 changes: 3 additions & 7 deletions etc/desimodel_sync_kpno_force.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,11 @@ else
echo "Try loading focalplane model at ${DESIMODEL}... " >> "${logfile}"
PYTHON_CODE=$(cat <<END
from fiberassign.hardware import load_hardware
try:
hw = load_hardware()
print("yes")
except:
print("no")
hw = load_hardware()
END
)
result="$(python3 -c "$PYTHON_CODE")"
if [ "x$result" = "xyes" ]; then
result=$(python3 -c "$PYTHON_CODE")
if [ $? -eq 0 ]; then
echo "SUCCESS" >> "${logfile}"
# Now commit result
mesg="Appending DB sync ${calfile} to current focalplane model"
Expand Down

0 comments on commit b553756

Please sign in to comment.