mirror of
https://github.com/krislamo/puppet-rsnapshot
synced 2025-09-13 07:49:29 +00:00
Compare commits
16 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
e8a287c4f8 | ||
|
a28b27c505 | ||
|
0235f202b4 | ||
|
80d1756087 | ||
|
413ca69760 | ||
|
c7756458f1 | ||
|
d5e4ebbb9c | ||
|
d6ea0821c0 | ||
|
2cccc86433 | ||
|
d1008c99eb | ||
|
d5d7507fa9 | ||
|
5f65000606 | ||
|
fce58cf09a | ||
|
5cccf8200d | ||
|
ae2083c6ee | ||
|
8e62ff526e |
@@ -1,5 +1,7 @@
|
|||||||
# rsnapshot
|
# rsnapshot
|
||||||
|
|
||||||
|
## NOTE: ! Configuration for backup_scripts changed with version 0.4.0 (it was pretty useless in prior versions) !
|
||||||
|
|
||||||
#### Table of Contents
|
#### Table of Contents
|
||||||
|
|
||||||
1. [Overview](#overview)
|
1. [Overview](#overview)
|
||||||
|
@@ -11,7 +11,7 @@ class rsnapshot::config (
|
|||||||
$lockpath = pick($rsnapshot::lockpath, $rsnapshot::params::config_lockpath, '/var/run/rsnapshot')
|
$lockpath = pick($rsnapshot::lockpath, $rsnapshot::params::config_lockpath, '/var/run/rsnapshot')
|
||||||
$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')
|
||||||
$default_cron = assert_empty_hash($::rsnapshot::cron)
|
|
||||||
# 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',
|
||||||
@@ -162,57 +162,16 @@ class rsnapshot::config (
|
|||||||
concat { $cronfile:
|
concat { $cronfile:
|
||||||
}
|
}
|
||||||
# create cron files for each backup level
|
# create cron files for each backup level
|
||||||
|
# merge possible cron definitions to one
|
||||||
|
$real_cron = deep_merge($rsnapshot::params::cron, $rsnapshot::cron, $hash[cron])
|
||||||
|
|
||||||
$backup_levels.each |String $level| {
|
$backup_levels.each |String $level| {
|
||||||
|
$minute = rand_from_array($real_cron[$level][minute], "${host}.${level}.minute")
|
||||||
|
$hour = rand_from_array($real_cron[$level][hour], "${host}.${level}.hour")
|
||||||
|
$monthday = rand_from_array($real_cron[$level][monthday], "${host}.${level}.monthday")
|
||||||
|
$month = rand_from_array($real_cron[$level][month], "${host}.${level}.month")
|
||||||
|
$weekday = rand_from_array($real_cron[$level][weekday], "${host}.${level}.weekday")
|
||||||
|
|
||||||
# allow to globally override ranges, create random numbers for backup_levels daily, weekly, monthly
|
|
||||||
if has_key($hash,cron){
|
|
||||||
if has_key($hash[cron], $level) {
|
|
||||||
$cron = $hash[cron][$level]
|
|
||||||
} else {
|
|
||||||
if has_key($default_cron, $level) {
|
|
||||||
$cron = $default_cron[$level]
|
|
||||||
} else {
|
|
||||||
$cron = $rsnapshot::params::cron[$level]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if has_key($default_cron, $level) {
|
|
||||||
$cron = $default_cron[$level]
|
|
||||||
} else {
|
|
||||||
$cron = $rsnapshot::params::cron[$level]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if has_key($cron, minute) {
|
|
||||||
$c_min = $cron[minute]
|
|
||||||
} else {
|
|
||||||
$c_min = $rsnapshot::params::cron[$level][minute]
|
|
||||||
}
|
|
||||||
if has_key($cron, hour) {
|
|
||||||
$c_hour = $cron[hour]
|
|
||||||
} else {
|
|
||||||
$c_hour = $rsnapshot::params::cron[$level][hour]
|
|
||||||
}
|
|
||||||
if has_key($cron, monthday) {
|
|
||||||
$c_monthday = $cron[monthday]
|
|
||||||
} else {
|
|
||||||
$c_monthday = $rsnapshot::params::cron[$level][monthday]
|
|
||||||
}
|
|
||||||
if has_key($cron, month) {
|
|
||||||
$c_month = $cron[month]
|
|
||||||
} else {
|
|
||||||
$c_month = $rsnapshot::params::cron[$level][month]
|
|
||||||
}
|
|
||||||
if has_key($cron, weekday) {
|
|
||||||
$c_weekday = $cron[weekday]
|
|
||||||
} else {
|
|
||||||
$c_weekday = $rsnapshot::params::cron[$level][weekday]
|
|
||||||
}
|
|
||||||
$minute = rand_from_array($c_min, "${host}.${level}.minute")
|
|
||||||
$hour = rand_from_array($c_hour, "${host}.${level}.hour")
|
|
||||||
$monthday = rand_from_array($c_monthday, "${host}.${level}.monthday")
|
|
||||||
$month = rand_from_array($c_month, "${host}.${level}.month")
|
|
||||||
$weekday = rand_from_array($c_weekday, "${host}.${level}.weekday")
|
|
||||||
concat::fragment { "${host}.${level}":
|
concat::fragment { "${host}.${level}":
|
||||||
target => $cronfile,
|
target => $cronfile,
|
||||||
content => template('rsnapshot/cron.erb'),
|
content => template('rsnapshot/cron.erb'),
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "loomsen-rsnapshot",
|
"name": "loomsen-rsnapshot",
|
||||||
"version": "0.4.1",
|
"version": "0.5.0",
|
||||||
"author": "loomsen",
|
"author": "loomsen",
|
||||||
"summary": "Configures rsnapshot.",
|
"summary": "Configures rsnapshot.",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
10
templates/misc.sh.erb
Normal file
10
templates/misc.sh.erb
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# add custom stuff here
|
||||||
|
# FIXME: remember to concat for custom stuff after the last line of the puppet generated script
|
||||||
|
<% if @osfamily == 'RedHat' -%>
|
||||||
|
ssh <%=@host-%> rpm -qa --qf='%{name},' > packages.txt
|
||||||
|
<%end-%>
|
||||||
|
#
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# ++++++++++++++++++++++++++++++++++++++++++++
|
16
templates/mysql.sh.erb
Normal file
16
templates/mysql.sh.erb
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# written by Norbert Varzariu <loomsen@gmail.com>
|
||||||
|
# This Script is triggered by rsnapshot and dumps the specified dbs on the configured host.
|
||||||
|
#
|
||||||
|
host=<%=@host%>
|
||||||
|
user=<%=@dbbackup_user%>
|
||||||
|
pass=<%=@dbbackup_password%>
|
||||||
|
|
||||||
|
dbs=( $(mysql -h "$host" -u "$user" -p"$pass" -e 'show databases' | sed '1d;/information_schema/d;/performance_schema/d') )
|
||||||
|
|
||||||
|
for db in "${dbs[@]}"; do
|
||||||
|
mysqldump --host="$host" --user="$user" --password="$pass" --single-transaction --quick --routines --ignore-table=mysql.event "$db" > "$db".sql
|
||||||
|
wait
|
||||||
|
pbzip2 -p3 "$db".sql
|
||||||
|
done
|
||||||
|
|
17
templates/psql.sh.erb
Normal file
17
templates/psql.sh.erb
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# written by Norbert Varzariu <loomsen@gmail.com>
|
||||||
|
# This Script is triggered by rsnapshot and dumps the specified dbs on the configured host.
|
||||||
|
#
|
||||||
|
host=<%=@host%>
|
||||||
|
user=<%=@dbbackup_user%>
|
||||||
|
pass=<%=@dbbackup_password%>
|
||||||
|
|
||||||
|
PGPASSWORD="$pass"
|
||||||
|
dbs=( $(psql -h "$host" -U "$user" -Atc "SELECT datname FROM pg_database WHERE NOT datistemplate AND datname <> 'postgres'") )
|
||||||
|
|
||||||
|
for db in "${dbs[@]}"; do
|
||||||
|
ssh -l root "$host" "pg_dump -U ${user} -Fc ${db}" > "$db".sql
|
||||||
|
wait
|
||||||
|
pbzip2 -p3 "$db".sql
|
||||||
|
done
|
||||||
|
|
Reference in New Issue
Block a user