Skip to content
Snippets Groups Projects
Select Git revision
  • 4c47d25444b5cb8a99fb1a084e94c9a341f09dfa
  • master default protected
  • srv
  • github
  • 1.0
5 results

backup_nocloud.sh

Blame
  • clear_backup.sh 174 B
    #!/bin/bash
    
    DIR=$(realpath $(dirname $0))
    if [ ! -z "$1" ]; then
       conf_file=$1
       shift
    fi
    source $DIR/inc.sh
    
    cleanup
    delete_old_backups
    collection_state
    echo "All Done"