Dave Alden
2013-Mar-03 00:09 UTC
[Puppet Users] scope.compiler.classlist.include not working as expected?
Hi, I''ve been trying to clean up my nodes.pp file, and I broke my puppet installation. :) What I have is a tcpwrappers module that has the following in the hosts.allow template: <% if scope.compiler.classlist.include?("tftp") then %>in.tftpd: ALL<% end %> The following works as I would expect (the "in.tftpd: ALL" line is in hosts.allow): node default { if ($hostname == ''toolbox'') { class {''tftp'': } } class {''tcpwrappers'': stage => ''post'' } } However, the following does not (even though the tcpwrappers module does run after the tftp module): node ''toolbox'' { class {''tftp'': } } node default { class {''tcpwrappers'': stage => ''post'' } } Help? ...dave -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
Stephen Gran
2013-Mar-03 07:43 UTC
Re: [Puppet Users] scope.compiler.classlist.include not working as expected?
Hi, Your problem is that node default is never matched. You could say node toolbox inherits default { ... } Or you could stop hurting yourself, and use something like concat to manage hosts.allow. Then the tftp module could contribute a line to the file when it''s included. Cheers, On Sat, 2013-03-02 at 19:09 -0500, Dave Alden wrote:> Hi, > I''ve been trying to clean up my nodes.pp file, and I broke my puppet > installation. :) What I have is a tcpwrappers module that has the > following in the hosts.allow template: > > <% if scope.compiler.classlist.include?("tftp") then %>in.tftpd: ALL<% > end %> > > The following works as I would expect (the "in.tftpd: ALL" line is in > hosts.allow): > > node default { > if ($hostname == ''toolbox'') { > class {''tftp'': } > } > class {''tcpwrappers'': stage => ''post'' } > } > > However, the following does not (even though the tcpwrappers module > does run after the tftp module): > > node ''toolbox'' { > class {''tftp'': } > } > > node default { > class {''tcpwrappers'': stage => ''post'' } > } > > > Help? > > ...dave > > > > -- > You received this message because you are subscribed to the Google > Groups "Puppet Users" group. > To unsubscribe from this group and stop receiving emails from it, send > an email to puppet-users+unsubscribe@googlegroups.com. > To post to this group, send email to puppet-users@googlegroups.com. > Visit this group at http://groups.google.com/group/puppet-users?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > >-- Stephen Gran Senior Systems Integrator - guardian.co.uk Please consider the environment before printing this email. ------------------------------------------------------------------ Visit guardian.co.uk - website of the year www.guardian.co.uk www.observer.co.uk www.guardiannews.com On your mobile, visit m.guardian.co.uk or download the Guardian iPhone app www.guardian.co.uk/iphone and iPad edition www.guardian.co.uk/iPad Save up to 32% by subscribing to the Guardian and Observer - choose the papers you want and get full digital access. Visit guardian.co.uk/subscribe --------------------------------------------------------------------- This e-mail and all attachments are confidential and may also be privileged. If you are not the named recipient, please notify the sender and delete the e-mail and all attachments immediately. Do not disclose the contents to another person. You may not use the information for any purpose, or store, or copy, it in any way. Guardian News & Media Limited is not liable for any computer viruses or other material transmitted with or as part of this e-mail. You should employ virus checking software. Guardian News & Media Limited A member of Guardian Media Group plc Registered Office PO Box 68164 Kings Place 90 York Way London N1P 2AP Registered in England Number 908396 -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.