#!/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