Re: [Puppet Users] PuppetLabs Netscaler Module

2015-07-15 Thread Matthew Ceroni
I tested out your changes. They seem to fix some of the issues but still running into others. Sorry I am not that strong of a Ruby coder. However all the rest.rb files error with the following: https://gist.github.com/cyrus-mc/2fee729114241299f6df Creating the instances of the type fails. I can

Re: [Puppet Users] PuppetLabs Netscaler Module

2015-07-14 Thread Matthew Ceroni
Hi: Thanks for making that change. I will test it out. However with the error I posted today it comes and goes. I will run it one time, and it works. Run it again and it fails with the autoload error. On Tuesday, July 14, 2015 at 11:06:58 AM UTC-7, Hunter Haugen wrote: > > That error appears

Re: [Puppet Users] PuppetLabs Netscaler Module

2015-07-14 Thread Hunter Haugen
That error appears to still be the same thing (ruby barfing on the hash argument `parent: Puppet::Provider::Netscaler` . I made https://github.com/puppetlabs/puppetlabs-netscaler/pull/157 to change all the 1.9 hashes to normal hashes, so you can give that a go and see if it works. On Tue, Jul 14,

Re: [Puppet Users] PuppetLabs Netscaler Module

2015-07-14 Thread Matthew Ceroni
I upgraded to ruby 2 that is part of Redhat 7. Now upon running I get the following error http://pastebin.com/RveUf4ca Can't autoload puppet/type/netscaler_server. Thanks -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from th

Re: [Puppet Users] PuppetLabs Netscaler Module

2015-07-13 Thread Hunter Haugen
The module is apparently using ruby >=1.9 hash syntax which is not supported by 1.8 https://github.com/puppetlabs/puppetlabs-netscaler/blob/master/lib/puppet/util/network_device/transport/netscaler.rb#L12 Whoops. You are welcome to send a patch and change all the `url: url` to `:url => url` etc, o