Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fixes to sync scripts #172

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading