From bdb072a84d6931098e098e14cec542f863fd158f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: May 25 2017 14:43:31 +0000 Subject: Clean uup docker and cloud composes older than 3 weeks Signed-off-by: Dennis Gilmore --- diff --git a/cloud-nightly.sh b/cloud-nightly.sh index 04696fc..6d1e014 100755 --- a/cloud-nightly.sh +++ b/cloud-nightly.sh @@ -100,3 +100,7 @@ SUBJECT='Fedora '$DIST' compose report: '$SHORTCOMPOSE_ID' changes' # mutt -e "set from=\"$FROM\"" -e 'set envelope_from=yes' -s "$SUBJECT" $tomail # done #fi + +# Remove old composes older than 21 days + +find $TARGET_DIR/Fedora-Cloud-25-* -xdev -depth -maxdepth 2 -mtime +21 -exec rm -rf {} \; diff --git a/docker-nightly.sh b/docker-nightly.sh index d80e692..7d83e74 100755 --- a/docker-nightly.sh +++ b/docker-nightly.sh @@ -103,4 +103,6 @@ SUBJECT='Fedora '$DIST' compose report: '$SHORTCOMPOSE_ID' changes' # done #fi +# Remove old composes older than 21 days +find $TARGET_DIR/Fedora-Docker-25-* -xdev -depth -maxdepth 2 -mtime +21 -exec rm -rf {} \;