wolbodge/example.sh
2025-03-22 13:19:55 +01:00

23 lines
602 B
Bash
Executable file

#!/usr/bin/env sh
# Example for a backup script
# Start a new session
session_id=$(curl -s -X POST -F "description=Daily backup" http://localhost:3000/api/session)
exit_code=$?
if [ $exit_code != 0 ]; then
echo "Failed to create session"
exit 1
fi
echo "Aquired session with id $session_id"
# Do your backup here and wait for the PC to come online using a ping-loop for example
sleep 5
# Delete the session after we are done using it
curl -s -X DELETE http://localhost:3000/api/session/$session_id
exit_code=$?
if [ $exit_code != 0 ]; then
echo "Failed to delete session"
exit 1
fi