- http://andrewbunday.co.uk/2012/12/04/masterless-puppet-wrapper/
- http://semicomplete.com/presentations/puppet-at-loggly/puppet-at-loggly.pdf.html
- https://github.com/jordansissel/puppet-examples/tree/master/masterless
- - hooks:
+ - apply patches:
- storeconfigs warning patch
- https://bugs.launchpad.net/ubuntu/+source/puppet/+bug/1313595
- sshd:
---- resource.rb.orig 2015-10-19 17:19:13.500193213 -0200
-+++ resource.rb 2015-10-19 17:19:58.972194943 -0200
+--- /usr/lib/ruby/vendor_ruby/puppet/rails/resource.rb.orig 2015-10-19 17:19:13.500193213 -0200
++++ /usr/lib/ruby/vendor_ruby/puppet/rails/resource.rb 2015-10-19 17:19:58.972194943 -0200
@@ -84,7 +84,11 @@
end
-
+
def [](param)
- super || parameter(param)
+ if param == 'id'
+ super || parameter(param)
+ end
end
-
+
# Make sure this resource is equivalent to the provided Parser resource.