Forge Home

rsnapshot

Configures rsnapshot.

8,931 downloads

6,666 latest version

3.1 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.2.0 (latest)
  • 0.1.1
  • 0.1.0
released Nov 24th 2015
This version is compatible with:
  • Puppet Enterprise >= 3.0.0 < 2015.3.0
  • Puppet >= 3.0.0 < 5.0.0
  • ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'OpenConceptConsulting-rsnapshot', '0.2.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add OpenConceptConsulting-rsnapshot
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install OpenConceptConsulting-rsnapshot --version 0.2.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

OpenConceptConsulting/rsnapshot — version 0.2.0 Nov 24th 2015

rsnapshot

Build Status

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with rsnapshot
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

This puppet module manages rsnapshot configuration. It's a barebones module, as it doesn't deal with managing ssh keys or cron rules to trigger rsnapshot.

At the moment, this module has been tested with Puppet 3.x and Ubuntu 12.04, 14.04 and Debian 6. If you have another OS/Puppet version you want to include, please submit a pull request!

Module Description

This module is a barebones rsnapshot installation and configuration system. It came into existing because we needed an rsnapshot module but didn't want to have it generate cron rules or setup ssh keys (rsnapshot only needs to generate local backups for us).

It is relatively trivial to then add a cron rule to trigger rsnapshot, and managing ssh keys can be done through ssh_authorized_key.

Setup

What rsnapshot affects

  • rsnapshot package and its dependencies
  • /etc/rsnapshot.conf (by default)

Usage

You only need to declare the rsnapshot class, and configure the parameters you need. The class will default to sane values for your OS if you don't override some parameters.

While you can include the class as is, it wont be useful unless you specify backups or backup_scripts.

Reference

backups

A hash backup locations. The key is the source, the value is the destination.

class { 'rsnapshot':
  backups => {
    '/home/' => 'localhost/',
  }
}

If you want the backup stanza to have overriden configuration options, add them to the destination, separated by a tab character:

class { 'rsnapshot':
  backups => {
    '/home/' => 'localhost/ one_fs=1',
  }
}

backup_scripts

Exactly like backups, except that they generate backup_script stanzas.

Limitations

The module has been tested/used in production with Puppet 3.x.

On the OS side, the module currently only works on Debian-family OSes, but we'd love to get a patch to add support for more families/operating systems.

Development

Development is happening on github, and we welcome pull requests!