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
1
vote
2 answers

Puppet sed and replace

Im learning Puppet and currently trying to install tomcat. While trying to replace the Catalina home on the startup.sh using sed in the exec block, Im facing the below error. Error: Could not retrieve catalog from remote server: Error 400 on …
Goku
  • 482
  • 1
  • 7
  • 22
1
vote
0 answers

Custom Report Processor with Puppet 5

I am trying to integrate this (https://github.com/shamil/puppet-zabbix-reports/) custom reporting module with puppet 5 master-agent setup. But only the Puppet agent process item is showing (after changing the regular expression in tempalte). Other…
awwwd
  • 121
  • 2
  • 9
1
vote
1 answer

Puppet installing software defined in another node's definition

I am using Puppet Enterprise. # puppet master --version 4.8.1 Manifests dir (/etc/puppetlabs/code/environments/production/manifests) contains the following: iis.pp rds.pp site.pp I have a node definition in site.pp as shown below: # cat…
Technext
  • 7,887
  • 9
  • 48
  • 76
1
vote
2 answers

Disable IPv6 on Windows Server 2008 R2 using Puppet

I am using the Puppet module windows_disable_ipv6 but it seems it's not really working. # cat /etc/puppetlabs/code/environments/production/manifests/site.pp node my_instance.net { include windows_disable_ipv6 } # cat…
Technext
  • 7,887
  • 9
  • 48
  • 76
1
vote
1 answer

Unable to connect to Enterprise Puppet server using Windows agent

I have setup Puppet server on CentOS Linux 7 (Core). # /opt/puppetlabs/bin/puppetserver --version puppetserver version: 2016.5.0.11 I have installed Enterprise Puppet agent on Win Server 2008 R2 Enterprise (64-bit). C:\Users\Administrator>puppet…
Technext
  • 7,887
  • 9
  • 48
  • 76
1
vote
1 answer

How to check foreman collecting facts from all hosts

Want to write automation script to ensure foreman collecting facts from all nodes How to ensure foreman having facts from all nodes ?
Satender346
  • 352
  • 1
  • 3
  • 15
1
vote
1 answer

What does the symbol @ mean in Puppet output after applying a catalog

I am applying a catalog in a machine and in the first run it returns the following output (just a part). I understand that lines that begin with the less symbol were removed and the ones that start with the plus symbol were added, but what does the…
EGS
  • 409
  • 4
  • 23
1
vote
1 answer

Getting dependency cycle when using michaeltchapman/galera

I have installed https://forge.puppet.com/michaeltchapman/galera and I use in this manifest I wrote like so ... class { '::galera': galera_servers => $galera_servers, galera_master => $galera_master, vendor_type => $vendor_type, …
Red Cricket
  • 9,762
  • 21
  • 81
  • 166
1
vote
1 answer

Unable to get git branch from puppet agent

I've the following command to execute puppet agent in a server. Its puppet master contains a puppetfile which contains several modules stored in different git repositories. Well, I need to execute puppet agent pointing to the correct git branch to…
David M.
  • 131
  • 1
  • 12
1
vote
1 answer

Why isn't the host auto pulling the changes?

My host isn't pulling the changes automatically(at-least once in 30 minutes). I have to manually force it every time to see the changes. Am I missing any parameter/resource description in init.pp? My init.pp looks like below: class checkout { file {…
James
  • 193
  • 2
  • 4
  • 15
1
vote
1 answer

Facing issues with File resouce with folder name called "environment" in puppet

I am trying to recursively transfer files from puppet master to my agents with inbuilt fileservers. I am having folder name called "environment" which is not been transferred to my agents. Instead I am getting the following errors Error: Could not…
1
vote
1 answer

Getting different hash value with puppet exec

When I have executed the following command I am getting the perfect hash value which i have expected. /opt/Jboss/dc/bin/add-user.sh --silent --user testuser --password testuser*1 --realm ManagementRealm Hash Logic =…
ArunRaj
  • 1,780
  • 2
  • 26
  • 48
1
vote
1 answer

How to install and run a script in Puppet

I am new to Puppet..I am trying to install a shell script and exceute it using Puppet. The shell script after running creates another conf file and places in a specific location /usr/local/conf/app.conf. How can I write a puppet code to execute this…
Mark
  • 31
  • 1
  • 1
  • 7
1
vote
1 answer

How to write a wrapper class / Override configuration in pre existing Puppet Class

I would like to override the values of another class in another Puppet Modules. Please help me by suggesting ways. Existing Class : ( Module Name : MySQL ) class mysql::server ( $config_file = $mysql::params::config_file, $includedir…
ArunRaj
  • 1,780
  • 2
  • 26
  • 48
1
vote
2 answers

Error Duplicate declaration already exists Puppet

I declared this in mon.pp file $pem_file_path = "/etc/ssl/private/${::environment}.pem" $defaults = hiera_hash('defaults') $subscription_id = $defaults['subscription_id'] $pem_file_content =…
Dheeraj
  • 297
  • 1
  • 5
  • 17