1
0
Derivar 0
Simple script to rotate out backup files and folders and stuffff.
Ir para o ficheiro
Mike e4d5e1b595 Update pyenv version and relock pipenv 2023-08-18 01:53:51 -07:00
domain Typo 2023-05-29 13:25:03 -07:00
.gitignore ignore pycache 2019-11-19 04:43:17 -08:00
.python-version Update pyenv version and relock pipenv 2023-08-18 01:53:51 -07:00
LICENSE Added copyright header and LICENSE file 2019-03-13 03:13:23 -07:00
Pipfile Update pyenv version and relock pipenv 2023-08-18 01:53:51 -07:00
Pipfile.lock Update pyenv version and relock pipenv 2023-08-18 01:53:51 -07:00
README.md Update license info 2023-03-27 18:15:11 -07:00
main.py Working on logging 2023-03-27 19:59:45 -07:00

README.md

Mike's Backup Rotator

This program functions somewhat similarly to a log rotator. It's purpose is to rotate backup files, so your disk doesn't fill up.

Suppose you have a third party backup program regularly dropping backup files into some directory. You could use this program to limit the number of files that remain in the directory at any given time.

License

Copyright 2023 Mike Peralta; All rights reserved

Releasing to the public under the GNU GENERAL PUBLIC LICENSE v3 (See LICENSE file for more)

Requirements

  • Python 3
  • PyYAML (pip3 install pyaml)

How to Execute

The script is invoked with Python3, like so:

python3 backup-rotator

Alternatively, if your env program is setup correctly for python3, you may simply execute this script as-is:

/path/to/backup-rotator

Command Line Arguments

This program won't do much without command line arguments. Primarily, it needs to know the location of at least one configuration file or directory.

--dry-run

Tells the program to run without making any changes. Instead, it will merely list the changes (deletions) it would have made.

--config < path >

Specifies a path to a configuration file or directory. If a directory is specified, all files in the directory will be used as configuration files.

Example Call With Arguments

Here's an example of how you might invoke the program with two configuration paths and set globally to a dry run:

python3 backup-rotator --dry-run --config "/my/config/path-1" --config "/my/config/path-2"

Configuration File Format

Configuration files are written in YAML format. Supported keys are as follows:

dry-run

If this is set to true, this particular configuration file won't cause any changes to disk (see --dry-run command line argument above)

target-type < file | directory >

The target type can be set to either file or directory, and specifies what we will be rotating.

  • When file, only files inside the specified paths are considered for rotation. This is appropriate for rotating backups that drop single files into the same destination directory. For example, a directory structure that looks like this:

    • /my/backup/path/2019-07-01-My-Backup.tar.gz
    • /my/backup/path/2019-07-02-My-Backup.tar.gz
    • /my/backup/path/2019-07-03-My-Backup.tar.gz
    • /my/backup/path/2019-07-04-My-Backup.tar.gz
  • When directory, only directories inside the specified paths are considered for rotation. This is appropriate for rotating backups that are saved as whole directories, inside an outer destination directory. For example, a directory structure that looks like this:

    • /my/backup/path/2019-07-01-My-Backup-Directory/
    • /my/backup/path/2019-07-02-My-Backup-Directory/
    • /my/backup/path/2019-07-03-My-Backup-Directory/
    • /my/backup/path/2019-07-04-My-Backup-Directory/

In both examples above, the main configured backup path is /my/backup/path

date-detection < file >

Specifies the method used when attempting to determine how old a backup file/dir is.

  • When file, the files creation stamp is used

Currently, only file is supported

minimum-items < INTEGER >

Specifies the minimum number of backup files/dirs that must be present before rotating can happen. Should be an integer.

This option doesn't specify how much to rotate on its own, but when rotation is possible. It should probably be used with maximum-age or something other than maximum-items.

For example, when the minimum-items value is set to 5, and target-type is file, the program will not rotate any files until there are at least 5 in the target directory.

maximum-items < INTEGER >

Specifies the maximum number of backup files/dirs that are allowed in a path before rotating will happen. Should be an integer.

For example, when the maximum-items value is set to 500, and target-type is file, the program will not rotate any files until there are at least 500 in the target directory.

maximum-age < INTEGER >

Specifies the maximum age (in days) of backup files/dirs that are allowed in a path before rotating will happen. Should be an integer.

For example, when the maximum-age value is set to 30, and target-type is file, the program will not rotate any files that are newer than 30 days.

paths < Array of Paths >

Specifies all paths that should be scanned with these settings. You may specify one or more paths

Sample Configuration File

sample-config.yaml

dry-run: true

target-type: file

date-detection: file

maximum-items: 5

paths:
 - /path/to/backup/dir1/
 - /path/to/backup/dir2/
 - /path/to/backup/dir3/
 - /path/to/backup/dir4/