Re: Scheduled Backup
Verfasst: Sa Apr 30, 2022 12:09 pm
Es sollte ja ein Logfile angelegt werden beim Backup. Was steht da drin?
VG
Det
VG
Det
Code: Alles auswählen
2022-04-30 13:55:06: ========= Starte openWB Backup ===================
2022-04-30 13:55:06: Download openWB Backupdatei /volume1/System Backup/openWB/openWB_backup_2022-04-30_13-55-06.tar.gz
2022-04-30 13:55:06: Bereinigung alte openWB Backupdateien
rm: missing operand
Try 'rm --help' for more information.
2022-04-30 13:55:06: ========= openWB Backup beendet ===================
Code: Alles auswählen
logging "========= Starte oWB Backup ==================="
if [ -z ${USERNAME} ]
then
curl -sS -o /dev/null $WALLBOXBASEURL/openWB/web/settings/backup.php
ret=$?
else
if [ -z ${PASSWORD} ]
then
logging "ERROR: Benutzer ohne Passwort: Kein Backup erzeugt"
exit
fi
curl -sS -o /dev/null -u ${USERNAME}:${PASSWORD} $WALLBOXBASEURL/openWB/web/settings/backup.php
ret=$?
fi
if [ ${ret} -eq 0 ]
then
Code: Alles auswählen
curl -sS -o /dev/null --fail $WALLBOXBASEURL/openWB/web/tools/backup.php
Code: Alles auswählen
pi@raspi4:~/backup/bin $ ./backup.sh
2022-04-30 15:01:29: ========= Starte oWB Backup ===================
curl: (22) The requested URL returned error: 404 Not Found
2022-04-30 15:01:29: Failed to create backup
2022-04-30 15:01:29: ========= Beende oWB Backup ===================
auf dem QNAP Nas kommt folgender FehlerderNeueDet hat geschrieben: ↑Sa Apr 30, 2022 1:04 pm
Kannst du bitte mal folgendes testen:
Der --fail sollte dann die folgende Ausgabe erzeugen:Code: Alles auswählen
curl -sS -o /dev/null --fail $WALLBOXBASEURL/openWB/web/tools/backup.php
Wenn das auf dem Synology auch funktioniert, würde ich das noch in den Wiki Artikel mit einbauen.Code: Alles auswählen
pi@raspi4:~/backup/bin $ ./backup.sh 2022-04-30 15:01:29: ========= Starte oWB Backup =================== curl: (22) The requested URL returned error: 404 Not Found 2022-04-30 15:01:29: Failed to create backup 2022-04-30 15:01:29: ========= Beende oWB Backup ===================
VG
Det
Code: Alles auswählen
curl: (3) URL using bad/illegal format or missing URL
Code: Alles auswählen
"QTS 5.0.0 (20220324)"
Code: Alles auswählen
[~] #export WALLBOXBASEURL=http://openwb.fritz.box
[~] # curl -sS -o /dev/null --fail $WALLBOXBASEURL/openWB/web/settings/backup.php
[~] # echo $?
0
[~] # curl -sS -o /dev/null --fail $WALLBOXBASEURL/openWB/web/tools/backup.php
curl: (22) The requested URL returned error: 404 Not Found
[~] # echo $?
22
[~] # cat /etc/os-release
NAME="QTS"
VERSION="5.0.0 (20220324)"
ID=qts
PRETTY_NAME="QTS 5.0.0 (20220324)"
VERSION_ID="5.0.0"
[~] #