snapshot_delete

This commit is contained in:
simono41 2018-08-18 16:30:44 +02:00
parent 7779763cb4
commit 04a532ef76

View file

@ -97,6 +97,21 @@ elif [ "restore" == "$1" ]; then
#reboot
elif [ "delete" == "$1" ]; then
while (( "$(expr $# - 1)" ))
do
pfad="${2}"
if btrfs subvolume delete /run/btrfs-root/__snapshot/${pfad}\@* ;then
echo "${pfad} erfolgreich gelöscht!!!"
else
echo "${pfad} konnte nicht gefunden werden!!!"
fi
shift
done
else
echo "bash ./snapshot.sh PARAMETER PFAD"
@ -107,3 +122,5 @@ else
btrfs subvolume list -p /
fi
echo "Fertig !!!"