mirror of
https://github.com/krislamo/puppet-rsnapshot
synced 2024-11-10 00:00:35 +00:00
Merge branch 'hotfix/create_tmpfiles_d'
- create tmpfiles.d dir on hosts without systemd
This commit is contained in:
commit
8aba7d0782
@ -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 -",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "loomsen-rsnapshot",
|
"name": "loomsen-rsnapshot",
|
||||||
"version": "1.2.2",
|
"version": "1.2.3",
|
||||||
"author": "loomsen",
|
"author": "loomsen",
|
||||||
"summary": "Configures rsnapshot.",
|
"summary": "Configures rsnapshot.",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
Loading…
Reference in New Issue
Block a user