Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 918 Bytes

README.md

File metadata and controls

42 lines (27 loc) · 918 Bytes

Bacula

Build Status

A puppet module for the Bacula backup system.

Supported Platforms

  • Linux
    • Debian, Ubuntu, Centos, Fedora, SLES
  • FreeBSD

Requirements

Usage

Director Setup

The director component handles coordination of backups and databasing of transactions. In its simplest form, the director can be configured with a simple include.

class { 'bacula::director': storage => 'mystorage.example.com' }

Storage Setup

The storage component allocates disk storage for pools that can be used for holding backup data.

class { 'bacula::storage': director => 'mydirector.example.com' }

Client Setup

The client component is run on each system that needs something backed up.

class { 'bacula::client': director => 'mydirector.example.com' }