diff options
author | Jamie McClelland <jm@mayfirst.org> | 2011-03-15 21:14:24 -0400 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2012-10-28 22:49:38 +0100 |
commit | 2435f6b2884f11b1d562c18f360264d3eb455f47 (patch) | |
tree | 9cf33665eb418d894ef3bcc841373ab03d8a5ccd /templates | |
parent | 93851f9f3677009885e54fd53d9150aa5f527078 (diff) | |
download | puppet-backupninja-2435f6b2884f11b1d562c18f360264d3eb455f47.tar.gz puppet-backupninja-2435f6b2884f11b1d562c18f360264d3eb455f47.tar.bz2 |
provide pgsql support
Diffstat (limited to 'templates')
-rw-r--r-- | templates/pgsql.conf.erb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/pgsql.conf.erb b/templates/pgsql.conf.erb new file mode 100644 index 0000000..7781ef4 --- /dev/null +++ b/templates/pgsql.conf.erb @@ -0,0 +1,11 @@ +<% if vsname %> +vsname = <%= vsname %> +<% end %> +<% if backupdir %> +backupdir = <%= backupdir %> +<% end %> +<% if databases %> +databases = <%= databases %> +<% end %> +compress = <%= compress ? 'yes' : 'no' %> + |