[Puppet Users] puppet-agent source package for debian

2015-08-16 Thread Jacob Larsen
I have been trying to install puppet 4 (master) on a Raspberry Pi 2 with raspbian. It seems that even though the repository at apt.puppetlabs.com defines the armhf architecture then the package named puppet-agent is not available for this architecture. This means that the package named puppets

Re: [Puppet Users] Why variables standing by themselves should be quoted in resource titles and only there?

2015-08-16 Thread David Racodon
Thanks for your feedback Rich. David RACODON Freelance QA Consultant LinkedIn | Twitter On Sun, Aug 16, 2015 at 4:12 AM, Rich Burroughs wrote: > Hi David, > > My guess is that this is because of the guideli

Re: [Puppet Users] Puppet Server install basic problems

2015-08-16 Thread Christopher Wood
On Sun, Aug 16, 2015 at 04:03:41PM -0700, Sarsa-JP wrote: >Thanks Christopher. I'll start checking my environments variables, because >what is odd is that I've installed puppetserver in a fresh new machine, >I'd expect that all needed to run puppetserver is done after the >installat

Re: [Puppet Users] Puppet Server install basic problems

2015-08-16 Thread Sarsa-JP
Thanks Christopher. I'll start checking my environments variables, because what is odd is that I've installed puppetserver in a fresh new machine, I'd expect that all needed to run puppetserver is done after the installation. Soon as I get to the office I will reply back with more details. chee

[Puppet Users] Generate subclasses from hiera

2015-08-16 Thread puppeteer123
Is it posible to generate a subclass from a value in hiera? i.e. class yum ( $subclass_name = undef, ) { class yum::repo::$subclass_name I want to be able to create yumrepos individually without having to generate a template file for each one. Idea is: include yum::repo::epel includ

Re: [Puppet Users] Puppet Server install basic problems

2015-08-16 Thread Rich Burroughs
Yeah you should add /opt/puppetlabs/bin to your shell's PATH or run it with the full path. Rich On Sun, Aug 16, 2015 at 3:40 PM Christopher Wood wrote: > On Sun, Aug 16, 2015 at 08:19:10AM -0700, Sarsa-JP wrote: > >Guys, > > > >First, I'm sorry for the basic question. I'm just starting

Re: [Puppet Users] Puppet Server install basic problems

2015-08-16 Thread Christopher Wood
On Sun, Aug 16, 2015 at 08:19:10AM -0700, Sarsa-JP wrote: >Guys, > >First, I'm sorry for the basic question. I'm just starting on Puppet. > >I've been trying to install Puppet Server following this guide: >http://docs.puppetlabs.com/puppetserver/2.1/install_from_packages.html but

[Puppet Users] Puppet Server install basic problems

2015-08-16 Thread Sarsa-JP
Guys, First, I'm sorry for the basic question. I'm just starting on Puppet. I've been trying to install Puppet Server following this guide: http://docs.puppetlabs.com/puppetserver/2.1/install_from_packages.html but I think I ran out of luck. I could set everything up and the installation seems

[Puppet Users] Top scope variables and hiera

2015-08-16 Thread Chris Spence
The other option is to use anchors and references in the YAML to reduce the duplication. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr.

Re: [Puppet Users] Top scope variables and hiera

2015-08-16 Thread Denmat
Hi, The way I see it you have two options. The hiera function like you said or a profile/parent class that you can use to do the lookup. class profile::provisioning ( $server { class {someclass: server => $server} more ... } Then common.yaml has only profile::provisioning::se

[Puppet Users] Top scope variables and hiera

2015-08-16 Thread puppeteer123
After using hiera for a few months, I started to find a lot of keys with the same value in my common.yam: --- provisioning::server: 'same.old.node' kickstart::server: 'same.old.node' puppet::server: 'same.old.node' Contextually they are fine, however it seems a little redundant. Is there a way