mirror of
https://github.com/krislamo/puppet-rsnapshot
synced 2025-09-13 07:49:29 +00:00
Compare commits
49 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
9d42f4d0cd | ||
|
3089c49a66 | ||
|
92a466d90a | ||
|
d2cf15621b | ||
|
450474165f | ||
|
33f7031f2c | ||
|
3821db2c4f | ||
|
d1a262800f | ||
|
a78ccc1e43 | ||
|
6f92da8a17 | ||
|
a67dd7ea29 | ||
|
1be930d6cf | ||
|
cbf6a3db52 | ||
|
283ade9782 | ||
|
f92a8814ac | ||
|
85532a73b2 | ||
|
87775af5c7 | ||
|
960b0090e4 | ||
|
46c96d9b6c | ||
|
6e7d8e02f3 | ||
|
7dd4b98f1a | ||
|
5c35e8378b | ||
|
c5de50bd71 | ||
|
9f0fdf0547 | ||
|
90ee92acb8 | ||
|
d7436ed582 | ||
|
59cdc23ca1 | ||
|
a394973d4a | ||
|
a32ddcf208 | ||
|
7d39968e12 | ||
|
c6b7caefb7 | ||
|
75e778ad9c | ||
|
3dea0ba9e1 | ||
|
feb0898c01 | ||
|
f6e32dd53b | ||
|
cb04f5e70f | ||
|
cf50ff6251 | ||
|
decccb771f | ||
|
1feea03aaa | ||
|
a37c7f71ea | ||
|
f5003e3758 | ||
|
93be1c12ac | ||
|
ea87bf924a | ||
|
c79d1c7fc6 | ||
|
98519a8ebc | ||
|
a386a710b7 | ||
|
0c5afff356 | ||
|
3c9357f3fe | ||
|
1fe21e5bba |
@@ -4,5 +4,7 @@ fixtures:
|
|||||||
repo: "puppetlabs/stdlib"
|
repo: "puppetlabs/stdlib"
|
||||||
epel:
|
epel:
|
||||||
repo: "stahnma/epel"
|
repo: "stahnma/epel"
|
||||||
|
concat:
|
||||||
|
repo: "puppetlabs/concat"
|
||||||
symlinks:
|
symlinks:
|
||||||
"rsnapshot": "#{source_dir}"
|
"rsnapshot": "#{source_dir}"
|
||||||
|
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
.bundle
|
||||||
|
Gemfile.lock
|
||||||
|
pkg/
|
||||||
|
vendor/
|
@@ -7,6 +7,8 @@ script: "bundle exec rake validate && bundle exec rake spec SPEC_OPTS='--format
|
|||||||
matrix:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
include:
|
include:
|
||||||
|
rvm: 2.1
|
||||||
env: PUPPET_GEM_VERSION="~> 4.0"
|
env: PUPPET_GEM_VERSION="~> 4.0"
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email: false
|
||||||
|
|
||||||
|
1
Gemfile
1
Gemfile
@@ -5,3 +5,4 @@ gem 'puppet', puppetversion
|
|||||||
gem 'puppetlabs_spec_helper', '>= 0.8.2'
|
gem 'puppetlabs_spec_helper', '>= 0.8.2'
|
||||||
gem 'puppet-lint', '>= 1.0.0'
|
gem 'puppet-lint', '>= 1.0.0'
|
||||||
gem 'facter', '>= 1.7.0'
|
gem 'facter', '>= 1.7.0'
|
||||||
|
gem 'metadata-json-lint'
|
||||||
|
95
README.md
95
README.md
@@ -1,6 +1,6 @@
|
|||||||
# rsnapshot
|
[](https://travis-ci.org/loomsen/puppet-rsnapshot)
|
||||||
|
|
||||||
## NOTE: ! Configuration for backup_scripts changed with version 0.4.0 (it was pretty useless in prior versions) !
|
# rsnapshot
|
||||||
|
|
||||||
#### Table of Contents
|
#### Table of Contents
|
||||||
|
|
||||||
@@ -205,41 +205,20 @@ Takes an Integer, a String or an Array as input, and returns a random entry from
|
|||||||
|
|
||||||
The following parameters are available in the `::rsnapshot` class:
|
The following parameters are available in the `::rsnapshot` class:
|
||||||
|
|
||||||
#### `$hosts`
|
|
||||||
Hash containing the hosts to be backed up and optional overrides per host
|
|
||||||
(Default: undef (do nothing when no host given))
|
|
||||||
#### `$conf_d`
|
|
||||||
The place where the configs will be dropped
|
|
||||||
(Default: /etc/rsnapshot (will be created if it doesn't exist))
|
|
||||||
#### `$backup_user`
|
|
||||||
The user to run the backup scripts as
|
|
||||||
(Default: root, also the user used for ssh connections, if you change this make sure you have proper key deployed and the user exists in the nodes to be backed up.)
|
|
||||||
#### `$package_name`
|
|
||||||
(Default: rsnapshot)
|
|
||||||
#### `$package_ensure`
|
|
||||||
(Default: present)
|
|
||||||
#### `$cron_dir`
|
|
||||||
Directory to drop the cron files to. Crons will be created per host.
|
|
||||||
(Default: /etc/cron.d)
|
|
||||||
#### `$backup_levels`
|
|
||||||
Array containing the backup levels (hourly, daily, weekly, monthly)
|
|
||||||
Configure the backup_levels (valid per host and global, so you may either set: rsnapshot::backup_levels for all hosts or override default backup_levels for specific hosts)
|
|
||||||
(Default: [ 'daily', 'weekly', ] )
|
|
||||||
#### `$backup_defaults`
|
#### `$backup_defaults`
|
||||||
Boolean. Backup default backup dirs or not.
|
Boolean. Backup default backup dirs or not.
|
||||||
(Default: true)
|
(Default: true)
|
||||||
|
|
||||||
#### `$default_backup`
|
#### `$backup_levels`
|
||||||
The default backup directories. This will apply to all hosts unless you set [backup_defaults](#backup_defaults) = false
|
Array containing the backup levels (hourly, daily, weekly, monthly)
|
||||||
Default is:
|
Configure the backup_levels (valid per host and global, so you may either set: rsnapshot::backup_levels for all hosts or override default backup_levels for specific hosts)
|
||||||
|
(Default: [ 'daily', 'weekly', ] )
|
||||||
```puppet
|
#### `$backup_user`
|
||||||
$default_backup = {
|
The user to run the backup scripts as
|
||||||
'/etc' => './',
|
(Default: root, also the user used for ssh connections, if you change this make sure you have proper key deployed and the user exists in the nodes to be backed up.)
|
||||||
'/home' => './',
|
#### `$conf_d`
|
||||||
}
|
The place where the configs will be dropped
|
||||||
```
|
(Default: /etc/rsnapshot (will be created if it doesn't exist))
|
||||||
|
|
||||||
#### `$cron`
|
#### `$cron`
|
||||||
Hash. Set time ranges for different backup levels. Each item (minute, hour...) allows for cron notation, an array to pick a random time from and a range to pick a random time from.
|
Hash. Set time ranges for different backup levels. Each item (minute, hour...) allows for cron notation, an array to pick a random time from and a range to pick a random time from.
|
||||||
The range notation is '$start..$end', so to pick a random hour from 8 pm to 2 am, you could set the hour of your desired backup level to
|
The range notation is '$start..$end', so to pick a random hour from 8 pm to 2 am, you could set the hour of your desired backup level to
|
||||||
@@ -354,6 +333,44 @@ Default is:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### `$cron_dir`
|
||||||
|
Directory to drop the cron files to. Crons will be created per host.
|
||||||
|
(Default: /etc/cron.d)
|
||||||
|
#### `$default_backup`
|
||||||
|
The default backup directories. This will apply to all hosts unless you set [backup_defaults](#backup_defaults) = false
|
||||||
|
Default is:
|
||||||
|
|
||||||
|
```puppet
|
||||||
|
$default_backup = {
|
||||||
|
'/etc' => './',
|
||||||
|
'/home' => './',
|
||||||
|
}
|
||||||
|
```
|
||||||
|
#### `$cronfile_prefix_use`
|
||||||
|
Bool. Set this to true if you want your cronfiles to have a prefix.
|
||||||
|
(Default: false)
|
||||||
|
#### `$cronfile_prefix`
|
||||||
|
Optional prefix to add to the cronfiles name. Your files will be named: prefix_hostname
|
||||||
|
(Default: 'rsnapshot_' only if you set $cronfile_prefix_use = true)
|
||||||
|
#### `$hosts`
|
||||||
|
Hash containing the hosts to be backed up and optional overrides per host
|
||||||
|
(Default: undef (do nothing when no host given))
|
||||||
|
#### `$interval`
|
||||||
|
How many backups of each level to keep.
|
||||||
|
Default is:
|
||||||
|
|
||||||
|
```puppet
|
||||||
|
$interval = {
|
||||||
|
'daily' => '7',
|
||||||
|
'weekly' => '4',
|
||||||
|
'monthly' => '6',
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### `$package_ensure`
|
||||||
|
(Default: present)
|
||||||
|
#### `$package_name`
|
||||||
|
(Default: rsnapshot)
|
||||||
#### `$snapshot_root`
|
#### `$snapshot_root`
|
||||||
global. the directory holding your backups.
|
global. the directory holding your backups.
|
||||||
(Default: /backup)
|
(Default: /backup)
|
||||||
@@ -377,18 +394,6 @@ You will end up with a structure like:
|
|||||||
└── weekly.0
|
└── weekly.0
|
||||||
```
|
```
|
||||||
|
|
||||||
#### `$interval`
|
|
||||||
How many backups of each level to keep.
|
|
||||||
Default is:
|
|
||||||
|
|
||||||
```puppet
|
|
||||||
$interval = {
|
|
||||||
'daily' => '7',
|
|
||||||
'weekly' => '4',
|
|
||||||
'monthly' => '6',
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
#### `$backup_scripts`
|
#### `$backup_scripts`
|
||||||
Additional scripts to create, possible values are: mysql, psql, misc
|
Additional scripts to create, possible values are: mysql, psql, misc
|
||||||
|
|
||||||
|
@@ -12,6 +12,8 @@ class rsnapshot::config (
|
|||||||
$conf_d = pick($rsnapshot::conf_d, $rsnapshot::params::conf_d, '/etc/rsnapshot')
|
$conf_d = pick($rsnapshot::conf_d, $rsnapshot::params::conf_d, '/etc/rsnapshot')
|
||||||
$snapshot_root = pick($hosts['snapshot_root'], $rsnapshot::snapshot_root, '/backup')
|
$snapshot_root = pick($hosts['snapshot_root'], $rsnapshot::snapshot_root, '/backup')
|
||||||
$logpath = pick($rsnapshot::logpath, $rsnapshot::params::config_logpath)
|
$logpath = pick($rsnapshot::logpath, $rsnapshot::params::config_logpath)
|
||||||
|
$cronfile_prefix_use = pick($rsnapshot::cronfile_prefix_use, $rsnapshot::params::config_cronfile_prefix_use, false)
|
||||||
|
$cronfile_prefix = pick($rsnapshot::cronfile_prefix, $rsnapshot::params::config_cronfile_prefix, '')
|
||||||
# make sure lock path and conf path exist
|
# make sure lock path and conf path exist
|
||||||
file { $conf_d:
|
file { $conf_d:
|
||||||
ensure => 'directory',
|
ensure => 'directory',
|
||||||
@@ -80,7 +82,7 @@ class rsnapshot::config (
|
|||||||
$rsync_numtries = pick_undef($hash['rsync_numtries'], $rsnapshot::params::config_rsync_numtries)
|
$rsync_numtries = pick_undef($hash['rsync_numtries'], $rsnapshot::params::config_rsync_numtries)
|
||||||
#$backup_scripts = pick_undef($hash['backup_scripts'], $rsnapshot::params::config_backup_scripts)
|
#$backup_scripts = pick_undef($hash['backup_scripts'], $rsnapshot::params::config_backup_scripts)
|
||||||
|
|
||||||
$snapshot_dir = "${config_snapshot_root}/${host}"
|
$snapshot_dir = "${snapshot_root}/${host}"
|
||||||
$config = "${conf_d}/${host}.rsnapshot.conf"
|
$config = "${conf_d}/${host}.rsnapshot.conf"
|
||||||
$lockfile = "${lockpath}/${host}.pid"
|
$lockfile = "${lockpath}/${host}.pid"
|
||||||
$logfile = "${logpath}/${host}.log"
|
$logfile = "${logpath}/${host}.log"
|
||||||
@@ -162,13 +164,33 @@ class rsnapshot::config (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$cronfile = "${cron_dir}/${host}"
|
if $cronfile_prefix_use {
|
||||||
|
$rsnapshot_prefix = $rsnapshot::cronfile_prefix
|
||||||
|
} else {
|
||||||
|
$rsnapshot_prefix = ''
|
||||||
|
}
|
||||||
|
|
||||||
|
# cron on Debian seems to ignore files that have dots in their name; replace
|
||||||
|
# them with underscores (issue #2)
|
||||||
|
case $::osfamily {
|
||||||
|
'Debian': {
|
||||||
|
$cron_name = regsubst($host, '\.', '_', 'G')
|
||||||
|
$cronfile = "${cron_dir}/${rsnapshot_prefix}${cron_name}"
|
||||||
|
}
|
||||||
|
'RedHat': {
|
||||||
|
$cronfile = "${cron_dir}/${rsnapshot_prefix}${host}"
|
||||||
|
}
|
||||||
|
default: {
|
||||||
|
$cronfile = "${cron_dir}/${rsnapshot_prefix}${host}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
concat { $cronfile:
|
concat { $cronfile:
|
||||||
}
|
}
|
||||||
# create cron files for each backup level
|
# create cron files for each backup level
|
||||||
# merge possible cron definitions to one
|
# merge possible cron definitions to one
|
||||||
$real_cron = deep_merge($rsnapshot::params::cron, $rsnapshot::cron, $hash[cron])
|
$real_cron = deep_merge($rsnapshot::params::cron, $rsnapshot::cron, $hash[cron])
|
||||||
concat::fragment { "mailto for $host":
|
concat::fragment { "mailto for ${host}":
|
||||||
content => "#This file is managed by puppet\nMAILTO=${real_cron[mailto]}\n\n",
|
content => "#This file is managed by puppet\nMAILTO=${real_cron[mailto]}\n\n",
|
||||||
target => $cronfile,
|
target => $cronfile,
|
||||||
order => 1,
|
order => 1,
|
||||||
@@ -190,4 +212,3 @@ class rsnapshot::config (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -18,7 +18,13 @@ class rsnapshot (
|
|||||||
$exclude = $rsnapshot::params::config_exclude,
|
$exclude = $rsnapshot::params::config_exclude,
|
||||||
$snapshot_root = $rsnapshot::params::config_snapshot_root,
|
$snapshot_root = $rsnapshot::params::config_snapshot_root,
|
||||||
$backup_levels = $rsnapshot::params::config_backup_levels,
|
$backup_levels = $rsnapshot::params::config_backup_levels,
|
||||||
|
$backup_user = $rsnapshot::params::config_backup_user,
|
||||||
$cron_service_name = $rsnapshot::params::cron_service_name,
|
$cron_service_name = $rsnapshot::params::cron_service_name,
|
||||||
|
$manage_cron = $rsnapshot::params::manage_cron,
|
||||||
|
$cronfile_prefix = $rsnapshot::params::config_cronfile_prefix,
|
||||||
|
$cronfile_prefix_use = $rsnapshot::params::config_cronfile_prefix_use,
|
||||||
|
$check_mk_job = $rsnapshot::params::config_check_mk_job,
|
||||||
|
|
||||||
) inherits rsnapshot::params {
|
) inherits rsnapshot::params {
|
||||||
|
|
||||||
$default_backup_scripts = $rsnapshot::params::backup_scripts + $backup_scripts
|
$default_backup_scripts = $rsnapshot::params::backup_scripts + $backup_scripts
|
||||||
@@ -32,4 +38,3 @@ class rsnapshot (
|
|||||||
contain '::rsnapshot::service'
|
contain '::rsnapshot::service'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -12,10 +12,12 @@ class rsnapshot::params {
|
|||||||
'Debian' => 'cron',
|
'Debian' => 'cron',
|
||||||
default => '',
|
default => '',
|
||||||
}
|
}
|
||||||
|
$manage_cron = true
|
||||||
$cron_dir = '/etc/cron.d'
|
$cron_dir = '/etc/cron.d'
|
||||||
$config_backup_levels = [ 'daily', 'weekly', 'monthly' ]
|
$config_backup_levels = [ 'daily', 'weekly', 'monthly' ]
|
||||||
$config_backup_defaults = true
|
$config_backup_defaults = true
|
||||||
$config_version = '1.2'
|
$config_version = '1.2'
|
||||||
|
$config_check_mk_job = false
|
||||||
$config_cmd_cp = '/bin/cp'
|
$config_cmd_cp = '/bin/cp'
|
||||||
$config_cmd_rm = '/bin/rm'
|
$config_cmd_rm = '/bin/rm'
|
||||||
$config_cmd_rsync = '/usr/bin/rsync'
|
$config_cmd_rsync = '/usr/bin/rsync'
|
||||||
@@ -25,6 +27,8 @@ class rsnapshot::params {
|
|||||||
$config_cmd_rsnapshot_diff = '/usr/bin/rsnapshot-diff'
|
$config_cmd_rsnapshot_diff = '/usr/bin/rsnapshot-diff'
|
||||||
$config_cmd_preexec = undef
|
$config_cmd_preexec = undef
|
||||||
$config_cmd_postexec = undef
|
$config_cmd_postexec = undef
|
||||||
|
$config_cronfile_prefix = 'rsnapshot_'
|
||||||
|
$config_cronfile_prefix_use = false
|
||||||
$config_use_lvm = undef
|
$config_use_lvm = undef
|
||||||
$config_linux_lvm_cmd_lvcreate = undef # '/sbin/lvcreate'
|
$config_linux_lvm_cmd_lvcreate = undef # '/sbin/lvcreate'
|
||||||
$config_linux_lvm_cmd_lvremove = undef # '/sbin/lvremove'
|
$config_linux_lvm_cmd_lvremove = undef # '/sbin/lvremove'
|
||||||
@@ -124,6 +128,6 @@ class rsnapshot::params {
|
|||||||
],
|
],
|
||||||
default => [],
|
default => [],
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,10 +1,13 @@
|
|||||||
# == Class: rsnapshot::service
|
# == Class: rsnapshot::service
|
||||||
#
|
#
|
||||||
# Reloads cron
|
# Reloads cron
|
||||||
class rsnapshot::service {
|
class rsnapshot::service (
|
||||||
|
$manage_cron = $rsnapshot::manage_cron
|
||||||
|
) {
|
||||||
|
|
||||||
|
if $manage_cron {
|
||||||
service { $rsnapshot::cron_service_name:
|
service { $rsnapshot::cron_service_name:
|
||||||
ensure => running,
|
ensure => running,
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "loomsen-rsnapshot",
|
"name": "loomsen-rsnapshot",
|
||||||
"version": "1.0.2",
|
"version": "1.2.0",
|
||||||
"author": "loomsen",
|
"author": "loomsen",
|
||||||
"summary": "Configures rsnapshot.",
|
"summary": "Configures rsnapshot.",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
@@ -12,13 +12,10 @@
|
|||||||
"backup",
|
"backup",
|
||||||
"rsync"
|
"rsync"
|
||||||
],
|
],
|
||||||
"requirements": [
|
|
||||||
{ "name": "pe", "version_requirement": ">= 4.0.0" },
|
|
||||||
{ "name": "puppet", "version_requirement": ">= 4.0.0" }
|
|
||||||
],
|
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
{ "name": "puppetlabs-stdlib","version_range": ">= 1.0.0" },
|
{ "name": "puppetlabs-stdlib","version_requirement": ">= 1.0.0" },
|
||||||
{ "name": "stahnma-epel","version_range": ">= 1.0.0" }
|
{ "name": "stahnma-epel","version_requirement": ">= 1.0.0" },
|
||||||
|
{ "name": "puppetlabs-concat","version_requirement": ">= 2.0.0 < 3.0.0" }
|
||||||
],
|
],
|
||||||
"operatingsystem_support": [
|
"operatingsystem_support": [
|
||||||
{
|
{
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
describe 'rsnapshot' do
|
describe 'rsnapshot' do
|
||||||
|
let(:facts) {{ :osfamily => 'RedHat' }}
|
||||||
|
|
||||||
it { should contain_class('rsnapshot::params') }
|
it { should contain_class('rsnapshot::params') }
|
||||||
it { is_expected.to compile }
|
it { is_expected.to compile }
|
||||||
end
|
end
|
||||||
|
@@ -1 +1 @@
|
|||||||
<%= @minute %> <%= @hour %> <%= @month %> <%= @monthday %> <%= @weekday %> root /usr/bin/rsnapshot -c <%= @config %> <%= @level %>
|
<%= @minute %> <%= @hour %> <%= @monthday %> <%= @month %> <%= @weekday %> root<% if scope['rsnapshot::check_mk_job'] == true -%> mk-job rsnapshot_<%= @host %>_<%= @level %><% end -%> /usr/bin/rsnapshot -c <%= @config %> <%= @level %>
|
||||||
|
@@ -2,6 +2,6 @@
|
|||||||
#This file is managed by puppet
|
#This file is managed by puppet
|
||||||
#
|
#
|
||||||
<%@commands.each do |command| -%>
|
<%@commands.each do |command| -%>
|
||||||
ssh -l <%=@backup_user-%> <%=@host-%> '<%=command-%>'
|
ssh -l <%=@backup_user-%> <%=@host-%> <%=command-%>
|
||||||
|
|
||||||
<%end-%>
|
<%end-%>
|
||||||
|
@@ -5,7 +5,6 @@
|
|||||||
#
|
#
|
||||||
host=<%=@host%>
|
host=<%=@host%>
|
||||||
user=<%=@dbbackup_user%>
|
user=<%=@dbbackup_user%>
|
||||||
pass=<%=@dbbackup_password%>
|
|
||||||
|
|
||||||
<% if (@dbbackup_user == 'root' && @dbbackup_password == '') -%>
|
<% if (@dbbackup_user == 'root' && @dbbackup_password == '') -%>
|
||||||
dbs=(
|
dbs=(
|
||||||
@@ -17,7 +16,7 @@ dbs=(
|
|||||||
)
|
)
|
||||||
<%end-%>
|
<%end-%>
|
||||||
for db in "${dbs[@]}"; do
|
for db in "${dbs[@]}"; do
|
||||||
<% if (@dbbackup_user == 'root' && @dbbackup_password = '' )-%>
|
<% if (@dbbackup_user == 'root' && @dbbackup_password == '' )-%>
|
||||||
ssh -l <%=@backup_user-%> "$host" "<%=@dumper-%> <%=@dump_flags-%> ${db}" > "$db".sql
|
ssh -l <%=@backup_user-%> "$host" "<%=@dumper-%> <%=@dump_flags-%> ${db}" > "$db".sql
|
||||||
<%else-%>
|
<%else-%>
|
||||||
ssh -l <%=@backup_user-%> "$host" "<%=@dumper-%> --user=<%=@dbbackup_user-%> --password='<%=@dbbackup_password-%>' <%=@dump_flags-%> ${db}" > "$db".sql
|
ssh -l <%=@backup_user-%> "$host" "<%=@dumper-%> --user=<%=@dbbackup_user-%> --password='<%=@dbbackup_password-%>' <%=@dump_flags-%> ${db}" > "$db".sql
|
||||||
|
@@ -5,14 +5,12 @@
|
|||||||
#
|
#
|
||||||
host=<%=@host%>
|
host=<%=@host%>
|
||||||
user=<%=@dbbackup_user%>
|
user=<%=@dbbackup_user%>
|
||||||
pass=<%=@dbbackup_password%>
|
|
||||||
|
|
||||||
#PGPASSWORD="$pass"
|
|
||||||
dbs=(
|
dbs=(
|
||||||
$(ssh -l <%=@backup_user-%> "$host" "PGPASSWORD=${pass} psql -U ${user} -Atc \"SELECT datname FROM pg_database WHERE NOT datistemplate AND NOT datname ~ '<%@ignore_dbs.each do |db|-%><%if db == @ignore_dbs.last-%><%=db-%><%else-%><%=db-%>|<%end-%><%end-%>'\"")
|
$(ssh -l <%=@backup_user-%> "$host" "PGPASSWORD='<%=@dbbackup_password%>' psql -U ${user} -Atc \"SELECT datname FROM pg_database WHERE NOT datistemplate AND NOT datname ~ '<%@ignore_dbs.each do |db|-%><%if db == @ignore_dbs.last-%><%=db-%><%else-%><%=db-%>|<%end-%><%end-%>'\"")
|
||||||
)
|
)
|
||||||
for db in "${dbs[@]}"; do
|
for db in "${dbs[@]}"; do
|
||||||
ssh -l <%=@backup_user-%> "$host" "PGPASSWORD=${pass} <%=@dumper-%> -U ${user} <%=@dump_flags-%> ${db}" > "$db".sql
|
ssh -l <%=@backup_user-%> "$host" "PGPASSWORD='<%=@dbbackup_password%>' <%=@dumper-%> -U ${user} <%=@dump_flags-%> ${db}" > "$db".sql
|
||||||
wait
|
wait
|
||||||
<% if @compress != '' -%>
|
<% if @compress != '' -%>
|
||||||
<%=@compress-%> "$db".sql
|
<%=@compress-%> "$db".sql
|
||||||
|
Reference in New Issue
Block a user