This repository has been archived on 2024-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
hackerspace-status-api/state.sh
2013-11-19 02:33:03 +01:00

13 lines
309 B
Bash
Executable file

#!/bin/sh
# Datei zum Zwischenspeichern
STATEFILE="./tmp/last_state"
# Zieldatei, welche aus dem Internet abrufbar ist
DESTINATION="./tmp/json_new"
/usr/bin/python state.py > $STATEFILE
if [ $? -eq 0 ] # ohne Probleme JSON-Datei erstellt
then
# Veröffentliche JSON-Datei
/bin/cp $STATEFILE $DESTINATION
fi