Puppet Class: pgbackrest::config

Defined in:
manifests/config.pp

Summary

Configures pgBackRest

Overview

Configures pgBackRest

Examples:

include pgbackrest::config

Parameters:

  • filename (String) (defaults to: '/etc/pgbackrest.conf')
  • show_diff (Boolean) (defaults to: true)


8
9
10
11
12
13
14
15
16
17
# File 'manifests/config.pp', line 8

class pgbackrest::config (
  String $filename   = '/etc/pgbackrest.conf',
  Boolean $show_diff = true,
) {
  pgbackrest::config_file { $filename:
    filename  => $filename,
    show_diff => $show_diff,
    config    => $pgbackrest::config,
  }
}