Add files via upload

This commit is contained in:
kneutron 2024-05-11 12:14:23 -06:00 committed by GitHub
parent d172a50899
commit 660766185c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,19 @@
#!/bin/bash
set -e
set -u
zfs list |grep fleece
echo "$(date) - About to destroy the above fleece datasets - ^C to backout or Enter to proceed"
read
zfs-killsnaps.sh fleece
for fd in $(zfs list |grep fleece |awk '{print $1}'); do
echo "$fd"
zfs destroy "$fd"
done
zfs list |grep fleece
exit;