#!/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"