From 5c8cecdc9247028ee6dccd70c5da934c0fec1a58 Mon Sep 17 00:00:00 2001 From: 1e99 Date: Sat, 22 Mar 2025 13:21:25 +0100 Subject: [PATCH] update example --- example.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/example.sh b/example.sh index df728a5..182415b 100755 --- a/example.sh +++ b/example.sh @@ -11,10 +11,11 @@ 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 +# 1. Wait for the PC to come online (using a ping-loop for example) +# 2. Do your backup here sleep 5 -# Delete the session after we are done using it +# End 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