Re: [Puppet Users] puppet parser validate fails

2013-12-11 Thread Andreas Dvorak
Hi Jeff, thank you for the information. I think the "grep -v '^\s*import'" is working. First test are successfully. Best regards Andreas -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails

Re: [Puppet Users] Nested parametrized defines

2013-12-11 Thread Patricia Jung
Dear John and all, Am 18.11.2013 um 17:26 schrieb jcbollinger : > > Invalid resource type a::ssh_keys::add_to_ssh_authorized_keys at > /etc/puppet/modules/a/manifests/ssh_keys/:7" > > > "Invalid resource type" for a defined type, supposing that it's not > altogether a red herring, means tha

Re: [Puppet Users] Template file name

2013-12-11 Thread Felix Frank
Easiest way is wrapping it in a defined type. define my_config() { file { $name: ensure => file, content => template(...), } } Inside the template, you can use <%= @name %> or <%= @title %>, because that is the name of the file being managed in this context. Use the type like

[Puppet Users] puppetdb: no communication between PM and puppetdb

2013-12-11 Thread Stefan Wiederoder
Hello out there, I´m trying to add puppetdb (on a separate host, puppetdb-1.5.2-1.el6.noarch) to my puppet setup (passenger, puppet-3.1.0-1.el6.noarch). I´ve used the PL documenation, but I receive the following message after restarting apache: 2013-12-11T13:28:47.859827+01:00 belbo puppet-mas

[Puppet Users] 3.3.2 puppet master : rubygems issue

2013-12-11 Thread Brent Clark
Good day guys. I just built a new 3.3.2 puppet master. What is interesting is I get the following message. Error: Could not retrieve catalog from remote server: Error 400 on SERVER: You need rubygems to use Hiera at /etc/puppet/manifests/nodes.pp:8 on node chs-puppet01.rest.commented.out War

Re: [Puppet Users] Re: Are storeconfigs without puppetDB possible?

2013-12-11 Thread Jeff Bachtel
Note that even with local file storage, the java container that puppetdb runs in can take a longer-than-expected time to spawn listener threads. No issue if you're running your development puppetdb somewhat persistent (outside of your Vagrant VM), but if you put puppetdb on the Vagrant machine

Re: [Puppet Users] Puppetlabs/Apache 0.10.0 Release

2013-12-11 Thread Darin Perusich
On Tue, Dec 10, 2013 at 10:42 PM, William Van Hevelingen wrote: > I opened an issue for SUSE/SLES support to track it's progress. > > https://github.com/puppetlabs/puppetlabs-apache/issues/525 Got some email from github on this early, thanks. Where does discussion on this module take place, this

Re: [Puppet Users] puppetdb: no communication between PM and puppetdb

2013-12-11 Thread Jeff Bachtel
What messages are you seeing in /var/log/puppetdb/puppetdb-daemon.log and puppetdb.log on 129.128.100.11? Did you previously have puppetdb running on your puppet master? Because you got the 403, puppetmaster is at least able to connect to and receive a response from 129.128.100.11:8081 via HTT

[Puppet Users] Re: using mco to manage puppet resources by class

2013-12-11 Thread Stefan Heijmans
Hi, mco puppet --help says the following for tags; --tags, --tag TAGRestrict the run to specific tags >>mco puppet runonce --noop --tags mysql::master So, it would be correct that this runs over all puppet nodes, except the Puppet run will only process mysql::master. --tags

[Puppet Users] apt.puppetlabs.com to slow

2013-12-11 Thread Tudor Rogoz
Hello, The apt.puppetlabs.com repository is not responding, or is responding to slow. [0] Is a temporary issue or was moved to a different address? Tudor [0] wget http://apt.p

[Puppet Users] console web timeout

2013-12-11 Thread sushi takashi
Hello, Sorry for my bad English, i'm not English. I'm new in puppet and i follow the documentation learning puppet. I have a problem for acess to web console with Puppet. When i enter the URL given by the VM at startup i have a timeout. I'm under W7 and i use VirtualBox. The mode networking f

[Puppet Users] Cannot see Inventory in Dashboard & failed to use facer variable in manifest

2013-12-11 Thread shlo . afgin
Hi, In Dashboard, in the 'Inventory' section I get nothing but the error: Could not retrieve facts from inventory service: 403 "Forbidden" When I tried to use facter variables in the manifest, it look like it's not working. (I new in that so I never tried it before). I have something like

Re: [Puppet Users] Cannot see Inventory in Dashboard & failed to use facer variable in manifest

2013-12-11 Thread Jeff Bachtel
Try case $hostname { 'puppetagent': {include sendmail} } BUT, that's really the wrong pattern to be following, you should instead create a node definition for "puppetagent" that includes the sendmail class. node puppetagent.yourdomain { include sendmail } Jeff On 12/11/2013 10:00 AM, sh

Re: [Puppet Users] Re: Getting latest agent on debian for ARM?

2013-12-11 Thread Jon Yeargers
'apt-get update' ran fine this time. 'apt-get install puppet': Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The

Re: [Puppet Users] puppetdb: no communication between PM and puppetdb

2013-12-11 Thread Stefan Wiederoder
Hi Jeff, thanks for your reply. you were right, I´ve once had my first puppetdb installation on the same host - but all the files have been removed and there was no defunct java process running anymore. but then I found the problem was within my puppet.conf, because I´ve added these two varia

Re: [Puppet Users] Re: Getting latest agent on debian for ARM?

2013-12-11 Thread Jon Yeargers
I also tried 'apt-get dist-upgrade'. This brought down 'hiera' (along with a few other things). Then tried 'apt-get install puppet-common' - this failed as 'facter' needed a higher version. .. so tried 'facter' but this failed with: facter : Depends : dmidecode but it is not installable If

[Puppet Users] hiera 1.3.0 breaks puppet standalone

2013-12-11 Thread Ronen
It seems as if latest hiera (1.3.0) breaks puppet standalone, running: puppet apply --modulepath=modules:static-modules manifests/default.pp --hiera_config hiera.yaml Where hiera.yaml is: --- :backends: - yaml :logger: console :hierarchy: - '%{::virtual}' - common :yaml: :datadir: hierada

Re: [Puppet Users] Re: Getting latest agent on debian for ARM?

2013-12-11 Thread Jeff Bachtel
demidecode (which is a hard dependency for facter) is not available for armel in Debian's repository. I have confirmed that facter will not fail outright when dmidecode is missing. The following facter variables will not be created, however: bios_release_date bios_vendor bios_version boardmanuf

Re: [Puppet Users] Re: Getting latest agent on debian for ARM?

2013-12-11 Thread Felix Frank
I was thinking along the same lines. A "recommends" may be better suited, because on some (many?) systems, those will be installed automatically just like hard dependencies. Cheers, Felix On 12/11/2013 04:47 PM, Jeff Bachtel wrote: > > I think facter's dmidecode dependency should be a Suggests v

[Puppet Users] variable scope defined in a "define"

2013-12-11 Thread Alexander Gray II
I have a variable initialized within a define but I cannot reference it from within a class. contents of bar.pp: define foo::bar ( $my_var = 'this is my value', ){ notice("The value in define: ${my_var}") include foo } contents of init.pp: class foo{ notice("The value in class: ${my_var}"

Re: [Puppet Users] hiera 1.3.0 breaks puppet standalone

2013-12-11 Thread Dan White
I got a similar error, but found a fix. Put a placeholder data value in your yaml file or remove it . I will try opening an issue. “Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.” Bill Waterson (Calvin & H

[Puppet Users] Re: apt.puppetlabs.com to slow

2013-12-11 Thread Tony McMahon
I'm seeing this with yum.puppetlabs.com as well. Something's up, me thinks... On Wednesday, December 11, 2013 1:29:38 PM UTC, Tudor Rogoz wrote: > > Hello, > > The > apt.puppetlabs.com

Re: [Puppet Users] hiera 1.3.0 breaks puppet standalone

2013-12-11 Thread Dan White
Someone else got there first http://projects.puppetlabs.com/issues/23367 “Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.” Bill Waterson (Calvin & Hobbes) - Original Message - From: "Ronen" To: p

[Puppet Users] Is anyone using Puppet for RHEL Patch management ?

2013-12-11 Thread Unix SA
Hello Guys, want to know if anyone is using puppet to apply patches to RedHat systems ? i would like to understand architecture of it .. how do you guys use it to get patches from RedHat, how do you test and deploy it on prod servers ? Regards, DJ -- You received this message because you are su

Re: [Puppet Users] Is anyone using Puppet for RHEL Patch management ?

2013-12-11 Thread Dan White
I am using Puppet on RHEL systems. I do not use Puppet to patch the servers. I use Red Hat Network and yum update. Puppet then fixes config changes that package updates break. “Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tri

Re: [Puppet Users] hiera 1.3.0 breaks puppet standalone

2013-12-11 Thread Ronen
Hey Ygor, this seems to effect classes with parameters such as https://github.com/puppetlabs/puppetlabs-apt/blob/master/manifests/init.pp I can't add parameters for any external class I use (thats what defaults are for), It looks as if the parameters values are searched via hiera and fail, als

[Puppet Users] using puppet device

2013-12-11 Thread Dan Bode
Hi all, I had a bit of time to research the existing device code to see if I can use it for an integration with two specific use cases: 1. discovery/inventory - access hardware inventory and store it somewhere where it can be retrieved. So far, device supports this use case. - specify a list of

Re: [Puppet Users] Is anyone using Puppet for RHEL Patch management ?

2013-12-11 Thread Pack, Scott
I’ve found the best way is that instead of using Puppet to perform the updates you develop your own update system and use Puppet to manage it. At the risk of shameless self-promotion, and to save time typing here, I’ve already written this up at: http://serverfault.com/a/411060/3356 Scott On

[Puppet Users] Announce: Puppet 3.4.0-rc2 Available

2013-12-11 Thread Melissa Stone
**Release candidate** Puppet 3.4.0-rc2 -- *Release Candidate*: Puppet 3.4.0 is not yet released - RC1: December 3, 2013. - RC2: December 10, 2013. 3.4.0 is a backward-compatible feature and fix release in the Puppet 3 series. The main foci of this re

Re: [Puppet Users] Is anyone using Puppet for RHEL Patch management ?

2013-12-11 Thread Jerald Sheets
Same here... local Yum repo, no external repo, keeping up to date by executing a "yum update" via exec --- Jerald M. Sheets jr. On Wed, Dec 11, 2013 at 11:52 AM, Pack, Scott wrote: > I’ve found the best way is that instead of using Puppet to perform the > updates you develop your own update s

Re: [Puppet Users] hiera 1.3.0 breaks puppet standalone

2013-12-11 Thread Dan White
http://projects.puppetlabs.com/issues/23273 Merged pending release “Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.” Bill Waterson (Calvin & Hobbes) - Original Message - From: "Ronen" To: puppet-

Re: [Puppet Users] hiera 1.3.0 breaks puppet standalone

2013-12-11 Thread Ronen
Ok ill give master a try to see if it resolve my issue, Thanks! On Wednesday, December 11, 2013 7:28:25 PM UTC+2, Ygor wrote: > > http://projects.puppetlabs.com/issues/23273 > > Merged pending release > > “Sometimes I think the surest sign that intelligent life exists elsewhere > in the univers

Re: [Puppet Users] hiera 1.3.0 breaks puppet standalone

2013-12-11 Thread Dan White
Please report results. Good luck “Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.” Bill Waterson (Calvin & Hobbes) - Original Message - From: "Ronen" To: puppet-users@googlegroups.com Sent: Wedn

Re: [Puppet Users] Re: Getting latest agent on debian for ARM?

2013-12-11 Thread Jon Yeargers
root@plugpc-005:~# apt-get install ruby libopenssl-ruby pciutils Reading package lists... Done Building dependency tree Reading state information... Done Note, selecting 'libruby' instead of 'libopenssl-ruby' pciutils is already the newest version. libruby is already the newest version. ruby is alr

[Puppet Users] Re: variable scope defined in a "define"

2013-12-11 Thread jcbollinger
On Wednesday, December 11, 2013 10:02:00 AM UTC-6, Alexander Gray II wrote: > > I have a variable initialized within a define but I cannot reference it > from within a class. > Yes. > > contents of bar.pp: > define foo::bar ( > $my_var = 'this is my value', > ){ > notice("The value in

Re: [Puppet Users] Re: Getting latest agent on debian for ARM?

2013-12-11 Thread Jeff Bachtel
You can fetch it directly (wget, curl, whatever) from http://apt.puppetlabs.com/pool/squeeze/main/f/facter/facter_1.6.18-1puppetlabs1_all.deb Jeff On 12/11/2013 12:39 PM, Jon Yeargers wrote: root@plugpc-005:~# apt-get install ruby libopenssl-ruby pciutils Reading package lists... Done Building

[Puppet Users] Re: Module to mount LUKS encrypted drives

2013-12-11 Thread David Hazar
Jared, You mention a cryptsetup module that is required. I did not see that module on you github account. Can you point me in the right direction? Thanks, David On Monday, January 23, 2012 7:44:17 PM UTC-7, Jared Curtis wrote: > > I've created a module to manage mounting LUKS encrypted device

Re: [Puppet Users] Puppet Labs issue tracker migration 16 Dec 2013

2013-12-11 Thread Charlie Sharpsteen
On Tuesday, December 10, 2013 2:37:14 PM UTC-8, John Warburton wrote: > > * Everybody needs to create a new account on JIRA, since we can’t migrate >> passwords from redmine to jira. >> > > Is the JIRA link available? From the front page, Bug > Trackerpoints at Red

[Puppet Users] What types of Information Can Puppet Automate?

2013-12-11 Thread Angelika Modawal
Hello, We are considering using Puppet Enterprise to help us automate data about our Linux, Unix and Windows Servers. What kinds of automated hardware data can we get from Puppet? Is there a straightforward list available of hardware specs available? Thanks, -- You received this message b

Re: [Puppet Users] Re: Getting latest agent on debian for ARM?

2013-12-11 Thread Jon Yeargers
I can wget and install facter but the issues continue: root@plugpc-005:/tmp# apt-get install puppet Reading package lists... Done Building dependency tree Reading state information... Done You might want to run 'apt-get -f install' to correct these: The following packages have unmet dependencies:

[Puppet Users] Re: apt.puppetlabs.com to slow

2013-12-11 Thread Rob Braden
Something was up... We were running out of available http server threads. There was one particular client being a bit aggressive with the number of concurrent requests. The http server config has been tweaked a bit and that client has been throttled. At the moment, everything appears to be work

Re: [Puppet Users] hiera 1.3.0 breaks puppet standalone

2013-12-11 Thread Ronen
Yeap hiera-1.3.0.16 (current master) fixes the issue, in order to build it: $ git clone g...@github.com:puppetlabs/hiera.git $ rake package:bootstrap $ rake package:gem Now ill wait for it to be pushed out to rubygems Thanks On Wednesday, December 11, 2013 7:34:37 PM UTC+2, Ygor wrote: > > Pl

[Puppet Users] Re: apt.puppetlabs.com to slow

2013-12-11 Thread Russell Jackson
I've been constantly seeing errors from apt-get update being unable to connect to apt.puppetlabs.com for months. It is very confusing because apt tries the ipv4 address first. It times out. Then, it tries the ipv6 address which for must of us results in a network unreachable; however, it doesn'

Re: [Puppet Users] What types of Information Can Puppet Automate?

2013-12-11 Thread Dan White
Are you road-testing Puppet Open Source ? The list of default facts that come out of facter is impressive “Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.” Bill Waterson (Calvin & Hobbes) - Original Mes

[Puppet Users] Re: apt.puppetlabs.com to slow

2013-12-11 Thread Rob Braden
Hopefully the changes that we are implementing today will significantly mitigate these issues. Please let us know here, in #puppet or for maximum visibility, update the ticket at https://projects.puppetlabs.com/issues/23397 if you continue to see issues. Thanks, apologies for the issues. On

[Puppet Users] one mco client, multiple activemqs

2013-12-11 Thread Cristian Falcas
Hi, Is it possible to connect one mco client to multiple activemqs? Best regards, Cristian Falcas -- 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+

[Puppet Users] Re: one mco client, multiple activemqs

2013-12-11 Thread Cristian Falcas
Sorry, I sent the message to the wrong list. On Wed, Dec 11, 2013 at 10:32 PM, Cristian Falcas wrote: > Hi, > > Is it possible to connect one mco client to multiple activemqs? > > Best regards, > Cristian Falcas -- You received this message because you are subscribed to the Google Groups "Pup

[Puppet Users] storeconfigs errors and other beginner questions

2013-12-11 Thread Pierre-Andre Malbrough
Hey guys, Im new to puppet and running into challenges getting a puppet module installed. so I've installed a module (puppet-ossec), and I want to install it on my host. I attempted a puppet apply test/init.pp the init.pp has: include puppet-ossec::serv

Re: [Puppet Users] Can't seem to get modulepath attribute recognized by puppetmasterd

2013-12-11 Thread John Pyeatt
I'm still seeing the issue where modulepath isn't being recognized as documented. I tried running the following: /usr/sbin/puppetmasterd --logdest /tmp/masterd.log --verbose --debug --no-daemonize The masterd.log file contains a bunch of stuff, but nothing that prints the modulepath. I've marked

[Puppet Users] Puppet with Fuse

2013-12-11 Thread F. Y.
Hi folks, I'm running into an issue where a home grown fuse module is mounting a file structure, and it works the first time. But on the second run, Puppet complains: Warning: /Stage[main]/Test/File[/home/myhome/dir1/dir2/dir3/dir4]: Could not stat; permission denied Error: Could not set 'dire

Re: [Puppet Users] Puppet with Fuse

2013-12-11 Thread Jeff Bachtel
On 12/11/2013 04:11 PM, F. Y. wrote: Hi folks, I'm running into an issue where a home grown fuse module is mounting a file structure, and it works the first time. But on the second run, Puppet complains: Warning: /Stage[main]/Test/File[/home/myhome/dir1/dir2/dir3/dir4]: Could not stat; per

Re: [Puppet Users] What types of Information Can Puppet Automate?

2013-12-11 Thread Angelika Modawal
In the process. I need at least a generic list of fields it can automate to understand if it is a viable solution for us. Do you know how I would get such list without downloading Puppet? I can't due to admin rights restrictions. On Wednesday, December 11, 2013 3:02:19 PM UTC-5, Ygor wrote:

[Puppet Users] Re: Module to mount LUKS encrypted drives

2013-12-11 Thread Jared Curtis
The encmount module was a first draft and I've since refactored it to become the cryptvol module. http://forge.puppetlabs.com/jcurtis/cryptvol While I don't make use of it currently at my previous job it worked well for our needs. On Wednesday, December 11, 2013 10:44:56 AM UTC-8, David Hazar

Re: [Puppet Users] What types of Information Can Puppet Automate?

2013-12-11 Thread Dan White
Here's a list of fact names (no values) from one of my systems with (I hope) all the custom facts removed architecture augeasversion bios_release_date bios_vendor bios_version blockdevices broadcast_ip domain facterversion filesystems fqdn hardwareisa hardwaremodel hostname id int

Re: [Puppet Users] What types of Information Can Puppet Automate?

2013-12-11 Thread Christopher Wood
You can 'gem install puppet' as a regular user (from your rvm'ed gem) and then run facter as yourself. I've used gem-installed facter while testing 'puppet device' against a load balancer and everything puppet worked just fine. On Wed, Dec 11, 2013 at 01:48:24PM -0800, Angelika Modawal wrote: >

[Puppet Users] recursive descent

2013-12-11 Thread Stuart Cracraft
I want to recursively descend infinitely through a directory tree in regards to ensuring: (a) owner, group, permission (b) existence of the full path, all the leaves, out to the final leaf, e.g. /somedir/somesubdir/{file1,file2,file3,somesubdirtoo} and so forth This could be done tr

[Puppet Users] using multiple facter values with hiera

2013-12-11 Thread Paul Archer
I've got a custom fact that spits out a list of server types (web, app, db, etc). I'd like to do classification on this fact, but when I try using one of the server types in my hiera config, it doesn't work. For simplicity, I've tested with another fact (filesystems) that also returns multiple

Re: [Puppet Users] recursive descent

2013-12-11 Thread Stuart Cracraft
The tree has to already exist. One would think having the ability to instantiate a tree from a seedling would be useful. Sent from my iPhone > On Dec 11, 2013, at 2:25 PM, Stuart Cracraft wrote: > > > I want to recursively descend infinitely through a directory tree in regards > to ensurin

Re: [Puppet Users] recursive descent

2013-12-11 Thread Stuart Cracraft
http://christian.hofstaedtler.name/blog/2008/11/puppet-managing-directories-recursively.html On Wednesday, December 11, 2013 2:36:05 PM UTC-8, Stuart Cracraft wrote: > > The tree has to already exist. > > One would think having the ability > to instantiate a tree from a seedling would be useful.

[Puppet Users] Puppetlabs-firewall LOG and Drop

2013-12-11 Thread Jim Miller
Hello all, We are beginning to implement the Puppetlabs-firewall module and have not been able to implement a final LOG, DROP rule (our standard policy is LOG and DROP everything which isn't explicitly allowed IN or OUT) in post.pp. Has anyone been able to implement a post.pp which does a LOG

Re: [Puppet Users] Fedora 20 Packages

2013-12-11 Thread Melissa Stone
Hi Brian, Just so you know, we have Fedora 20 repo up on yum.puppetlabs.com. Please, try out the packages, and let us know if you come across any issues! Thanks, Melissa On Tue, Dec 3, 2013 at 8:35 AM, Brian Pitts wrote: > Hi, > > Since the Fedora 20 final release is a week away, I was wonder

Re: [Puppet Users] Access class results variables in puppet

2013-12-11 Thread Derek Cole
I see what you're saying about the design of the code. The suggested workaround you proposed doesn't work. It's the same as if I just have the literal in there. Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find resource 'Openvpn::Server[winterthur]' for

Re: [Puppet Users] Access class results variables in puppet

2013-12-11 Thread Jeff Bachtel
In the case of the module you're using ( https://github.com/luxflux/puppet-openvpn it appears) and you seem to have already understood this, the client resource has a hard dependency on files that should only exist on the server (due to client cert generation process). All is really not lost,

[Puppet Users] Re: Template file name

2013-12-11 Thread Mark McWhinney
Cool. That worked. Thank you! On Tuesday, December 10, 2013 11:44:10 AM UTC-8, Mark McWhinney wrote: > > I have a module that needs to create several, similar config files, so I > am using a template. > > file { "foo" : > ensure => file, > content => template("MyTempalte.erb"), > } >

[Puppet Users] Renewing Puppet Master Certificate

2013-12-11 Thread Reid, Jamie
Hi All, Possibly a very simple thing I'm missing, but how do you renew the Puppet Master's ssl certificate without breaking the client/master relationships? A copy of the email to root that prompted this email is below Cheers, Jamie # SSL Certificate Warning

Re: [Puppet Users] Fedora 20 Packages

2013-12-11 Thread hai wu
Now that rhel7 beta is out, when could we expect to yum repo for rhel7? On Wed, Dec 11, 2013 at 6:00 PM, Melissa Stone wrote: > Hi Brian, > > Just so you know, we have Fedora 20 repo up on yum.puppetlabs.com. > Please, try out the packages, and let us know if you come across any issues! > > Than

Re: [Puppet Users] Fedora 20 Packages

2013-12-11 Thread Melissa Stone
Hai, We don't have an exact timeline for rhel 7, but it's something we are working on. Melissa On Wed, Dec 11, 2013 at 5:36 PM, hai wu wrote: > Now that rhel7 beta is out, when could we expect to yum repo for rhel7? > > > On Wed, Dec 11, 2013 at 6:00 PM, Melissa Stone wrote: > >> Hi Brian, >>

[Puppet Users] Puppetlabs-firewall and Logging

2013-12-11 Thread Jim Miller
We're testing out the Puppetlabs-Firewall module. And it seems I'm either missing something fundamental or Logging/Accpet works/doesn't work in an irregular way. I would be most grateful for some input. *COMMON:* firewall { '002 accept related established rules INPUT': proto => 'all', state

Re: [Puppet Users] Puppetlabs-firewall and Logging

2013-12-11 Thread Jeff Bachtel
Are you seeing the not-working rules generate iptables rules (verify with iptables-save after applying manifest)? Also, it's been a while since I dug into the ruby that generates the rules, you should probably use the before operator -> between rules to enforce ordering, like firewall { '0

[Puppet Users] Re: using multiple facter values with hiera

2013-12-11 Thread William Leese
On Thursday, December 12, 2013 7:33:26 AM UTC+9, Paul Archer wrote: > > *# this is a typical facter output for filesystems* > root@puppetmaster:/etc/puppet/hieradata# facter filesystems > ext4,iso9660 > > *# my hiera.yaml, to show the first entry in my hierarchy is for the > filesystems fact* > ro

Re: [Puppet Users] Cannot see Inventory in Dashboard & failed to use facer variable in manifest

2013-12-11 Thread shlo . afgin
Hi, Thank you very much for your quick response. I tried it and now I get: Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find default node or by name with 'puppetagent.weizmann.ac.il, puppetagent.weizmann.ac, puppetagent.weizmann, puppetagent' o

Re: [Puppet Users] using puppet device

2013-12-11 Thread Nan Liu
On Wed, Dec 11, 2013 at 8:51 AM, Dan Bode wrote: > > I had a bit of time to research the existing device code to see if I can > use it for an integration with two specific use cases: > I'm not sure what issues are still actively worked on, and I'm keeping an eye on the redmine migration to see wh