1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#
# Works like the built-in type "file", but gets gracefully ignored if the target/source does not exist or is undefined.
#
# Also, if the source or target doesn't exist, and the destination is a git repo, then the file is restored from git.
#
# /bin/true and /usr/bin/test are hardcoded to their paths in debian.
#
# known limitations:
# * restore does not work for directories
#
define try::file (
$ensure = undef,
$target = undef,
$source = undef,
$owner = undef,
$group = undef,
$recurse = undef,
$purge = undef,
$force = undef,
$mode = undef,
$restore = true) {
if $target {
$target_or_source = $target
} else {
$target_or_source = $source
}
if $target_or_source != undef {
exec { "check_${name}":
command => "/bin/true",
onlyif => "/usr/bin/test -e '${target_or_source}'",
loglevel => info;
}
file { "$name":
ensure => $ensure,
target => $target,
source => $source,
owner => $owner,
group => $group,
recurse => $recurse,
purge => $purge,
force => $force,
mode => $mode,
require => $require ? {
undef => Exec["check_${name}"],
default => [ $require, Exec["check_${name}"] ]
},
loglevel => info;
}
}
#
# if the target/source does not exist (or is undef), and the file happens to be in a git repo,
# then restore the file to its original state.
#
if ($target_or_source == undef) or $restore {
$file_basename = basename($name)
$file_dirname = dirname($name)
$command = "git rev-parse && unlink '${name}'; git checkout -- '${file_basename}' && chown --reference='${file_dirname}' '${name}'; true"
debug($command)
if $target == undef {
exec { "restore_${name}":
command => $command,
cwd => $file_dirname,
require => $require ? {
undef => undef,
default => [ $require ]
},
loglevel => info;
}
} else {
exec { "restore_${name}":
unless => "/usr/bin/test -e '${target_or_source}'",
command => $command,
cwd => $file_dirname,
require => $require ? {
undef => undef,
default => [ $require ]
},
loglevel => info;
}
}
}
}
|