Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tux-o-matic/puppet-remote-backup
Puppet module to schedule backups locally or over NFS
https://github.com/tux-o-matic/puppet-remote-backup
Last synced: about 5 hours ago
JSON representation
Puppet module to schedule backups locally or over NFS
- Host: GitHub
- URL: https://github.com/tux-o-matic/puppet-remote-backup
- Owner: tux-o-matic
- License: gpl-3.0
- Created: 2014-02-27T22:21:23.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-10-05T08:43:06.000Z (about 6 years ago)
- Last Synced: 2024-04-19T11:04:28.319Z (7 months ago)
- Language: Puppet
- Size: 199 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE.txt
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/tux-o-matic/puppet-remote-backup.png?branch=master)](https://travis-ci.org/tux-o-matic/puppet-remote-backup)
# Puppet Remote Backup
## Manage hourly incremental backup of multiple folders
- Define one or multiple directories to backup.
- The module will automatically run hourly jobs for incremental backup (using rdiff).
- Optionally use in combination with NFS to store your backups remotely all in one definition.## Example
You can manage in a single definition a mount definition for your NFS storage and the directories to backup there.
```shell
class { 'remote_backup':
mount_path => '/mnt/backup',
nfs_server_ip => '10.0.0.1',
nfs_server_path => 'my_nfs_storage',
backup_rule => {
directories_to_backup => ['/var/log', '/var/www'],
},
}
```Simple hourly incremental backup from one or more folder/partition to another
```shell
class { 'remote_backup::rule':
directories_to_backup => ['/var/log', '/var/www'],
destination => '/data',
}
```By default the backup retention is set for 30 days.
This module has only been tested on RedHat based distributions. Using it on other systems is possible but might require adapting the package name of the dependencies.