Skip to content
Snippets Groups Projects
Select Git revision
  • 5f4fef7b1940ff6417242c82d67ca1588e9ffe25
  • master default protected
  • add-action-params-in-backup
  • test-fix-cache-issues
4 results

clear_backup.sh

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