diff options
author | Micah Anderson <micah@riseup.net> | 2013-02-12 11:14:32 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-02-12 11:14:32 -0500 |
commit | 05b4a4d9d6ddb594ffa900192ad0ad714957663f (patch) | |
tree | 2a24f3b6ecf55e8f8265cf7b9aa0e86c5563638b /puppet/modules/try/manifests | |
parent | 1a2789d084c3c2beccb97726b8799cb194a634fd (diff) | |
parent | 102af94df02decef888bac09748dbac6773dedd6 (diff) |
Merge remote-tracking branch 'origin/develop' into bundle-and-precompile-as-user
Diffstat (limited to 'puppet/modules/try/manifests')
-rw-r--r-- | puppet/modules/try/manifests/file.pp | 51 | ||||
-rw-r--r-- | puppet/modules/try/manifests/init.pp | 3 |
2 files changed, 54 insertions, 0 deletions
diff --git a/puppet/modules/try/manifests/file.pp b/puppet/modules/try/manifests/file.pp new file mode 100644 index 00000000..406c0b7a --- /dev/null +++ b/puppet/modules/try/manifests/file.pp @@ -0,0 +1,51 @@ +# +# like built-in type "file", but gets gracefully ignored if the target does not exist or is undefined. +# +# /bin/true and /usr/bin/test are hardcoded to their paths in debian. +# + +define try::file ( + $ensure = undef, + $target = undef, + $restore = true) { + + if $target != undef { + exec { "check_${name}": + command => "/bin/true", + onlyif => "/usr/bin/test -e '${target}'", + loglevel => info; + } + file { "$name": + ensure => $ensure, + target => $target, + require => Exec["check_${name}"], + loglevel => info; + } + } + + # + # if the target 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 == 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, + loglevel => info; + } + } else { + exec { "restore_${name}": + unless => "/usr/bin/test -e '${target}'", + command => $command, + cwd => $file_dirname, + loglevel => info; + } + } + } +} diff --git a/puppet/modules/try/manifests/init.pp b/puppet/modules/try/manifests/init.pp new file mode 100644 index 00000000..1d2108c9 --- /dev/null +++ b/puppet/modules/try/manifests/init.pp @@ -0,0 +1,3 @@ +class try { + +} |