Questions tagged [puppet-enterprise]

Puppet Enterprise is the commercially supported and packaged release of Puppet.

Puppet Enterprise is the commercially supported and packaged release of Puppet.

It consists of a stack of various Puppet tools:

A Basic Split Installation

Related Tags

250 questions
9
votes
3 answers

Certificate Verify Failed [unable to get local issuer certificate for CN=puppetmaster.example.com]

When trying to run the following command from puppet agent node: puppet agent --test --verbose The following error was prompted Error: certificate verify failed [unable to get local issuer certificate for CN=puppetmaster.example.com] I have…
shubham singh
  • 511
  • 1
  • 5
  • 16
7
votes
1 answer

How to store linux command output into a variable in puppet

Is it possible to store a linux command result in variable? I am trying to store an encrypted value in a variable. To encrypt I am using base64 command. To store it in variable, I am using generate method. But I am not able to store a value.…
ArunRaj
  • 1,780
  • 2
  • 26
  • 48
6
votes
1 answer

How to pass two or more variables to Define in Puppet

I struck to pass multiple arguments in define. The following is my code. I would like to pass two array inside the define, But I'm able to pass only one as like the following. class test { $path = [$path1,$path2] $filename =…
ArunRaj
  • 1,780
  • 2
  • 26
  • 48
6
votes
1 answer

Does Puppet Master-Client certificate ever expire?

During initial configuration of the Puppet agent, the agent obtains a security certificate signed by an authority recognized by the master -- most often the master itself -- with which it will subsequently identify itself to the master. Does this…
James
  • 193
  • 2
  • 4
  • 15
5
votes
2 answers

How can I check if the Puppet Enterprise server/master is installed and working correctly?

Puppet Enterprise appeared to be installed on my ubuntu 14.04 server: root@puppet:/# puppet --version 3.8.5 (Puppet Enterprise 3.8.4) However, the puppet service is not running: root@puppet:/# service puppet status puppet: unrecognized service The…
AD7
  • 105
  • 1
  • 11
4
votes
3 answers

Failed to launch the browser process! Ubuntu

Puppeter not working on Ubuntu server. This is my code. const browser = await puppeteer.launch({ args: ["--no-sandbox", "--disable-setuid-sandbox", "--disable-gpu"], headless: false, executablePath:…
4
votes
1 answer

Execute a shell command/script using puppet

I want to execute a shell command/script using puppet only when a file exists in particular path. For example if a text file test.txt exists in /root path then puppet will execute shell script, otherwise puppet didn't execute any commands
AjayKumar
  • 59
  • 1
  • 1
  • 5
4
votes
1 answer

Detecting if windows service is already installed using puppet exec

I have below exec resource which is used to install a window service. I want to it to execute only if the window service is not installed. So I use the onlyif command but the command is not working. It is running the install all the time: exec {…
Praneeth
  • 2,527
  • 5
  • 30
  • 47
4
votes
0 answers

Puppet clients applying empty classes (with default parameters)

The problem: Servers running puppet agent in my environment are receiving empty [classes] (without parameters), instead of the expected parameters stored in their Hiera document. This causes puppet modules to run with null parameters which in turn…
Oz Bar-Shalom
  • 1,747
  • 1
  • 18
  • 33
3
votes
1 answer

Puppet - while installing puppet dashboard, a rubygems(rake) dependency is blocking

I am trying to install puppet-dashboard on a linux machine (EL 6). But this installation is blocked by a dependency on rubygems(rake). But i have this already installed on my machine. please find the below details which might be helpful for showing…
Vasanth Nag K V
  • 4,860
  • 5
  • 24
  • 48
3
votes
1 answer

Windows Puppet agent does not connect to the AWSOpsWorks Puppet Enterprise master

I have created the puppet master using aws opsworks. and I am able to add ami linux nodes automatically to the puppet master. I am having issues when I tried to to add a windows 64 bit node to my puppet master by following this link…
nad87563
  • 3,672
  • 7
  • 32
  • 54
3
votes
1 answer

can't use different environment for puppet agent

I have an agent/master setup. I have created a new environment in /etc/puppetlabs/code/environments/ called master. The content of environment.conf for the master directory environment is modulepath = site:modules:$basemodulepath manifest =…
awwwd
  • 121
  • 2
  • 9
3
votes
1 answer

Puppet splay & splaylimit explained?

I'm looking for someone to explain the usage of splay & splaylimit within Puppet configuration. The documentation on the Puppet site itself is limited to say the least. I am suffering from thundering herd on my master, i.e. a number of agents…
LLB3000
  • 45
  • 2
  • 8
3
votes
1 answer

Puppet agent not able download code from Git

I have puppet master setup on ubuntu 14.4 VM. Puppet agent as Windows 8. here is my site.pp file. package { 'git' : ensure => present, } vcsrepo { "C:\\GitCode": ensure => present, provider => git, source => "git://.git", } It will…
pm86
  • 230
  • 2
  • 15
3
votes
1 answer

python 2.7.5 requests and certificate verify failed

I am having trouble using python's request package to submit GET request to Puppet 3.7's REST API. I have looked at this documentation here: http://docs.python-requests.org/en/latest/user/advanced/#ssl-cert-verification But I am still having…
Red Cricket
  • 9,762
  • 21
  • 81
  • 166
1
2 3
16 17