mirror of
https://github.com/krislamo/puppet-rsnapshot
synced 2024-11-10 00:00:35 +00:00
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
This commit is contained in:
parent
03c31b78c2
commit
100eafe356
@ -190,6 +190,8 @@ class rsnapshot::config (
|
||||
# create cron files for each backup level
|
||||
# merge possible cron definitions to one
|
||||
$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}":
|
||||
content => "#This file is managed by puppet\nMAILTO=${real_cron[mailto]}\n\n",
|
||||
target => $cronfile,
|
||||
|
@ -3,7 +3,10 @@
|
||||
# default params
|
||||
class rsnapshot::params {
|
||||
$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'
|
||||
$package_name = 'rsnapshot'
|
||||
$package_ensure = 'present'
|
||||
@ -20,11 +23,21 @@ class rsnapshot::params {
|
||||
$config_check_mk_job = false
|
||||
$config_cmd_cp = '/bin/cp'
|
||||
$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_logger = '/usr/bin/logger'
|
||||
$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_postexec = undef
|
||||
$config_cronfile_prefix = 'rsnapshot_'
|
||||
|
@ -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 %>
|
||||
|
Loading…
Reference in New Issue
Block a user