Tagged Questions

Puppet is a configuration management system primarily for Unix and Linux systems

learn more… | top users | synonyms

11
votes
3answers
1k views

Configuration Management for Windows

Are there any tools for windows like that *nix world has? I am looking for something like Chef or Puppet. I have found cfEngine but it still looks very *nix centric. Ideally it would be open source, ...
7
votes
1answer
775 views

Example Puppet setup for a rails stack? (nginx, varnish, thin, postgres, memcached, redis)

I'm just getting started with Puppet. The example walkthroughs and tutorials were good at helping me understand Puppet's usefulness and the basic toolset, but I'm having a hard time conceptualizing a ...
6
votes
7answers
261 views

How to automatically set up a development environment?

I have been tasked to set up a Java based development environment across multiple Windows machines. The problem is that I want to the process to be done automatically and easily on each machine so the ...
5
votes
2answers
906 views

Hosting rails on ec2

I want to deploy a rails onto amazon ec2. I've had a look at poolparty and ec2onrails but neither seem to be maintained anymore. What are people using to do this? Is it all homebrewed puppet and ...
3
votes
2answers
484 views

Puppet/Facter “Could not retrieve fact fqdn”: How to fix or circumvent?

I'm learning about puppet and trying to experiment with it on a VM at home. I'm not using a puppet server yet, just running things locally. It works okay, but every time I run puppet apply ..., I get ...
3
votes
2answers
234 views

Choosing a vagrant provisioner

Question Can anyone explain why it would be better to choose the puppet or chef vagrant provisioners, rather than the shell provisioner? Background I'm in the process of getting started with ...
3
votes
1answer
494 views

How to work with Puppet dependencies when installing Nginx 1.0.5 on Ubuntu 11.04

I'm new to Puppet and have a question about working with dependencies. I'm using Puppet to install Nginx 1.0.5 on Ubuntu 11.04. It requires adding a new apt repository since natty normally comes with ...
3
votes
2answers
582 views

Alternatives to Chef/Fabric/Puppet for Simple LAMP Development?

I've finally committed to really learning the software design process correctly in order to advance my skills and grow my business. This means embracing version control (git), setting up a ...
3
votes
1answer
654 views

undefined method get_uptime for Facter::Util::Uptime:Module (NoMethodError)

I'm trying to setup a puppet node, but rubygems doesn't seem to behave. If I run facter on the cli via it's own binary (/usr/lib/ruby/gems/1.8/gems/facter-1.5.8/bin/facter), it works fine, but if I ...
2
votes
1answer
47 views

Multiple installations of my app - how do I handle it

I have an app written in PHP, MySQL, etc. The app has a few dependencies such as beanstalkd, Solr and a few PHP extensions. For each customer we have a separate installation of the app, either on a ...
2
votes
3answers
95 views

Puppet wait for a service to be ready

I am using Puppet for machines provisioning. I have a service running in Tomcat 6 app server and another manifest being dependant on that service (sending some REST requests as part of the ...
2
votes
2answers
89 views

Why are singleton Puppet Arrays Strings in my ruby code?

I've create a custom type in Puppet (simplified for this example). If I use it like this (two items in collections)... my_type { "example1": ensure => present, collections => ["abc", ...
2
votes
1answer
77 views

What is good resource to take a look on puppet code?

Is there something like Chef's open recipes on github which is recognized by community? I am starting building system with puppet, but tutorials are not enough and stuff on github is in the late ...
2
votes
2answers
539 views

Chef and Puppet recommendations

I'd like to ask about when and in what circumstances you'd use puppet and when you'd use chef. I've also found rump which is a puppet-solo type of thing where you iterate a single server to its ...
2
votes
1answer
387 views

are there iterators and loops in puppet?

When I define(?) a resource e.g. to ensure dir structure, are there any loops available? Like that: for X in [app1,app2] do: file { '/opt/app/' + X: ensure => directory, owner ...
2
votes
0answers
217 views

Advantages of LibCloud over Puppet for provisioning servers [closed]

Why would you use LibCloud rather than Puppet for provisioning servers (besides the fact that you might prefer Python over Ruby)?
2
votes
4answers
513 views

Good tool for automatic setup and deployment of Django projects

I'm starting out as an independent web developer and I recently scared away a client by giving a quote for a rather simple site that was quite a bit higher than they expected. It was basically ...
2
votes
3answers
500 views

Puppet like syntax for python

Anyone know of any good ways to do puppet like pp files for python. Almost like config files that can inherit other configs files and also have limited logic in them like if statements and variables? ...
1
vote
1answer
52 views

puppet client server connection refused when I use puppet kick

I have very strange problem. I set up puppet client on serveral servers but have problem with one of them. When I invoke: root@www ~ # puppet agent --server puppetmaster.domain.ltd --test notice: ...
1
vote
2answers
87 views

Parsing puppet-api yaml with python

I am creating a script which need to parse the yaml output that the puppet outputs. When I does a request agains example https://puppet:8140/production/catalog/my.testserver.no I will get some yaml ...
1
vote
1answer
79 views

Separating configs from WAR/EAR for Puppet deployments

We do a lot of deployments of Java web applications to Weblogic and Jboss servers. Quite often the deployment looks like this: Copy the code and default configs to a staging directory on the ...
1
vote
1answer
129 views

Puppet error: “Could not retrieve local facts: 404 Not Found”

I'm running Puppet version 0.25.4 from Ubuntu 10.04. When I run: puppetd --test on one machine, this is the error I get: err: Could not run Puppet configuration client: Could not retrieve local ...
1
vote
1answer
55 views

Deciphering puppet output

I am very new to puppet and just trying to understand what the output is telling me. I have a very simple init.pp file for configuring the shudders file: class sudo { package { sudo: ...
1
vote
1answer
74 views

Puppet does not add my service to start up

I have this puppet module (monit) in which I declare monit service to be enabled (a.k.a to be started when the machine booted) class monit { $configdir = "/etc/monit.d" package { ...
1
vote
1answer
46 views

Tailor MCollective agent actions based on the machine's facts

Lets say I have a MCollective agent named "foo" with action "bar", in the logic of the action I want to do X when the fact "chicken" is "true", and do Y when the fact "beef" is true. Basically, how ...
1
vote
1answer
77 views

Is it possible to “assert” in Puppet?

Is there a way to assert that a variable (or more specifically, a fact) in puppet has a particular value, and to abort the installation if it doesn't? For background, here is the situation: In most ...
1
vote
3answers
435 views

A better alternative to Vagrant

We use Vagrant for dev environment automation and provisioning. It works smoothly. But sometimes, if vagrant has some problem(we faced LOT of them starting from SSH to networking config), the new ...
1
vote
1answer
93 views

how to use parametrized classes to reduce code base

I wrote puppet manifests and I use puppet to deploy my system. I am now refactoring manifests in order to make it maintainable. One of sub systems is tomcat with webapplications. I have ~10 webapps. ...
1
vote
2answers
456 views

how to source a file in puppet manifest from module

i am trying to source files from local modules in a puppet manifest: file { '/home/repowt/.crontab': ensure => present, source => 'puppet:///modules/site/crontab'; } but i get: ...
1
vote
1answer
230 views

err: Could not run Puppet configuration client: execution expired

I am using puppet 2.6.1 for both master and slave on Ubuntu 10. Client times out updating from master and returns the error: err: Could not run Puppet configuration client: execution expired This ...
1
vote
3answers
337 views

How do you pass an array to an erb template in ruby and have it iterated over?

I need some help with erb templates, I can't seem to get my head around passing an array and then iterating over it. My problem is this. I want to pass a few arrays: ` device => ["eth0", ...
1
vote
1answer
104 views

How do I remove “hidden” characters when reading a line of text in Ruby?

I am using a custom Ruby function in Puppet to read a string of text from a file. I am than comparing whatever version is read against a list of known versions to determine which config file I should ...
1
vote
2answers
253 views

Set node name in puppet to noop option

I'm using puppet and want to test it with noop, but some configuration depends on the hostname like the node types. How can I set the node name and run puppet with noop to check the node ...
1
vote
3answers
414 views

Templating MySQL's my.cnf for setup in Puppet

I have been tasked with templating MySQL's my.cnf in an attempt standardize the configuration amongst the slave databases using Puppet. Right now, I'm targeting the innodb settings. Are there ...
1
vote
3answers
397 views

reflection of erb variables

I'm using a puppet template, which does an erb interpretation of the template file. I'd like to know all the variables available to me, however, there are variables available (e.g., fqdn) that are ...
1
vote
2answers
457 views

Porting shell scripts to ruby erb templates, suggestions and advice?

I am using Puppet for automating configuration management across hosts. It can use erb templates to set up configuration files of various services like apache, postfix etc. across different hosts ...
0
votes
1answer
13 views

Using Puppet to modify files on remote server

We have a class which installs and configures OpenVPN. However, in order for the server to authenticate users, we need to create an entry in a configuration file on our radius authentication servers ...
0
votes
1answer
69 views

Execute Puppet Code depending upon service status

How can we write a puppet manifest code that identifies whether a service(httpd) is running or not on puppet clients/agents. And if not, it should start that service and send out an email ? class ...
0
votes
0answers
78 views

NFS Mounts in Puppet - Return code 32 (mount.nfs: is busy or already mounted)

We are using puppet to manage our NFS mounts on RHEL 6.1 Puppet is able to successfully mount the NFS mounts during boot time, after that every time puppet reloads, it tries to mount the already ...
0
votes
0answers
122 views

Making Perl apps portable. Build a shell script or use Puppet

I have a perl app that I maintain locally that needs to be regularly zipped up and sent over to another server that's locked down pretty tightly. The goal is to insure that the sysadmins have to ...
0
votes
2answers
56 views

Using puppet (or any thing else) instead of a bash script for an SSH based deployment

I have a custom build and deployment script which work over SSH and deploy to servers (on running MacOS). The bash script does a lot of simple things like copying files, backing up the old ones and ...
0
votes
0answers
101 views

How to configure puppet on EC2 using elastic ip [closed]

I have created a simple one server one client infrastructure on Amazon EC2 using puppet. I have allocated an elastic ip for my puppetmaster node and another one for my puppet client node. Following ...
0
votes
0answers
67 views

Regarding creation of automated instances using ubuntu UEC and puppet

I am trying to automatically create an amazon EC2 instance using ubuntu UEC 10.04LTS Lucid ami I successfully configured puppetmaster and a client manually on EC2. However, when I used user-data.yaml ...
0
votes
0answers
78 views

Puppet and upstart not being “functional” [closed]

I have a Ubuntu oneiric host running on Amazon EC2. I want to manage this and other identical hosts with Puppet. Among the things it needs to do is keep a particular custom service running, for which ...
0
votes
1answer
68 views

creating a cron-job template for Puppet

I'm pretty much a novice in speaking Ruby. I'm trying to write a template (.erb) for Puppet. My goal is to based on this variable: $c_repo = 'repo1,repo1-condb,repo2,....' to write a template, ...
0
votes
2answers
111 views

how to fix “can't convert String into Integer” after calling the split function in puppet?

how to fix the following code? $parts = split('test-test','-') notice( $parts[0] ) see: http://docs.puppetlabs.com/references/2.6.8/function.html#split for me it results in the following error: ...
0
votes
1answer
81 views

Calling Puppet from bash script

I'm trying to call puppet from a bash script and whilst it works, it causes my script to end prematurely. #!/bin/bash ... function runPuppetLocally() { echo "...running Puppet locally" exec ...
0
votes
1answer
50 views

Installing a gem has no effect (aka how to use check_puppet.rb)

I'm sure this question is an easy one for Ruby users. However for me this is a issue I can't figure out by myself. My goal is to use a script included in the Puppet archive ...
0
votes
1answer
132 views

Puppet not recognising my module

I am trying to create a custom provider for package but for some reasons I keep on getting err: Could not run Puppet configuration client: Parameter provider failed: Invalid package provider ...
0
votes
1answer
41 views

Is it possible to distribute python package in pkg_add understandable tbz format

I am trying to distribute packages in tbz format so that pkg_add can install it. I am aware that easy_install can do the same trick with egg format but I want to use puppet to install it which in turn ...

1 2