1
0
mirror of https://github.com/jordansissel/fpm synced 2024-12-22 00:34:15 +01:00
fpm/templates/puppet/package/remove.pp.erb
Jordan Sissel 4db6f46088 - some code cleanup
- source rpm => target puppet works now
2011-06-20 23:00:18 -07:00

14 lines
277 B
Plaintext

class <%= name %>::package::remove {
$version = "<%= version %>"
$iteration = "<%= iteration %>"
fail("DO NOT USE THIS. IT IS NOT WELL DEFINED YET.")
file {
<% paths.each do |path| -%>
"<%= fixpath(path) %>":
ensure => absent;
<% end # paths.each -%>
}
}