Questions tagged [puppetmaster]

Puppet is a configuration management tool (Unix & Windows) with its own Domain Specific Language (Puppet or Ruby DSL). Puppetmaster is the central server for this tool.

Puppet is a configuration management tool (Unix & Windows) with its own Domain Specific Language (Puppet or Ruby DSL). Puppetmaster is the central server for this tool.

277 questions
0
votes
1 answer

Amazon cloud provisioning using puppet & theforeman

Does puppetlabs have modules to help provision for Amazon Ec2 instances within VPC / outside VPC? Any recommendations ? I would like to launch an instance based on an AMI image. This instance should have multiple IP addresses attached to it. I would…
Diden
  • 129
  • 3
  • 12
0
votes
1 answer

Puppet: remote clients are not updated by puppetmaster

I'll start with the fact that I'm noob to Puppet, I have 2 servers; one is called puppetmaster and the other is called puppetclient. I've installed puppet-3.2.2 and created some basic nodes.pp file, the nodes.pp file includes settings for both…
Itai Ganot
  • 10,644
  • 29
  • 93
  • 146
0
votes
1 answer

Centos - cant access node from puppet dashboard

I am trying to setup puppet's dashboard to be monitor the status of my servers. With the below shown configurations, my clients (or nodes) only show up as Unreported and says Has not reported in the dashboard overview - however the node can…
0
votes
1 answer

Puppet module resource attributes

Is there a way to print the value of an attribute in a puppet module? For example, if you have a file resource: file {'myfile': path => '/this/is/my/path', ensure => present, owner => 'someuser', group => 'somegroup' } can…
Alex Nelson
  • 103
  • 1
0
votes
1 answer

Configure autosign to automatically replace certificate of reinstalled machines?

Sometimes we have to kickstart a machine multiple times before everything is alright. It becomes quite of a hassle to manually remove the SSL certificate on the Puppetmaster first, especially since not everybody has SSH access to the…
ujjain
  • 3,983
  • 16
  • 53
  • 91
0
votes
1 answer

Puppet:get real-time status of catalog evaluation and post to remote server

According to this article http://docs.puppetlabs.com/guides/puppet_internals.html There are four phases when puppet agent got a catalog from master. resource generation => relationships => evaluation => reporting Reporting As the transaction…
txworking
  • 479
  • 2
  • 6
  • 15
0
votes
1 answer

Puppet(-master) 3.1 after wheezy upgrade

Today I've updated a Puppet client and a Puppet master to Wheezy. For some reason, Puppet client was updated to version 3.1 but the master stayed at 2.7. So I've installed the latest stable version for the master directly from Puppetlabs, and both…
Tuinslak
  • 1,465
  • 8
  • 32
  • 56
0
votes
1 answer

How to have Puppet enforce enabled reporting?

For Puppet clients to report results back to the master server, "report = true" needs to be in the "[agent]" section of the client's puppet.conf. But how can I get Puppet to enforce that? It's disabled by default, but all the resources I can find…
Moduspwnens
  • 747
  • 1
  • 7
  • 18
0
votes
1 answer

How do I create and exception to a puppet catalog?

How do I create and exception to a puppet catalog? Specifically I want to use Puppet to manage a one-off set of firewall rules, to be combined with the default ruleset. This is for a single legacy system only, it should get the default set of rules,…
TheWellington
  • 199
  • 2
  • 6
0
votes
2 answers

Transfer file between puppet-managed servers

We have a server (managed by puppet) that generates a file once per day. Is there an approach I could use to make puppet do the following: Recognize that the file is there on server A Upload it to the puppet master Ensure its existence on…
brooks94
  • 167
  • 2
  • 5
0
votes
1 answer

Package(Java.ActiveMQ etc..) Manual Installation Issues

I am trying to install Java or ActiveMQ manually into my agent server from master, Installation is working fine for me, but the issues which I am facing is whenever I run puppet agent -t in my agent ActiveMQ installing again and again,basically…
Jithin
  • 1
0
votes
1 answer

How to include a list of files, each with a virtual resource declaration

In my Puppet (2.6) module definition, I create user accounts by declaring them as virtual resources; today they take the form @useraccount('name'=>'joe') and @useraccount('name'=>'mary') within a single class, which then gets include-ed when I want…
mrisher
  • 401
  • 1
  • 5
  • 12
0
votes
1 answer

Puppet - Possible to use software design patterns in modules?

As I work with puppet, I find myself wanting to automate more complex setups, for example vhosts for X number of websites. As my puppet manifests get more complex I find it difficult to apply the DRY (don't repeat yourself) principle. Below is a…
Mike Purcell
  • 1,708
  • 7
  • 32
  • 54
0
votes
1 answer

Could not evaluate: certificate verify failed while using ssl proxy

One of our machines was recently put behind an SSL proxy and since then I can't connect to puppet with "Could not evaluate: certificate verify failed." I have checked that the dates match, regenerated the certificates but to no avail. Debugging the…
Onitlikesonic
  • 1,201
  • 5
  • 17
  • 24
0
votes
1 answer

Cant use groups in a virtual user

I am trying to set up some virtual users in puppet. The basic users work fine, but for some reason when I try to add "groups" to the user definition the run fails. Here is the basic virtual user config... class users::virtual { define localuser…
jdehnert
  • 1
  • 1