mirror of
https://github.com/krislamo/puppet-rsnapshot
synced 2024-11-10 00:00:35 +00:00
Merge branch 'feature/create_backup_scripts' into develop
This commit is contained in:
commit
53e34799f5
@ -9,7 +9,7 @@ class rsnapshot::config (
|
||||
$config_version = $rsnapshot::params::config_version
|
||||
$lockpath = pick($rsnapshot::lockpath, $rsnapshot::params::config_lockpath, '/var/run/rsnapshot')
|
||||
$conf_d = pick($rsnapshot::conf_d, $rsnapshot::params::conf_d, '/etc/rsnapshot')
|
||||
$snapshot_root = pick($hosts['snapshot_root'], $rsnapshot::params::config_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
|
||||
file { $conf_d:
|
||||
@ -30,7 +30,7 @@ class rsnapshot::config (
|
||||
# { foo => } and converts those to { foo => {} }
|
||||
$hosts_clean = assert_empty_hash($hosts)
|
||||
|
||||
$hosts_clean.each |String $host, Hash $hash | {
|
||||
$hosts_clean.each |String $host, $hash | {
|
||||
$backup_user = pick($hash['backup_user'], $rsnapshot::params::config_backup_user)
|
||||
$default_backup_dirs = pick($rsnapshot::default_backup, $rsnapshot::params::config_default_backup)
|
||||
$backup_levels = pick($hash['backup_levels'], $rsnapshot::params::config_backup_levels, 'weekly')
|
||||
@ -74,7 +74,7 @@ class rsnapshot::config (
|
||||
$sync_first = pick_undef($hash['sync_first'], $rsnapshot::params::config_sync_first)
|
||||
$use_lazy_deletes = pick_undef($hash['use_lazy_deletes'], $rsnapshot::params::config_use_lazy_deletes)
|
||||
$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}"
|
||||
$config = "${conf_d}/${host}.rsnapshot.conf"
|
||||
@ -114,21 +114,49 @@ class rsnapshot::config (
|
||||
content => template('rsnapshot/include.erb'),
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if $exclude != '' {
|
||||
file { $exclude_file:
|
||||
ensure => 'file',
|
||||
content => template('rsnapshot/exclude.erb'),
|
||||
}
|
||||
}
|
||||
|
||||
file { $config:
|
||||
concat { $config:
|
||||
}
|
||||
concat::fragment { "${config} for ${host}":
|
||||
target => $config,
|
||||
content => template('rsnapshot/rsnapshot.erb'),
|
||||
}
|
||||
|
||||
if has_key($hash, backup_scripts) {
|
||||
|
||||
$hash[backup_scripts].each |$script, $credentials| {
|
||||
|
||||
if is_hash($credentials) {
|
||||
$dbbackup_user = $credentials['dbbackup_user']
|
||||
$dbbackup_password = $credentials['dbbackup_password']
|
||||
} else {
|
||||
$dbbackup_user = $rsnapshot::default_backup_scripts[$script]['dbbackup_user']
|
||||
$dbbackup_password = $rsnapshot::default_backup_scripts[$script]['dbbackup_password']
|
||||
}
|
||||
|
||||
concat::fragment { "${host}_${script}_backup":
|
||||
target => $config,
|
||||
content => "backup_script ${conf_d}/${host}.${script}.sh ./${script}\n",
|
||||
}
|
||||
|
||||
file { "${conf_d}/${host}.${script}.sh":
|
||||
ensure => present,
|
||||
content => template("rsnapshot/${script}.sh.erb"),
|
||||
mode => '0755',
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
$cronfile = "${cron_dir}/${host}"
|
||||
concat { $cronfile:
|
||||
}
|
||||
|
||||
# create cron files for each backup level
|
||||
$backup_levels.each |String $level| {
|
||||
|
||||
|
@ -13,8 +13,13 @@ class rsnapshot (
|
||||
$package_name = $rsnapshot::params::package_name,
|
||||
$package_ensure = $rsnapshot::params::package_ensure,
|
||||
$cron = $rsnapshot::params::cron,
|
||||
$backup_scripts = $rsnapshot::params::backup_scripts,
|
||||
$exclude = $rsnapshot::params::config_exclude,
|
||||
$snapshot_root = $rsnapshot::params::config_snapshot_root,
|
||||
) inherits rsnapshot::params {
|
||||
|
||||
|
||||
$default_backup_scripts = $rsnapshot::params::backup_scripts + $backup_scripts
|
||||
$default_exclude = $rsnapshot::params::config_exclude + $exclude
|
||||
if $hosts {
|
||||
class { '::rsnapshot::install': }->
|
||||
class { '::rsnapshot::config': }
|
||||
|
@ -8,7 +8,7 @@ class rsnapshot::params {
|
||||
$package_name = 'rsnapshot'
|
||||
$package_ensure = 'present'
|
||||
$cron_dir = '/etc/cron.d'
|
||||
$config_backup_levels = [ 'daily', 'weekly', ]
|
||||
$config_backup_levels = [ 'daily', 'weekly', 'monthly' ]
|
||||
$config_backup_defaults = true
|
||||
$config_version = '1.2'
|
||||
$config_cmd_cp = '/bin/cp'
|
||||
@ -91,4 +91,15 @@ class rsnapshot::params {
|
||||
weekday => '*',
|
||||
},
|
||||
}
|
||||
$backup_scripts = {
|
||||
mysql => {
|
||||
dbbackup_user => 'root',
|
||||
dbbackup_password => 'myFancyPassWord',
|
||||
},
|
||||
psql => {
|
||||
dbbackup_user => 'postgres',
|
||||
dbbackup_password => '',
|
||||
},
|
||||
misc => {},
|
||||
}
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
# This file is being managed by puppet
|
||||
# Module 'rsnaphost'
|
||||
# Module 'rsnapshot'
|
||||
|
||||
config_version <%= @config_version %>
|
||||
snapshot_root <%= @snapshot_root %>
|
||||
snapshot_root <%= @snapshot_root -%>/<%=@host%>
|
||||
<% if @no_create_root != '' -%>
|
||||
no_create_root <%= @no_create_root %>
|
||||
<% end -%>
|
||||
@ -130,9 +130,3 @@ backup <%= @backup_user %>@<%=@host%>:<%= source %> <%=dest%>
|
||||
backup <%=@host%>:<%= source %> <%=dest%>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
<% if @backup_scripts != '' -%>
|
||||
<% @backup_scripts.each_pair do |source, dest| -%>
|
||||
backup_script <%= source %> <%= dest %>
|
||||
<% end -%>
|
||||
<%end-%>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user