> > > Excellent analysis, you've almost solved it. > > https://github.com/kemra102/puppet-githubapi/blob/master/lib/puppet/provider/github_repo/default.rb#L78 > > returns the value from the API. This has to match what puppet receives > from the manifest. Adding '.to_sym' or something similar should fix this. > > > Cheers, D. >
Thanks that pointed me in the right direction, turns out FalseClass & TrueClass don't have .to_sym but doing .to_s.to_sym works despite how dirty it feels. -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/b608b81f-f49c-4bf4-ae5a-9b4551e610c0%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
