forked from stove/risotto
add backup images
This commit is contained in:
parent
f79e486371
commit
6e38f1c4d1
1 changed files with 32 additions and 0 deletions
32
ansible/sbin/backup_images
Executable file
32
ansible/sbin/backup_images
Executable file
|
@ -0,0 +1,32 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
START=$1
|
||||
BACKUP_DIR="/root/backup"
|
||||
|
||||
MACHINES=""
|
||||
for nspawn in $(ls /etc/systemd/nspawn/*.nspawn); do
|
||||
nspawn_file=$(basename $nspawn)
|
||||
machine=${nspawn_file%.*}
|
||||
if [ -d "/var/lib/risotto/srv/$machine" ]; then
|
||||
MACHINES="$MACHINES$machine "
|
||||
fi
|
||||
done
|
||||
|
||||
cd /var/lib/risotto/srv/
|
||||
mkdir -p "$BACKUP_DIR"
|
||||
for machine in $MACHINES; do
|
||||
machinectl stop $machine || true
|
||||
while true; do
|
||||
machinectl status "$machine" > /dev/null 2>&1 || break
|
||||
sleep 1
|
||||
done
|
||||
BACKUP_FILE="$BACKUP_DIR/backup_$machine.tar.bz2"
|
||||
rm -f "$BACKUP_FILE"
|
||||
tar -cvJf $BACKUP_FILE $machine
|
||||
done
|
||||
|
||||
if [ -z "$START" ]; then
|
||||
machinectl start $MACHINES
|
||||
fi
|
||||
|
||||
exit 0
|
Loading…
Reference in a new issue