Apache Airflow dags w/ backend configuration bundle.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
DATE_STAMP=`date "+%Y-%m-%d"` |
|
BACKUP_DIR="/backup/cronicle/data" |
|
BACKUP_FILE="$BACKUP_DIR/backup-$DATE_STAMP.txt" |
|
|
|
mkdir -p $BACKUP_DIR |
|
/opt/cronicle/bin/control.sh export $BACKUP_FILE --verbose |
|
find $BACKUP_DIR -mtime +365 -type f -exec rm -v {} \;
|
|
|