From d4f81fa689419d47d1bb8e699ec5cbab4f3d081f Mon Sep 17 00:00:00 2001 From: Benoit S Date: Sat, 13 Feb 2021 20:31:28 +0900 Subject: [PATCH] Add an echo --- files/lxd-export.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/files/lxd-export.sh b/files/lxd-export.sh index 7abf364..41a709a 100644 --- a/files/lxd-export.sh +++ b/files/lxd-export.sh @@ -5,5 +5,6 @@ cd /var/backups/lxd for i in $(lxc list --format csv -c n); do # Don't use --optimized-storage as Borg will not be able to compress or chunk # it properly + echo "Backuping ${i}..." lxc export $i ${i}.tar --instance-only --compression none done