Quantcast
Channel: Ask Puppet: Puppet DevOps Q&A Community - RSS feed
Browsing latest articles
Browse All 75 View Live
↧

How to render a specific template (file resource) for a specific client?

What's the puppet agent command to see how a file resource would be rendered for a specific machine (w/o actually applying it --noop but seeing the diff)? Does this resource have to be in the catalog...

View Article


Lookup destination path of a file in a template.

Is it possible to determine the destination path while a template's being rendered?file { 'my_cool_file': path => '/etc/somewhere', content => template('coolmodule/coolfile.erb'), } file {...

View Article


How to make erb templates strip out carriage return characters

I'm working on Windows (using VMs) and I added some `.sh` scripts to provision, but they are all written with carriage return characters, which apparently really confuse bash, so when I try to run them...

View Article

How to generate/test a template file for rspec tests?

I've created a file resource that is using a template file as content which is generated from a automatic hiera lookup. $source_list_template = template($sources['list.template']) file {...

View Article

question on hash and referencing in template

hi, question on hash and template. if i have a hash as such: $job_hash = { 'foo' => { ensure => 'present', enabled => 1, config => template('jenkins/build-mvn-master.xml.erb') }, 'foo2'...

View Article


How do I use deeper facts in a template .erb?

I'm using Facter 3. For example in a message of the day module i'm using this syntax in my .erb template: - This system is running: <%= @operatingsystem %> (displays "CentOS") - Filesystem Type:...

View Article

Failed to apply catalog: Parameter source failed on Firewall

Hi there! How i can set source interface address in firewall rule? I try it: firewall { '000 her': chain => 'PREROUTING', table => 'raw', source => '! <%= ipaddress_eth0 %>', jump =>...

View Article

Can't successfully build module

I've tried every tutorial I can find. I can't get puppet to successfully build a very basic module that calls a class and deploys a file from template. I'm running RHEL 7 with Puppet 3.6.2 from the...

View Article


Puppet Duplicate declaration error using file template and concat

While extending a puppet module which should manage `/etc/network/interfaces` I am facing the following problem: The old module just reads some vars from hiera and creates the file with one interface...

View Article


refreshonly on exec resource not working on file change

I have two config files and based on that I want to refresh a script(stop and start) whenever there is a change in either of the files. Also, the script should not get refreshed if there is no change...

View Article

Access hiera array element in erb template

So, I have check_command check_nrpe!check_ntp_drift!<%= env['ntpservers'][0] %> in a template .erb file. This gives the error Function Call, Failed to parse template...

View Article

Installing a package doesn't work. Template values don't get passed to the...

I created my own module and there's multiple issues that I can't fix. I know there's modules in the forge for this, but I can't get any of them to work and I simply need the agent to install. 1) The...

View Article

Puppet Apache module : template for /etc/apache2/conf-available/security.conf

Hello, even after reading the full https://github.com/puppetlabs/puppetlabs-apache page and googeling around i did not find answer to my questions and therefore i hope some of you could help. On Ubuntu...

View Article


Where is the proper place to put templates using roles and profiles practices?

I'm trying to create a template for use by the motd class in my base profile. I'm not quite sure where I should put it though. I'm also having trouble referencing the path from with the class. Here is...

View Article

Set File content via Hiera

Hi, I am looking for the syntax to set the content for a File resource from hiera. Specifically I want to set the template being used: # Puppet class test ( $file_content = undef, ){...

View Article


Copy multiple template files to target location on the puppet agent

I have a requirement wherein there are multiple template files that needs to be copied to the same target path on the puppet agent machine, and the target path is determined by facts. Is there a way to...

View Article

ERB template fails after upgrade to Puppet 4

Hi, we're upgrading from Puppet 3 to Puppet 4 and hit some issues with custom facts no longer working. Custom fact name: logservers.rb, it returns a string of IPs: '1.2.3.4, 5,6,7,8'. We then turn the...

View Article


How to list all resources of a certain type?

Can a Puppet-manifest (or an ERB-template) enumerate through _all_ defined resources of a particular type? For example, I want to list all of the Puppet-managed users -- can I list all of the...

View Article

How to use external file for template or inline_template function

Hi all, I have a puppet recipe who should download and extract an archive file which contain an ERB file. I would like to use this extracted resource as a base for a new file content resource. Do you...

View Article

Handle Empty Arrays

I am completely stumped on this one.. I have a module like: class test ( $file, $list, ){ file { $file: ensure => 'file', content => epp('module/list.epp', {'list' => $list}), mode =>...

View Article

Where can I put files/templates where hiera can reference them?

(Sorry, I accidentally accepted the answer to my last question and it wasn't correct) Let's say I have a module "mymodule" which use a template to create /etc/mymodule.conf. I would like the user to...

View Article


ruby code in template not working with Puppet 4.x anymore

I used following code to generate random orders of LDAP servers in client config file, it won't change the orders in next puppet agent run. However in Puppet v4+, it doesn't seem to work any more,...

View Article


Include a puppet-served file (not a subtemplate) in a template

Greetings. I've tried searching, but I'm probably searching for the wrong words. I have a module class foo { file { "/etc/foo.txt" : ensure => file, source => 'puppet:///modules/foo/foo.txt', }...

View Article

EPP template : elseif condition ?

Hi dear puppeteers ! I was trying to implement some logic lately within an EPP template, and couldn't get an elsif **strong text**statement to work <% if $facts['os']['family'] == 'RedHat' {...

View Article

Template generated html files with garbage chars

Hello, some years ago, we installed puppet on a dedicated virtual machine. It is used to manage a Windows server. One of it's tasks is to generate HTML files from templates (EPP). The problem is that...

View Article


Local variable in .ERB file works during first run but won't update if list...

Hi all, New here so forgive me if I'm asking something that has been asked. I looked around and could not find any information on it specifically. I'm building out an elasticsearch test cluster. When...

View Article

Puppet unable to modify ISO format files

Scenario: we are managing few legacy applications using puppet. Where the properties file are in ISO-8859 format on which puppet is unable to perform any modification and throws error. E,g. while...

View Article

are quotes allowed with ?

i have a template with "<%= @fqdn %>" in it, as well as <%@ @ipaddress %>. the tag without the quotes works fine, but the tag with the quotes prints <%= @fqdn %> instead of the...

View Article

question regarding include -- need to have separate modules due to CIS...

Hello, Hoping folks here may have an answer for this. We are using puppet inside of Satellite via RedHat packaging (my previous experience is not with the Satellite layer). We have a module: class...

View Article



How do I template a large config file?

I'm working on my [first module](https://github.com/DarkMorford/puppet-cytube) to install the [CyTube](https://github.com/calzoneman/sync) node.js application. I'm starting to add parameters to the...

View Article
Browsing latest articles
Browse All 75 View Live