Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with
or
.
Download ZIP
Backup Checker is a fully automated backup checker
Python

README.md

BackupChecker

BackupChecker is an automated backup checker. Read the documentation in docs/ or read it online.

Quick Install

  • Install Backup Checker from PyPI

    # pip install backupchecker
    
  • Install Backup Checker from sources

    # tar zxvf backupchecker-1.8.tar.gz
    # cd backupchecker
    # python3.4 setup.py install
    # # or
    # python3.4 setup.py install --install-scripts=/usr/bin
    

Use Backup Checker locally

  • Generate the configuration files for a given archive:

    $ backupchecker -G /path/to/backup.tar.gz
    
  • Verify the archive and its content:

    $ backupchecker -c /path/to/confs/
    

Use Backup Checker with remote backups

  • Generate the configuration files for a remote archive through FTP

    $ wget --quiet -O - ftp://user:pass@server/backup.tar.gz | ./backupchecker.py -G -
    
  • Verify an archive on a remote server through SSH

    $ ssh -q server "cat /tmp/backup.tar.gz" | ./backupchecker.py -c . -
    

Authors

Carl Chenet chaica@backupchecker.com

License

This software comes under the terms of the GPLv3+. See the LICENSE file for the complete text of the license.

Something went wrong with that request. Please try again.