search for: geppetto

Displaying 15 results from an estimated 15 matches for "geppetto".

2011 Sep 19
1
Announcement: Geppetto 2.0.0 released
The 2.0.0 release of Geppetto is available as download and updates from within Geppetto for all users of 1.0.x. Please see the FAQ at: http://cloudsmith.github.com/geppetto/faq.html for information if you run into problems updating. Checkout http://cloudsmith.github.com/geppetto/faq.html#2011/06/28/how-do-i-update if you ne...
2011 Jun 20
3
Geppetto is ready
Geppetto 1.0 is released and ready for download. We want all the feedback we can get, so try it out and let us know what you think! Full story at: http://cloudsmith.github.com/geppetto/ If you haven’t been following the project, Geppetto is an integrated toolset for working with Puppet modules and manif...
2013 Oct 30
1
Geppetto with Subversion
I''m trying to use Geppetto 4 to develop puppet modules and check them in and out of subversion. I''ve got a subversion repositories setup via web dav. The Cloudsmith FAQ seems a bit vague. I''ve not used Eclipse much at all and am not sure how the subversion integration works. I saw a really cool vide...
2013 Dec 17
1
Geppetto complains about uninitialized variables in reduce function
...nts = [''env1'', ''env2'', ''env3''] $env_message = $valid_environments.reduce |$message, $env| { "${message}, ${env}" } It works at run-time (Puppet 3.2.4 standalone with "--parser=future"). However in Eclipse (v4.3.1), Geppetto (v4.0) shows these errors: Reference to not yet initialized variable: env'' Reference to not yet initialized variable: message'' The workspace Puppet target version is set to "future". Is there another syntax I could use to make Geppetto happy or is this...
2012 Jul 26
2
Please send me your puppet formatting puzzles...
Hi, I have been working on a new puppet code formatter for Geppetto for some time, and it is now starting to work quite well. The plan is to release it in Geppetto 3.0. If you want to, you can help by sending "formatting puzzles" - i.e. "given input x, produce formatted result y". I am esp. looking for code where it is impossible to follow...
2012 Feb 17
8
Puppet syntax check for Komodo Edit
Hi folks, Recently I''ve been using a MacBook Pro (Lion) as a workstation, I''m feeling good even if still missing some tool (coming from Ubuntu environment). I''d like to have a cross platform IDE with basic Puppet syntax highlight, so far the one that seems to better fit my needs is Komodo Edit v7, that is mentioned here:
2012 Jul 09
3
puppet 3.0.0 and hiera
Hi, If I have understood it correctly, puppet 3.0.0 will include / require hiera. In order to add support for hiera directly in Geppetto I downloaded the puppet 3.0.0rc tarball expecting to find the puppet-hiera functions, but they where not there. What is the expected packaging going to be when 3.0.0 is released? Where should I expect the hiera "parser functions" to be located? (For now I can compose the result manual...
2011 Dec 19
7
When the lint accumulates...
So some of you may be aware that Tim Sharpe from GitHub wrote a Puppet linting tool: $ gem install puppet-lint $ puppet-lint mymanifest.pp Source: https://github.com/rodjek/puppet-lint The linting tool checks Puppet code for "best practice" based on the Puppet Labs Style Guide: http://docs.puppetlabs.com/guides/style_guide.html A lot of us have been using puppet-lint (and puppet
2013 Feb 20
1
Announce: Module puppetlabs/postgresql 2.1.0 Available
...eter support to the ''postgresql'' class 2013-01-21 - Michael Arnold <github@razorsedge.org> * Add a class for install the packages containing the PostgreSQL JDBC jar 2013-02-06 - fhrbek <filip.hbrek@gmail.com> * Coding style fixes to reduce warnings in puppet-lint and Geppetto 2013-02-10 - Ken Barber <ken@bob.sh> * Provide new defined resource for managing pg_hba.conf 2013-02-11 - Ken Barber <ken@bob.sh> * Fix bug with reload of Postgresql on Redhat/Centos 2013-02-15 - Erik Dalén <dalen@spotify.com> * Fix more style issues to reduce warnings in puppe...
2012 Oct 15
3
Change Tab behavior in 3.0+
Hey all, I have a question regarding the choice to move to spaces (rather than tabs) in the editor. May I ask the reasoning behind this? Furthermore, is there a way to revert to the ''old style'' that used tabs instead? I prefer this, as it makes the code look cleaner. -- You received this message because you are subscribed to the Google Groups "Puppet Users"
2013 May 02
10
What do YOU do to catch undefined variables
I''m still a puppet newbie and these days I''m struggling with undefined variables. At least once a week I hit an error message like this: Error: Failed to apply catalog: '''' is not qualified and no path was specified. Please qualify the command or specify a path. IMO, the core issue is that Puppet has no mechanism for reporting read attempts on
2011 Dec 19
4
Learn from MY Mistake: "false" != false
Sharing my stoopid mistake in the hopes of saving someone else the same grief: I had a boolean toggle that was not performing as expected. Long story short: I had put quotes around the word "false" class { ''foo'' : boolFlag => "false" } was coming up TRUE To fix it, lose the quotes class { ''foo'' : boolFlag => false } “Sometimes I
2013 Jan 11
13
Profiles, Hiera, and create_resources('class','...')
Hi all, We''ve recently started exploring the role / profile / component module described by Craig Dunn in his blog here: http://www.craigdunn.org/2012/05/239/ and discussed on the list the other day. As I was implementing this for a profile using the apache module, I realized that I could make another refinement to our approach by using
2012 Oct 04
3
Need help with rspec-puppet
Hello Everyone, I am fairly new to puppet and I would like to run som unit tests. I hope rspec is the right tool for it. Unfortunately, after setting it up, when I try to execute it I receive the following error: Failures: 1) helloworld Failure/Error: it { should include_class(''helloworld'') } Puppet::Error: Error converting value for param
2011 Nov 16
11
What is the offical variable scope best practice?
I read the guide at http://docs.puppetlabs.com/guides/scope_and_puppet.htmland others'' mail, i am a little confused now, below is my understanding: 1. top scope only refers to site.pp, not include node definitions and facts. 2. in puppet class, using variables not local, must specify the namespace, like $class::variable, if it''s a top scope variable or a fact variable or a