Comments inline.
On Thursday, September 19, 2013 10:19:45 AM UTC-5, TimV wrote:
>
> Hi -
>
> We’ve got a small test puppet setup that I am trying to get working. 2
> hosts, a puppetmaster server and a client machine, both running version
> 2.6.18. The host has been added, and it’s certificate
On Friday, July 12, 2013 11:21:09 AM UTC-7, m4l...@gmail.com wrote:
>
> Say I have the following classes:
>
> foo
> foo::bar::one
> foo::bar::two
>
> Is there a way to declare all classes in the foo::bar namespace at once?
>
Not really, but you can have foo::bar look like:
class foo::bar {
i
On Thursday, July 11, 2013 9:16:55 AM UTC-7, RichT wrote:
>
>
>
>
>
> On 10 July 2013 23:33, Jason Slagle >wrote:
>
>> If you use hiera and puppet 3, specifying servers is as easy as putting
>> ntp::servers in hiera.
>>
>> Jason
>
>
>
> I have been reading through the module but not tested it,
On Tuesday, June 11, 2013 10:28:51 AM UTC-5, Fabio Sangiovanni wrote:
>
> Hi,
>
> I'm using Puppet 3.2.1 and heavily relying on hiera data bindings.
> I have the following situation:
>
> class software (
> $my_content = undef,
> ) {
> file { '/path/to/file':
> content => $software::my_con
On Monday, June 10, 2013 12:43:12 PM UTC-5, Josh sutton wrote:
>
> Hello!!
> I am a new user to puppet and I need to use puppet to install apc and
> change the size of apc.shm_size to 64.
>
> I have found a module here: https://github.com/ridonkulous/puppet-apc
> However, when I add the module
I am not positive exactly what you are trying to accomplish, but I believe
you can do this in a couple of ways.
First, if puppet manages snmpd.conf and /etc/fstab simply set "refreshonly
=> true" on the exec and set those two file resources to notify the exec.
If puppet does not manage those fi
On Tuesday, April 16, 2013 4:19:26 AM UTC-5, Brent wrote:
>
> Good day
>
> Im using puppet 2.7.18 and hiera 1.1.0.
>
> I would like to ask.
>
> For some servers I manage I use the following to pull in 'custom classes'.
> hiera_include('classes')
>
> And it all works very well.
>
> But Im no
On Monday, April 15, 2013 9:13:27 AM UTC-5, Kodiak Firesmith wrote:
>
> Hello,
> Our group is currently moving from RHEL5 and an in-house baseline
> management system and yum repositories to RHEL6, Puppet , and RHN Satellite.
>
> With our old homebrew management framework we had a lot of flexibi
On Thursday, April 11, 2013 1:11:16 PM UTC-5, Rahul Khengare wrote:
>
> Hi all,
> I am writing two modules abc and xyz. In both the modules i have to
> change common "test.txt" file,here i use template (.erb) file to changing
> the contents.
> In both abc and xyz the contents of "test.txt"
On Thursday, April 11, 2013 10:22:54 AM UTC-5, Ygor wrote:
>
> Here's one I learned:
>
> I originally had
>
> # Ensure /etc/hosts contains the basics
> host { "${fqdn}":
> host_aliases => $hostname,
> ip => $ipaddress,
> }
>
> And thru some trial and error, got down to this (which
On Wednesday, April 10, 2013 3:45:39 AM UTC-5, Stefan Heijmans wrote:
>
> Hello,
>
> We are looking into using hiera with hiera-gpg, installed puppet 3.1.1 &
> hiera 1.2.0 with rpm's.
> Installing the hiera-gpg gem, it also depends on the hiera gem (used
> version 1.2.0).
>
> The hiera rpm inst
On Monday, April 8, 2013 12:36:33 PM UTC-5, banjer wrote:
>
> Is it possible to have puppet doc show all of the manifest code in the
> generated docs? I'm generating some html docs and would love to be able to
> look at the actual code for each class or define statement. With syntax
> highli
On Friday, March 29, 2013 9:44:42 AM UTC-5, llowder wrote:
>
> Full details are at
> https://ask.puppetlabs.com/question/841/puppet-doc-is-giving-no-output-at-all/
> but the tl;dr version is that when I run puppet doc, I get no output at
> all, even with --debug and --trace.
Full details are
at
https://ask.puppetlabs.com/question/841/puppet-doc-is-giving-no-output-at-all/
but the tl;dr version is that when I run puppet doc, I get no output at
all, even with --debug and --trace.
Nothing to stdout, stderr or the --outputdir, and I am not sure why or what
I am miss
On Thursday, March 28, 2013 2:23:15 PM UTC-5, Schofield wrote:
>
> What I understand is that the puppet dashboard is essentially deprecated.
> https://groups.google.com/forum/#!msg/puppet-users/j44EbTJY7HI/EQSJgh-g1fgJ
>
> I'm curious to know if anyone is aware of any effort to replace the re
On Friday, March 22, 2013 8:23:31 AM UTC-5, Dragos R wrote:
>
> Can I make use of nested cases like this ?
>
> case $operatingsystem: {
>case $kernelmajorversion: {
> '6.1' : { code }
> '6.2' : { code }
> default
>}
> }
>
>
Have you tried? If you put
On Thursday, March 21, 2013 10:47:11 AM UTC-5, Andy Parker wrote:
>
> On Thu, Mar 21, 2013 at 5:46 AM, llowder >wrote:
>
>>
>>
>> On Wednesday, March 20, 2013 5:37:14 PM UTC-5, Andy Parker wrote:
>>
>>> On Tue, Mar 19, 2013 at 2:30 PM, Larry Fast wr
On Thursday, March 21, 2013 5:37:35 AM UTC-5, Jithin Xavier wrote:
>
> Hello All,
>
> I wanted to create two two MySQL database with same user credential using
> Puppet-MySQL. How can I achieve this? Please find my script below.
>
> class mysql::vsdatabase {
> include mysql
> mysql::db { 'vidi
On Wednesday, March 20, 2013 5:37:14 PM UTC-5, Andy Parker wrote:
>
> On Tue, Mar 19, 2013 at 2:30 PM, Larry Fast
> > wrote:
>
>> My Hiera tree is turning into a chaotic mess. I'm guessing that my tree
>> structure is one problem source. So I'm wondering how other real users have
>> setup hier
On Tuesday, March 19, 2013 8:21:24 AM UTC-5, Moritz Tanzer wrote:
>
> Hello,
>
> is it possible to modify the same file with two different inherited
> classes?
>
> I have to define some kernel modules which must be loaded automatically at
> system startup. Probably the easiest way would be writ
On Monday, March 18, 2013 10:26:05 AM UTC-5, mark.a...@thebbgroup.org wrote:
>
> Hi
>
> I have the following custom fact:
>
> require 'facter'
> Facter.add("chat_remote_port", :timeout => 5) do
> setcode do
> Facter::Util::Resolution.exec('/usr/bin/ssh -o
> StrictHostKeyChecking=no -i /vag
On Thursday, March 14, 2013 5:28:49 PM UTC-5, joe wrote:
>
> What llowder said. But he meant fpm, not fom:
>
> https://github.com/jordansissel/fpm
>
>
Indeed, sorry about that. Too much blood in the caffeine stream as I typed.
> On Thursday, March 14, 2013 3:40:20 PM
On Thursday, March 14, 2013 4:51:25 PM UTC-5, Ken Barber wrote:
>
> Hey all,
>
> I'm hoping I can get some information from other users on the list in
> relationship ak0ska's problem listed below. I thought I would start a
> new thread so more users would see this message and not loose it in
On Thursday, March 14, 2013 1:20:39 PM UTC-5, ridha gadhgadhi wrote:
>
> Hi all,
>
> I want to install opensaf from a tar file. Below, the content of my script
> shell:
>
> ---
> tar -xvf opensaf
> cd opensaf
> ./configure
On Monday, March 11, 2013 4:25:12 PM UTC-5, Luca Gioppo wrote:
>
> I'm running a previously working set of modules with the Puppet master
> version 3.1.0-rc2.
>
> I'm getting the Error: stack level too deep
>
> Here is a chunk of the debug
>
> Debug: Scope(Class[Zabbix]): Retrieving template za
On Friday, March 8, 2013 12:42:21 PM UTC-6, Stefan Goethals wrote:
>
> I think you might have a conflict problem between the node and class name
> as they are both the same
>
It's #1372. http://projects.puppetlabs.com/issues/1372
It's a nasty one, and a few ideas are being discussed to fix
On Thursday, March 7, 2013 4:49:38 PM UTC-6, Bruce wrote:
>
>
>
> just do <%= @foo_name %> the vars in the define is local scope, just use
>> them
>>
>
> This worked great. I'm a little shaky on when I can use @variables. Is
> there documentation you could point me at? Thanks again.
>
Any
On Thursday, March 7, 2013 6:38:52 AM UTC-6, Ahmed Kamal wrote:
>
> I'm on 3.1, and I'm finding that "true" works as expected, but "false"
> does not! I think "false" is interpreted as "undef" or so, thus taking
> value from the module's default params
>
False is being treated as the lookup fu
On Tuesday, March 5, 2013 1:07:37 PM UTC-6, Corey Osman wrote:
>
> Hi,
>
>
> I have been following this new type of style, using parameterized classes
> but I have a question.
>
>
>
> Say I have the following:
>
>
> class java-app-profile { class {'java-app': app-name => "my_first_app1",
> app-
On Friday, February 22, 2013 2:03:30 PM UTC-6, Sai_Emc wrote:
>
> Hiera was properly working in my environment. But puppet was looking at
> old version even when I have the latest hiera gem installed. So I could'nt
> use json backend. But puppet is not looking at my latest hiera gem. Not
> sur
On Wednesday, February 20, 2013 7:45:41 AM UTC-6, Justin Lambert wrote:
>
> I have been revisiting this again lately and still haven't been able to
> get any spec tests working with hiera. Has anyone else had any luck in the
> last few months? It is easy to make hiera lookups work if there is
On Tuesday, February 19, 2013 10:21:54 AM UTC-6, Schofield wrote:
>
> Is this the best option for accessing puppetdb data from modules?
> http://forge.puppetlabs.com/dalen/puppetdbquery
>
> Any other recommendations?
>
>
>
As far as I know, that is currently the best option - though what you are
On Tuesday, February 19, 2013 10:00:39 AM UTC-6, Robert Citek wrote:
>
> What commands are there to collect system information and convert it
> into puppet resources?
>
> We have a lot of systems that were not initially configured with
> puppet and we would like to gather information about tho
On Monday, February 18, 2013 3:47:40 AM UTC-6, Steve Shipway wrote:
>
> I've found an apparent bug in the puppet parser.
>
> If you are using 'import' to include the contents of a subdirectory, like
> this:
>
> import 'foo/*.pp'
>
> and then you create a new module 'foo', suddenly the import st
On Thursday, February 14, 2013 2:49:42 PM UTC-6, John Coggeshall wrote:
>
> Hello all,
>
> I'm using puppet to deploy my codebase from GIT. I have everything
> working, but i currently don't have any way to check to make sure there is
> actually something TO deploy before it goes through the en
On Thursday, February 14, 2013 9:02:01 AM UTC-6, Dan wrote:
>
> Hi,
>
> I'm struggling to get this to work and don't understand where I'm going
> wrong, can someone please guide me on how to correct?
>
> Basically I want to get an array in my nodes.pp, which is then used by my
> templates file
On Wednesday, February 13, 2013 12:00:40 PM UTC-6, Ken Barber wrote:
>
> Hi all,
>
> I've been looking at a potential problem, as documented here:
>
> http://projects.puppetlabs.com/issues/19241
>
> To do with a leak within the KahaDB persistence layer of ActiveMQ.
> Specifically, there are r
On Wednesday, February 13, 2013 3:03:15 AM UTC-6, yarlagadda ramya wrote:
>
> Hi all,
>
> I have 3 different manifests. How can i call one manifest from another
> manifest?
>
> Please do help me with this.
>
It depends on what is in the manifests... if you used modules and classes
and have th
On Tuesday, February 12, 2013 8:28:18 AM UTC-6, jcbollinger wrote:
>
>
>
> On Monday, February 11, 2013 4:30:16 PM UTC-6, llowder wrote:
>>
>> The title pretty much sums it up.
>>
>> I've got a situation where I need to have puppet enforce a given state
On Tuesday, February 12, 2013 8:09:49 AM UTC-6, jcbollinger wrote:
>
>
>
> On Tuesday, February 12, 2013 7:16:21 AM UTC-6, Drew Blessing wrote:
>>
>>
>> Then you can go about adding any parameters that need defined for those
>> classes:
>>
>> class1::param1: 'boom'
>> class2::array1:
>> - 'foo
On Tuesday, February 12, 2013 7:16:21 AM UTC-6, Drew Blessing wrote:
>
> Ellison is right, it really doesn't make much sense to create one resource
> with create_resources. In fact, I'm not even sure it will work with
> classes because I've never tried it. However, it works great for defined
The title pretty much sums it up.
I've got a situation where I need to have puppet enforce a given state most
of the time, then when a certain flag is present it needs to use a
different state - but only until a certain amount of time has passed, at
which point it needs to go back to the normal
On Friday, February 8, 2013 6:56:55 AM UTC-6, nikolavp wrote:
>
> I have seen this issue for sure many times. I always forget this and
> when I see it while running with --noop, I change the owner and the
> group on the file resource. I am +1 on fixing this to have a more
> deterministic behav
On Wednesday, February 6, 2013 6:06:49 AM UTC-6, Ken Barber wrote:
>
> Perhaps you want to use 'puppet node deactivate' for now:
>
>
> http://docs.puppetlabs.com/puppetdb/1.1/maintain_and_tune.html#deactivate-decommissioned-nodes
>
>
> This will at least remove it from being collected immediat
On Thursday, January 31, 2013 3:10:12 PM UTC-6, David Kerr wrote:
>
> I am using PuppetDB and I'd love the links, I did some searching and
> wasn't able to find the conversation.
>
> Thanks for the reply!
>
This may help.
https://ask.puppetlabs.com/question/88/how-can-i-purge-exported-resource
On Thursday, January 31, 2013 8:38:34 AM UTC-6, Schofield wrote:
>
> I am evaluating Hiera for use in our puppet setup to handle overrides
> based on facts. Unfortunately the documentation is slim
> http://projects.puppetlabs.com/issues/15295. I am wondering if it is
> possible to have mult
On Wednesday, January 30, 2013 7:46:53 AM UTC-6, Thomas wrote:
>
> I'll be looking at having Hyperic monitor our Puppet master and nodes.
>
> Maybe I'm lucky but I've never found any thing errors in the puppet logs
> to indicate any problems. Are there any messages I should look for? Is
> there
On Tuesday, January 29, 2013 8:54:43 AM UTC-6, olli...@googlemail.com wrote:
>
> Hello,
>
> Just kicking the tyres with PuppetDB (1.1.0) on a test setup with 100-odd
> nodes running only once an hour by default.
>
> Looking at the dashboard the catalog duplication is showing 0.0% which
> seems
On Monday, January 21, 2013 5:42:41 PM UTC-6, James Birchfield wrote:
>
> I have looked over the documentation, but I did not see anything
> pertaining to this subject. If there is documentation of such sort, could
> someone please point me to it?
>
> Is it possible to register some sort of cu
On Monday, January 21, 2013 3:32:51 PM UTC-6, Andrey Brindeyev wrote:
>
> Hi!
>
> I'm a newbie in Puppet with some Chef experience.
>
> Now trying to convert my pet project from Chef to Puppet.
>
> When I start a Tomcat is takes some time (several seconds).
>
> I need to wait a line "Server start
On Wednesday, January 16, 2013 7:22:15 AM UTC-6, bernard...@morpho.com
wrote:
>
> I did not understand : there is a new version of the dashboard ? I thought
> that the dashboard was deprecated and that Puppet Lab will no work on it
> anymore ...
>
> What is the status please ?
>
>
Work on Da
After reading recent posts by R.I. Pienaar [1] and Craig Dunn [2] I was
inspired to not only refactor my puppet code, but also write about the
process and one idea on how to combine these two patterns.
I've currently completed parts 1 and 2, and plan on completing part 3 this
week. Part 1 can
On Tuesday, January 15, 2013 10:53:55 AM UTC-6, Michael Hrivnak wrote:
>
> I am trying to determine how much longer, if at all, version 2.6 of Puppet
> Open Source will get security fixes. Any guidance?
>
> The only documentation I can find is this link, stating that 2.6 is
> currently "a secur
On Friday, January 11, 2013 4:45:49 AM UTC-6, Vladimir Rutsky wrote:
>
> Thank you for your reply.
>
> On Fri, Jan 11, 2013 at 1:06 AM, llowder >wrote:
>
>>
>>
>> On Thursday, January 10, 2013 2:53:34 PM UTC-6, Vladimir Rutsky wrote:
>>>
>>
On Thursday, January 10, 2013 2:53:34 PM UTC-6, Vladimir Rutsky wrote:
>
> Sorry, there is a typo in example:
>
> define python_virtualenv( $directory ) {
> # Setup virtualenv in directory here
> ...
>
> $easy_install = "${directory}/bin/easy_install"
> }
>
> And use it in this way:
>
> pyt
On Friday, January 4, 2013 9:11:28 AM UTC-6, Andy Taylor wrote:
>
> Hi,
>
> I'm trying to build a module for haproxy which fetches all the
> configuration data from Hiera to populate the haproxy config file. I've run
> into a number of issues though when I try to use hashes. Ideally, I want to
On Wednesday, December 19, 2012 1:21:04 PM UTC-6, Worker Bee wrote:
>
> Hi Everyone;
>
> First, is my understanding correct that all boxes with agents >3.0 will
> need to have hiera installed? I have gotten conflicting answers and I have
> found different answers in the documentation as well.
On Tuesday, December 11, 2012 3:58:00 PM UTC-6, GregC wrote:
>
> I'd like to be able to load my puppet reports generated on my Puppet
> production server onto my Puppet development server using dashboard, I
> rsync the directory for my reports from the Puppet production host,
> from /etc/puppe
On Monday, December 10, 2012 4:27:26 PM UTC-6, Jakov Sosic wrote:
>
> Hi.
>
> I was wondering what kind of precommit hooks are you guys using?
>
>
> Here is what I use:
#!/bin/bash
# pre-commit git hook to check the validity of a puppet manifest
#
# Prerequisites:
# gem install puppet-lint pup
ere. So either in that define, or your node def from the ENC, you
will have to also include that class.
>
> On Monday, December 10, 2012 4:39:57 PM UTC-5, llowder wrote:
>>
>>
>>
>> On Monday, December 10, 2012 3:36:55 PM UTC-6, Reginald Choudari wrote:
>>&g
On Monday, December 10, 2012 3:36:55 PM UTC-6, Reginald Choudari wrote:
>
> Hello,
>
> I've got a module with an 'init.pp' like so:
>
> class test_backend {
>
> ...
>
> exec {'reset':
>
> refreshonly => true,
>
> command => 'C:\blah.exe',
>
> }
>
> ...
>
> }
>
>
> And I declare a defined reso
On Friday, December 7, 2012 1:37:20 PM UTC-6, Ugo Bellavance wrote:
>
> I realize that maybe these modules have been built to be used only with
> foreman. Is that a decent assumption? And if so, is there a simple apache
> module somewhere? I only want to do the basics, check packages, servic
I was just wodnering - has anyone puppetized hyperic? Specifically, the
configuration of groups, resources, alertdefs etc.
I'm starting such a project, but am unsure how to approach some of it. I
think eventually I will wind up needing to do a set of types and providers,
comparable to the nagio
On Thursday, November 29, 2012 9:02:27 AM UTC-6, Fran Rodríguez wrote:
>
> Hi group,
>
> I got a problem with environments, im getting this erros from the client:
>
> Could not retrieve catalog from remote server: Error 400 on SERVER:
> Failed to parse template ssh/retrieve_priv_key.erb: canno
On Sunday, December 2, 2012 9:42:08 PM UTC-6, Pete wrote:
>
> Hi everyone,
>
> I currently have a giant file with default variables I use in a lot of my
> modules and I override those at the node level if I need to.
> I thought I would give porting that data into a hiera setup.
>
> I worked out
On Wednesday, November 28, 2012 8:38:37 AM UTC-6, AnOnJoe wrote:
>
> Hello,
>
> I've something strange :
> When I modify my hierarchy in my hiera.yaml, it can take up to several
> hours, for the modification to work.
>
> eg : I create a subdir in my hieradata, move all the concerned files into,
Was just wondering, before I went too far down this path...
I have to use Hyperic for monitoring and alerting.
I've got... 110+ apps to monitor spread across 3 clusters of 3 nodes. I've
puppetized nearly every other aspect of this setup, so am now looking to
puppetize the monitoring.
I know th
On Monday, November 26, 2012 6:32:36 AM UTC-6, joa...@packtpub.com wrote:
>
> I am searching for a number of technical reviewers for a Puppet
> Beginner's Guide that is currently in production. You need to have
> good technical knowledge, and be able to spare a few hours every
> couple of week
On Monday, November 26, 2012 10:10:06 AM UTC-6, jcbollinger wrote:
>
>
>
> On Tuesday, November 20, 2012 3:32:07 PM UTC-6, llowder wrote:
>>
>> I was going through the open bugs and came across an interesting one[1],
>> where if a node has a certain name, and inc
I was going through the open bugs and came across an interesting one[1],
where if a node has a certain name, and includes a class of the same name,
the class doesn't get loaded.
I did discover a workaround - two of them, actually.
However, I was somewhat curious. Is this something people do?
On Friday, November 16, 2012 6:10:33 AM UTC-6, vioilly wrote:
>
> Hi,
>
> Can I have multiple puppet masters speaking to 1 puppet dashboard?
>
>
I don't see why not, just need to configure each one to send the reports.
If you are using the inventory service or the ENC it might get a little
comp
On Thursday, November 15, 2012 8:47:29 AM UTC-6, vioilly wrote:
>
> Hi,
>
> I am just rolling out a new puppet deployment. Which version should i go
> for, 2.7 or 3.1? I am looking to use the open source version.
>
>
If you plan on using an ENC, specifically TheForeman, or a lot of modules
from
RC, and it did fix it.
> note this is currently not working under 3.0.1, tracking under #17371
>
>
> On Monday, November 12, 2012 7:54:57 AM UTC-8, llowder wrote:
>>
>> I recently enabled the rrdgraph reporting on my 2.7.19 master.
>>
>> I set it to cr
be the problem with the inventory
issue, though there is still the filebucket issue to address.
> On Tue, Nov 13, 2012 at 8:18 AM, llowder >
> wrote:
> > I'm running dashbaord 1.2.12 on Ubuntu 10.04, with puppet 2.7.19
> >
> > When I try to do an inventory searc
I'm running dashbaord 1.2.12 on Ubuntu 10.04, with puppet 2.7.19
When I try to do an inventory search, I just get a blank screen.
When I try to view a changed file, I get a white box w/ "i/o error".
I have asked about this once before in IRC, and the fix involved using a
backported package, whi
I recently enabled the rrdgraph reporting on my 2.7.19 master.
I set it to create the graphs in /var/lib/puppet/rrd.
In order to be able to access the things from the web, I set this directory
to have mode 755.
However, it keeps getting switched back to 750 during certain (all?) puppet
runs.
i am currently located in southwest MIssouri. Springfield, MO to be precise.
I'd like to get some sort of Puppet user group / meetup going in the area,
but so far have not been able to locate anyone. I had looked on some of the
Springfield based DevOps and related LInkedIn groups, but got no res
On Monday, November 5, 2012 3:03:57 PM UTC-6, Thomas Biddle wrote:
>
> I just switched from an in-house APT module to the Puppetlabs one thinking
> that it may solve this, but after looking at the code (And installing to
> confirm) it did not.
>
> Seeing Puppet be notified of a "change" just wh
aware of the potential problems when a client is newer than a
master, and I do not plan on running this way any longer than I have to.
> Best, Nikola
>
> On Fri, Nov 02, 2012 at 08:28:12AM -0700, llowder wrote:
> > Turns out it was a stray recurse => true
> >
&
Turns out it was a stray recurse => true
On Friday, November 2, 2012 9:56:40 AM UTC-5, llowder wrote:
>
> I've got a 3.0.0 node on Ubuntu 12.04 talking to a 2.7.19 master on Ubuntu
> 10.04. Until yesterday, this worked fine (and the other 3.0.0 node works
> fine as well)
&g
I've got a 3.0.0 node on Ubuntu 12.04 talking to a 2.7.19 master on Ubuntu
10.04. Until yesterday, this worked fine (and the other 3.0.0 node works
fine as well)
This node is in my 'test' environment and the other node uses an almost
identical node def except is in the 'prod' environment.
I
When I run "puppet resource user " I get a resource definition
back for that user. However, when I run "puppet resource user" I do NOT see
in the list.
Is this intended behavior? Is there a way to get a list of all users,
whether they are ldap or local?
This node is running puppet 2.7.19 on U
On Wednesday, October 24, 2012 1:24:07 PM UTC-5, David Reagan wrote:
>
> I'm brand new to Puppet. Just read through the tutorial online, and the
> first couple chapters of Pro Puppet.
>
> As I've experimented with managing Apache, I ended up storing my wildcard
> ssl cert on the puppetmaster. S
On Tuesday, October 23, 2012 4:22:59 PM UTC-5, Nishant Jain wrote:
>
> Hello Everybody,
> Is it possible to store and remove data from
> hiera(the yaml files) programatically ???
>
Sure, just use one of the YAML libraries and whatever language you want.
--
You recei
On Monday, October 22, 2012 4:12:15 PM UTC-5, Jakov Sosic wrote:
>
> On 10/22/2012 09:04 PM, Bostjan Skufca wrote:
> > Hi,
> >
> > I was just wondering what is someone else's number of manager resources
> > and catalog run time.
> > Mine is 1,700 resources and average catalog run of 70-100 s
On Friday, October 19, 2012 3:18:59 PM UTC-5, Thomas Biddle wrote:
>
> Is it possible to have Hiera look at a key set for the node first, before
> looking at other items in the hierarchy?
>
> In particular - I'm using Puppet Dashboard and am setting keys & params
> for there, so I would like fo
Comments in line
On Friday, October 19, 2012 12:11:59 PM UTC-5, Ryan Coleman wrote:
>
>
>
> On Thu, Oct 18, 2012 at 10:06 PM, Nan Liu
> > wrote:
>
>> Hi!
>>
>> The existing puppet manifests documentation generated via rdoc isn't
>> very dry. I quite like docco generated documentation so I borrowe
On Friday, October 12, 2012 10:34:57 AM UTC-5, Brian Dunbar wrote:
>
> I apologize in advance - this might be covered elsewhere and I simply lack
> the vocabulary to find it.
>
> I have Puppet 2.7.
> I have some linux hosts in a sandbox.
> I have some working modules for cron, files, packages, s
On Friday, October 12, 2012 9:51:22 AM UTC-5, guymatz wrote:
>
> Hi! Sorry if this has already been discussed . . .
>
> I have a requirement to disallow root logins on my UK servers, but allow
> them on my US servers. I have an sshd_config template and am hoping to use
> hiera to get a Yes/No
On Thursday, October 11, 2012 8:37:39 AM UTC-5, alcy wrote:
>
> Hello,
>
> I have a class like:
>
> class wrapper {
> include foo
> include bar
> include baz
> }
>
> And a node like:
>
> node x {
> include someclass
> include wrapper
> Class["someclass"]->Class["wrapper"]
On Wednesday, October 10, 2012 9:43:47 AM UTC-5, Jian wrote:
>
> Anybody else received this or similar error?
>
> What I was able to figure out so far is that:
> by adding "require 'puppet' to the spec test my error changes to:
>
> Error converting value for param 'plugindest': Error convert
comments in line..
On Monday, October 8, 2012 9:38:05 AM UTC-5, jcbollinger wrote:
>
>
>
> On Thursday, October 4, 2012 8:42:39 AM UTC-5, Carlos Tapia wrote:
>>
>> Hi Guys!
>>
>> I want to clean warning messages: "*warning: Deprecation notice:
>> Resource references should now be capitalized*...
While waiting for the video and audio to be published, I went through a
bunch of the tweets and collected links to slides already out there.
That list is at
https://docs.google.com/document/d/1rtrwrSEsXXM5gwaH7cUSkJ-pMbnmedMTdgvONO5k728/edit
If you know of any I missed, let me know by mail, twi
I'm using Dashboard 1.2.10 on an Ubuntu 10.04 LTS system, and Puppet 2.7.19
When I do an inventory search, I get a blank screen.
In the logs, I found the following:
Processing NodesController#search (for X.X.X.X at 2012-10-05 08:44:57) [GET]
Parameters: {"action"=>"search", "controller"=>"node
On Thursday, October 4, 2012 2:49:03 PM UTC-5, Jo wrote:
>
> On Oct 4, 2012, at 12:39 PM, Jeff McCune wrote:
>
> Either just use installed, or a specific version, and then you can upgrade
>
> when you are ready to.
>
>
> Even if you use ensure => installed, newly provisioned nodes will get
> the
On Wednesday, October 3, 2012 4:40:59 AM UTC-5, Mister Guru wrote:
>
>
> On 3 Oct 2012, at 03:35, Ryan Coleman wrote:
>
> > Hello,
> >
> > If you weren't at PuppetConf or didn't catch my talk, here's a quick
> > recap. I'm product owner for the Puppet Forge team which formed in
> > July with
Comments inline.
On Wednesday, October 3, 2012 1:55:35 PM UTC-5, Joehillen wrote:
>
> Same issue here. I'd love to get some info on this.
>
> On Wednesday, October 3, 2012 2:26:42 AM UTC-7, Jonathan Gazeley wrote:
>>
>> Yesterday my puppetmaster and nodes got upgraded to puppet-3.0.0.
>>
>> Since
On Wednesday, October 3, 2012 10:03:17 AM UTC-5, Jakov Sosic wrote:
>
> Hi.
>
> I would like to setup my manifests, so that variable data is gathered
> from hiera, if it's available there, and if not, then to fallback on
> some predefined value...
>
> Something like this:
>
> $my_var = hiera
On Wednesday, October 3, 2012 9:37:01 AM UTC-5, Mister Guru wrote:
>
> I'm sending this email to start this thread, feel free to comment as
> appropriate. I'm going to assume that it's going to take a while for most
> people to actually realise that the puppet update may be giving them some
>
puppet agent has replaced the puppetd command.
On Monday, October 1, 2012 2:38:39 PM UTC-5, Douglas Brancaglion wrote:
>
> Hi guys, I updated my 3.0.1 to 2.7.19 puppet, puppet command but
> disappeared.
>
> How do I sync manually?
>
> example "pupped-vt"
>
> hugs,
>
> --
> Douglas Brancaglion
>
1 - 100 of 124 matches
Mail list logo