Kann jemand bitte mal die Logs anschauen, wo etwas nicht passt?
Im script.Log meine Eingaben:
Code: Alles auswählen
#!/bin/bash
WALLBOXBASEURL=http://192.168.178.57
OUTPUTDIR=/volume1/01_HS in Gemeinsame/PV-Anlage_Wallboxen/Projektdaten/openWB/Backup/03 Auto_Backup NAS
curl -sS -o /dev/null $WALLBOXBASEURL/openWB/web/settings/backup.php
if [ $? -eq 0 ]
then
curl -sS -o $OUTPUTDIR/openWB_backup_$(date +%Y-%m-%d_%H-%M-%S).tar.gz $WALLBOXBASEURL/openWB/web/backup/backup.tar.gz
ls "$OUTPUTDIR"/openWB_backup_* | head -n -10 | xargs -d '\n' rm
else
echo "Failed to create backup"
fi
Code: Alles auswählen
sh: line 2: in: command not found
curl: (23) Failed writing body (0 != 1198)
ls: cannot access /openWB_backup_*: No such file or directory
rm: missing operand
Try 'rm --help' for more information.
Wo könnte mein Fehler liegen?
Danke für die Hilfe...
VG