Skip to content

Instantly share code, notes, and snippets.

@ivuorinen
Created March 26, 2020 10:51
Show Gist options
  • Save ivuorinen/1593bb1275935bfc3fb4b6953f704035 to your computer and use it in GitHub Desktop.
Save ivuorinen/1593bb1275935bfc3fb4b6953f704035 to your computer and use it in GitHub Desktop.
Clear old GitLab backups
#!/usr/bin/env bash
# Delete old (over 30 days old) GitLab backups
# CRONTAB: @daily /root/scripts/gitlab-clean-backups.sh
find /var/opt/gitlab/backups/ -type f -name '*.tar' -mtime +30 -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment