1
0
mirror of https://github.com/krislamo/puppet-rsnapshot synced 2025-09-13 15:59:28 +00:00

19 Commits
1.2.2 ... pr/14

Author SHA1 Message Date
Oleg Ginzburg
0ec04544fd Merge pull request #1 from loomsen/test_travis
Fix travis checks
2018-10-20 15:02:57 +03:00
Norbert Varzariu
905d856219 fix dependency (version bounds) for concat module 2018-10-20 11:23:58 +02:00
Norbert Varzariu
63214c6919 bump rvm version to 2.3 2018-10-20 10:36:19 +02:00
Norbert Varzariu
65f4a883de bump ruby version in travis.yml 2018-10-20 10:18:37 +02:00
olevole
3043196a2e Merge branch 'master' of github.com:olevole/puppet-rsnapshot 2018-10-14 06:52:50 +03:00
olevole
4202b1ae94 add FreeBSD support
changes for FreeBSD are trivial and mainly relate to
an alternative path to configuration and executable files.
So, the standard way for 3rd-party config files in FreeBSD:
  /usr/local/etc{/rsnapshot}
and for binaries:
  /usr/local
Also, define @cmd_rsnapshot in cron.erb via config_cmd_rsnapshot
2018-10-14 06:52:39 +03:00
olevole
100eafe356 add FreeBSD support
changes for FreeBSD are trivial and mainly relate to
an alternative path to configuration and executable files.
So, the standard way for 3rd-party config files in FreeBSD:
  /usr/local/etc{/rsnapshot}
and for binaries:
  /usr/local
Also, define @cmd_rsnapshot in cron.erb via config_cmd_rsnapshot
2018-10-14 06:36:46 +03:00
Administrator
03c31b78c2 Merge branch 'release/1.2.4'
* release/1.2.4:
  bump version
2018-04-16 17:39:49 +02:00
Administrator
679c742fd3 bump version 2018-04-16 17:39:47 +02:00
Administrator
9327c68d59 fix README, monthday cannot be 0 2018-04-16 17:36:26 +02:00
Norbert Varzariu
b72f1dfb36 Merge pull request #13 from hellp/patch-1
Fix: monthday in cronjob cannot be 0
2018-04-15 23:09:36 +02:00
Fabian Neumann
4820ededfa Fix: monthday in cronjob cannot be 0
At least according to `man 5 cronjob` (and also Wikipedia ;) the day of month can only be 1-31. When the script created a cron.d file with a 0 at that position the script would not run at all.
2018-04-11 09:21:37 +02:00
Norbert Varzariu
c7e02c53dd Merge branch 'develop' 2017-04-24 20:46:46 +02:00
Norbert Varzariu
43cd819749 add test for tmpfiles.d dir 2017-04-24 20:46:04 +02:00
Norbert Varzariu
ab20bea159 Merge branch 'hotfix/create_tmpfiles_d' into develop 2017-04-24 20:44:18 +02:00
Norbert Varzariu
8aba7d0782 Merge branch 'hotfix/create_tmpfiles_d'
- create tmpfiles.d dir on hosts without systemd
2017-04-24 20:43:57 +02:00
Norbert Varzariu
a774e8b360 create /etc/tmpfiles.d dir on OS without systemd 2017-04-24 20:43:49 +02:00
Norbert Varzariu
02b61e2180 Merge branch 'release/1.2.2' into develop 2017-04-24 20:08:50 +02:00
Norbert Varzariu
063df85094 Merge branch 'release/1.2.2'
- fix issue#12: add /etc/tmpfiles.d/rsnapshot.conf to create run dir
  after reboot
2017-04-24 20:07:49 +02:00
8 changed files with 44 additions and 22 deletions

View File

@@ -5,17 +5,16 @@ cache: bundler
matrix: matrix:
fast_finish: true fast_finish: true
include: include:
- rvm: 2.1 - rvm: 2.3
env: PUPPET_GEM_VERSION="~> 4.0" env: PUPPET_GEM_VERSION="~> 4.0"
script: "bundle exec rake validate" script: "bundle exec rake validate"
- rvm: 2.1 - rvm: 2.3
env: PUPPET_GEM_VERSION="~> 4.0" env: PUPPET_GEM_VERSION="~> 4.0"
script: "bundle exec rake spec SPEC_OPTS='--format documentation'" script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
- rvm: 2.1 - rvm: 2.3
env: PUPPET_GEM_VERSION="~> 4.0" env: PUPPET_GEM_VERSION="~> 4.0"
script: "bundle exec rake beaker" script: "bundle exec rake beaker"
services: docker services: docker
sudo: required sudo: required
notifications: notifications:
email: false email: false

View File

@@ -329,7 +329,7 @@ Default is:
monthly => { monthly => {
minute => '0..59', minute => '0..59',
hour => '0..23', # you could also do: ['21..23','0..4','5'], hour => '0..23', # you could also do: ['21..23','0..4','5'],
monthday => '0..28', monthday => '1..28',
month => '*', month => '*',
weekday => '*', weekday => '*',
}, },

View File

@@ -190,6 +190,8 @@ class rsnapshot::config (
# 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])
$cmd_rsnapshot = pick($rsnapshot::cmd_rsnapshot, $rsnapshot::params::config_cmd_rsnapshot)
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,
@@ -197,12 +199,12 @@ class rsnapshot::config (
} }
$backup_levels.each |String $level| { $backup_levels.each |String $level| {
$mailto = $real_cron[mailto] $mailto = $real_cron[mailto]
$minute = rand_from_array($real_cron[$level][minute], "${host}.${level}.minute") $minute = rand_from_array($real_cron[$level][minute], "${host}.${level}.minute")
$hour = rand_from_array($real_cron[$level][hour], "${host}.${level}.hour") $hour = rand_from_array($real_cron[$level][hour], "${host}.${level}.hour")
$monthday = rand_from_array($real_cron[$level][monthday], "${host}.${level}.monthday") $monthday = rand_from_array($real_cron[$level][monthday], "${host}.${level}.monthday")
$month = rand_from_array($real_cron[$level][month], "${host}.${level}.month") $month = rand_from_array($real_cron[$level][month], "${host}.${level}.month")
$weekday = rand_from_array($real_cron[$level][weekday], "${host}.${level}.weekday") $weekday = rand_from_array($real_cron[$level][weekday], "${host}.${level}.weekday")
concat::fragment { "${host}.${level}": concat::fragment { "${host}.${level}":
target => $cronfile, target => $cronfile,

View File

@@ -13,7 +13,11 @@ class rsnapshot::install {
# ensure run directory exists (systemd clears /var/run, so rsnapshot can't create PID files after reboot - issue#12) # ensure run directory exists (systemd clears /var/run, so rsnapshot can't create PID files after reboot - issue#12)
$lockpath = pick($rsnapshot::lockpath, $rsnapshot::params::config_lockpath, '/var/run/rsnapshot') $lockpath = pick($rsnapshot::lockpath, $rsnapshot::params::config_lockpath, '/var/run/rsnapshot')
$tmpfiles_d = '/etc/tmpfiles.d' $tmpfiles_d = '/etc/tmpfiles.d'
file { "${tmpfiles_d}":
ensure => directory,
}
file { "${tmpfiles_d}/rsnapshot.conf": file { "${tmpfiles_d}/rsnapshot.conf":
ensure => present, ensure => present,
content => "D ${lockpath} 0755 root root -", content => "D ${lockpath} 0755 root root -",

View File

@@ -3,14 +3,18 @@
# default params # default params
class rsnapshot::params { class rsnapshot::params {
$hosts = undef $hosts = undef
$conf_d = '/etc/rsnapshot' # the place where the host specific configs are stored $conf_d = $::osfamily ? {
'FreeBSD' => '/usr/local/etc/rsnapshot', # the place where the host specific configs are stored
default => '/etc/rsnapshot,' # the place where the host specific configs are stored
}
$config_backup_user = 'root' $config_backup_user = 'root'
$package_name = 'rsnapshot' $package_name = 'rsnapshot'
$package_ensure = 'present' $package_ensure = 'present'
$cron_service_name = $::osfamily ? { $cron_service_name = $::osfamily ? {
'RedHat' => 'crond', 'RedHat' => 'crond',
'Debian' => 'cron', 'Debian' => 'cron',
default => '', 'FreeBSD' => 'cron',
default => '',
} }
$manage_cron = true $manage_cron = true
$cron_dir = '/etc/cron.d' $cron_dir = '/etc/cron.d'
@@ -20,11 +24,21 @@ class rsnapshot::params {
$config_check_mk_job = false $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 = $::osfamily ? {
'FreeBSD' => '/usr/local/bin/rsync',
default => '/usr/bin/rsync',
}
$config_cmd_ssh = '/usr/bin/ssh' $config_cmd_ssh = '/usr/bin/ssh'
$config_cmd_logger = '/usr/bin/logger' $config_cmd_logger = '/usr/bin/logger'
$config_cmd_du = '/usr/bin/du' $config_cmd_du = '/usr/bin/du'
$config_cmd_rsnapshot_diff = '/usr/bin/rsnapshot-diff' $config_cmd_rsnapshot = $::osfamily ? {
'FreeBSD' => '/usr/local/bin/rsnapshot',
default => '/usr/bin/rsnapshot',
}
$config_cmd_rsnapshot_diff = $::osfamily ? {
'FreeBSD' => '/usr/local/bin/rsnapshot-diff',
default => '/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 = 'rsnapshot_'
@@ -96,7 +110,7 @@ class rsnapshot::params {
monthly => { monthly => {
minute => '0..59', minute => '0..59',
hour => '0..23', # you could also do: ['21..23','0..4','5'], hour => '0..23', # you could also do: ['21..23','0..4','5'],
monthday => '0..28', monthday => '1..28',
month => '*', month => '*',
weekday => '*', weekday => '*',
}, },

View File

@@ -1,6 +1,6 @@
{ {
"name": "loomsen-rsnapshot", "name": "loomsen-rsnapshot",
"version": "1.2.2", "version": "1.2.4",
"author": "loomsen", "author": "loomsen",
"summary": "Configures rsnapshot.", "summary": "Configures rsnapshot.",
"license": "Apache-2.0", "license": "Apache-2.0",
@@ -15,7 +15,7 @@
"dependencies": [ "dependencies": [
{ "name": "puppetlabs-stdlib","version_requirement": ">= 1.0.0" }, { "name": "puppetlabs-stdlib","version_requirement": ">= 1.0.0" },
{ "name": "stahnma-epel","version_requirement": ">= 1.0.0" }, { "name": "stahnma-epel","version_requirement": ">= 1.0.0" },
{ "name": "puppetlabs-concat","version_requirement": ">= 2.0.0 < 3.0.0" } { "name": "puppetlabs-concat","version_requirement": ">= 2.0.0" }
], ],
"operatingsystem_support": [ "operatingsystem_support": [
{ {

View File

@@ -28,6 +28,9 @@ describe 'rsnapshot' do
end end
end end
context 'files provisioned' do context 'files provisioned' do
describe file('/etc/tmpfiles.d') do
it { should be_directory }
end
describe file('/etc/tmpfiles.d/rsnapshot.conf') do describe file('/etc/tmpfiles.d/rsnapshot.conf') do
it { is_expected.to exist } it { is_expected.to exist }
its(:content) { is_expected.to match 'D /var/run/rsnapshot 0755 root root -' } its(:content) { is_expected.to match 'D /var/run/rsnapshot 0755 root root -' }

View File

@@ -1 +1 @@
<%= @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 %> <%= @minute %> <%= @hour %> <%= @monthday %> <%= @month %> <%= @weekday %> root<% if scope['rsnapshot::check_mk_job'] == true -%> mk-job rsnapshot_<%= @host %>_<%= @level %><% end -%> <%= @cmd_rsnapshot %> -c <%= @config %> <%= @level %>