- Description
- Setup - The basics of getting started with bacula
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
This module install and configure the enterprise class Bacula backup solution. It could be used for all three components, the client, the server and the storage side.
- The module install packages based on usage type.
- The module configure the services based on usage type.
- The module start the necessary services based on usage type.
- The module install and configure MySQL if used as backup server.
No additional actions needed to use this module.
This module could be used to install and configure three components needed to perform distributed backups.
This module can install the:
- Bacula director
- Bacula storage daemon
- Bacula file descriptor
class { 'bacula':
type_dir => true,
client_password => 'Start123!',
monitor_password => 'Start123!',
storage_password => 'Start123!',
storage_daemon => 'bac-sd.example.local',
mail_hub => 'mail.example.local',
mail_group => 'bac-group@example.local',
backup_clients => [ 'client1.example.local', 'client2.example.local' ]
}
class { 'bacula':
type_sd => true,
monitor_password => 'Start123!',
storage_password => 'Start123!',
storage_daemon => 'bac-sd.example.local'
}
class { 'bacula':
type_fd => true,
client_password => 'Start123!',
monitor_password => 'Start123!'
}
Here is the list of parameters used by this module.
Specify if file descriptor components should be installed Default value is false
Specify if storage daemon components should be installed Default value is false
Specify if director components should be installed Default value is false
Specify the database password Default value is 0nly4install
Specify the database password hash Default value is *31F96A5E321BF3E06E35668ED982CC2447CF5B3F
Specify the client password Default value is client-password-for-bacula
Specify the monitor password Default value is monitor-password-for-bacula
Specify the storage daemon password Default value is storage-password-for-bacula
Specify the storage daemon that should be used Default value is storage-daemon.domain.local
Specify the mail hub that should be used Default value is mail-hub.domain.local
Specify the mail group that should be used Default value is bacula-list@domain.local
Specify the clients that should be backuped Default value is no client
This module has been built on and tested against Puppet 4.0 and higher.
The module has been tested on:
- CentOS Linux 7
Testing on other platforms has been light and cannot be guaranteed.
This module does currently only support a limited set of distributions and need to be reworked for other distributions as well.
If you like to add or improve this module, feel free to fork the module and send me a merge request with the modification.