Forge Home

crashplan

Module to install and configure CrashPlan Home

6,864 downloads

6,684 latest version

4.6 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

  • 1.0.2 (latest)
  • 1.0.1 (deleted)
  • 1.0.0
released Mar 23rd 2017
This version is compatible with:

Start using this module

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

Add this module to your Puppetfile:

mod 'drzewiec-crashplan', '1.0.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add drzewiec-crashplan
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install drzewiec-crashplan --version 1.0.2

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

drzewiec/crashplan — version 1.0.2 Mar 23rd 2017

crashplan

Table of Contents

  1. Description
  2. Setup - The basics of getting started with crashplan
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.

Description

This module installs and configures the CrashPlan backup service. Currently works on Linux (tested on CentOS 7.3 with Puppet 4.9, should work for older versions and other distros)

Setup

No special setup should be required.

Beginning with crashplan

include crashplan

Usage

You can specify the URL that the module downloads CrashPlan from by passing the crashplan_source parameter, like so:

class {crashplan:
  crashplan_source => 'http://some_url',
}

You can also specify the port that the CrashPlan service will listen to, as well as the GUID that desktop clients must use to connect (for headless installs):

class {crashplan:
  server_port => '4300',
  auth_guid => '6690f1b9-e3b7-444e-bfd1-9afd06bd896c',
}

See https://support.code42.com/CrashPlan/4/Configuring/Using_CrashPlan_On_A_Headless_Computer for more information on how to configure your desktop client to connect to a headless install.

Reference

crashplan

The main class, and the only one you should need to use. Calls the other classes in order to install and configure the software.

Parameters

crashplan_source: String, specifies the URL to download CrashPlan from. server_port: String, specifies the port to listen on. auth_guid: String, specifies the GUID used to connect the desktop client to the service.

crashplan::install

Downloads, extracts, and installs the CrashPlan software.

crashplan::configure

Configures settings used by CrashPlan.

crashplan::service

Manages the CrashPlan service.

Limitations

Should be compatible with any Linux distribution CrashPlan supports. Tested on CentOS 7.3 with Puppet 4.9, but should be compatible with older Puppet versions as well.