1
0
mirror of https://github.com/krislamo/puppet-rsnapshot synced 2024-11-10 00:00:35 +00:00

add epel as dependecy for CentOS

This commit is contained in:
Norbert Varzariu 2015-12-21 11:43:50 +01:00
parent cafb00e201
commit 640e86a156
4 changed files with 8 additions and 25 deletions

View File

@ -16,7 +16,6 @@ class rsnapshot::config (
ensure => 'directory',
}
# custom function, if only a hostname is given as a param, this is an empty hash
# the next loop would break as puppet does not allow to reassign variables
# the function checks $hosts for elements like:
@ -109,19 +108,9 @@ class rsnapshot::config (
content => template('rsnapshot/rsnapshot.erb')
}
########################### CRON ####################################################
#30 1 * * * /usr/bin/rsnapshot -c /etc/rsnapshot/cmweb1.rsnapshot.conf daily
#15 1 * * 0 /usr/bin/rsnapshot -c /etc/rsnapshot/cmweb1.rsnapshot.conf weekly
# 00 1 1 * * /usr/bin/rsnapshot -c /etc/rsnapshot/cmweb1.rsnapshot.conf monthly
$cronfile = "/tmp/rsnapshot.d/cron/${host}"
concat { "${cronfile}":
# replace => false,
}
# $cron = pick($hash['cron'], $rsnapshot::params::cron)
# notify { "cron is ${cron} ": }
$backup_levels.each |String $level| {
if validate_hash($hash) {
# allow to globally override ranges, create random numbers for backup_levels daily, weekly, monthly

View File

@ -10,14 +10,13 @@ class rsnapshot (
$logpath = $rsnapshot::params::config_logpath,
$lockpath = $rsnapshot::params::config_lockpath,
$default_backup = $rsnapshot::params::config_default_backup,
$package_name = $rsnapshot::params::package_name,
$package_ensure = $rsnapshot::params::package_ensure,
) inherits rsnapshot::params {
# anchor { 'rsnapshot::begin': } ->
#class { 'rsnapshot::install': } ->
#class { 'rsnapshot::config': } ->
#anchor { 'rsnapshot::end': }
if $hosts {
class { 'rsnapshot::install': }->
class { 'rsnapshot::config': }
contain 'rsnapshot::install'
contain 'rsnapshot::config'
}
}

View File

@ -2,7 +2,10 @@
#
# Installs the rsnapshot package.
class rsnapshot::install inherits rsnapshot {
case $::operatingsystem {
/^CentOS$/: { include epel }
default: {}
}
package { $rsnapshot::package_name:
ensure => $rsnapshot::package_ensure,
}

View File

@ -60,14 +60,6 @@ class rsnapshot::params {
'/home' => './',
}
$config_backup_scripts = {}
# $cron = {
# 'minute' => '0..59',
# 'hour' => '0..23', # you could also do: ['21..23','0..4','5'],
# 'monthday' => '0..28',
# 'month' => '1..12',
# 'weekday' => '0..6',
# }
$cron = {
'hourly' => {
'minute' => '0..59',