search for: jgonzalez

Displaying 15 results from an estimated 15 matches for "jgonzalez".

Did you mean: gonzalez
2007 Dec 01
6
Building files from snippets
Hi there, I''m facing a problem that I think it''s common enough to be solved directly by puppet or at least have a best practice recommended: building a config file from snippets. I''m thinking for example about a dns zone and hosts inside that zone, ldap server and ldap databases, samba server and samba shares, a firewall config and firewall rules,... The first part of
2007 Feb 08
5
Documenting puppet manifests
Hi there, I''m trying to document my puppet manifests, and I have created kind of a template for class documentation. After documenting a few I thought it would be great for complex manifests if we could have a tool that read some kind of standard documentation in puppet manifests and create HTML (or other format) documentation, as javadoc in Java or RDoc (?) in Ruby. So two questions:
2006 Nov 02
7
Error reloading manifests
Hi there, I''m running puppetmasterd manually while testing, and I was trying to split my manifest in several parts using import. If I do so whenever I run the puppetmasterd the manifest gets loaded and served correctly: cognos ~ # puppetmasterd -v info: Starting server for Puppet version 0.20.0 info: Parsed manifest in 0.02 seconds info: /var/lib/puppet/files: allowing *.example.org
2016 May 10
2
Ubuntu server 14.04 classic upgrade segmentation fault
...id=ployola)(uid=marnaudo)(uid=smunoz)(uid=npascolini)(uid=cgonzalez)(uid=glucero)(uid=mmorbiducci)(uid=smaruenda)(uid=jmontoli)(uid=sicop)(uid=slehr)(uid=lricciotti)(uid=jlarsen)(uid=locampos)(uid=omontenegro)(uid=ncuacci)(uid=adellavedova)(uid=mcorradi)(uid=mosre)(uid=mcastano)(uid=lbonifacio)(uid=jgonzalez)(uid=agiagante)(uid=yurquiza)(uid=jborelli)(uid=agalie)(uid=lbertin)(uid=sfederici)(uid=ldigiorgio)(uid=jacosta)(uid=afernandez)(uid=ssolari)(uid=dpuyo)(uid=smeza)(uid=fmartinez)(uid=ccanepele)(uid=rmiralles)(uid=mrodriguez)(uid=vazcarate)(uid=rgonzalez)(uid=clabrocca)(uid=ccaviati)(uid=phelt)(uid=...
2007 Feb 06
23
What I''m doing with Puppet
Hi all, Just reading through Luke''s interview on computerworld.com.au and I came across this statement: "This topic comes up on the list periodically, however, and most people are very tight-lipped about what they''re doing with Puppet." Being the chattermouth that I am, I''d like to take this opportunity to tell you all what we''re (that is, my
2007 Jan 30
1
[Puppet-dev] ReductiveLabs site down
I can''t access http://www.reductivelabs.com/, the site seems to be down. Best regards Jose _______________________________________________ Puppet-dev mailing list Puppet-dev@madstop.com https://mail.madstop.com/mailman/listinfo/puppet-dev
2006 Nov 02
2
Variable assignment in imported file
Hi there, Maybe another bug? I have the following in site.pp: $localtime = $domain ? { "example.org" => "/usr/share/zoneinfo/Europe/Madrid", default => "/usr/share/zoneinfo/Europe/Madrid" } If I take this away and put it in another file, and then import that file, I get the following error: err: Cannot reassign variable localtime in file
2006 Nov 06
1
Does subscribe imply require?
Hi there, I find myself writing a lot of similar required/subscribe parameters, for example in service definitions: package { whatever : ensure => latest } service { whatever: ensure => running, require => Package[ whatever ], subscribe => Package[ whatever ] } Am I doing this correctly, or does subscribe imply require so the require parameter here is unnecessary? Thanks
2006 Jul 28
1
List of Facter "facts"
[This email is either empty or too large to be displayed at this time]
2006 Jul 28
1
Suggestions for web site
Hi there, The links to the documentation of Puppet in the right side of the page seems to be ordered alphabetically, I find confusing to access the documentation using the current menu. I think it would make sense to order them according to some "natural" order for reading it. I mean, maybe it should be something like Index, Introduction, Installation, Language Tutorial... Best regards
2006 Nov 03
1
Reusable definitions
Hi there, I would like to use puppet to configure two networks and one of the first things I''ve tried to do is to describe ntp configuration. Each network has a ntp server that acts as a proxy for internal nodes, so those internal nodes share the same configuration except for the server they use to get the time. Attempting to describe this I''ve thought of several approaches,
2006 Oct 18
5
What is exactly PuppetShow?
... or better, what is intended to be? I''ve seen references to PuppetShow in IRC, mailing lists and documentation, but still have no clear idea of what it is. Is it just a reporting tool? Will you be able to create manifests or configure nodes from it? Thanks, best regards Jose _______________________________________________ Puppet-users mailing list Puppet-users@madstop.com
2007 Feb 08
5
Mass "require"s
Hi there, I want to manage some files with puppet that control the installation of packages in Gentoo (/etc/make.conf, /etc/portage/*). These files must be downloaded to the client before any package resource is processed, so they are installed correctly. Is there any way to do this? Possible solutions: 1. Include in *every* package require => [ list of files ] inside a case statement, so
2007 Feb 07
9
Creating random shared passwords/keys
Hi there, I have a problem I don''t know how to solve. Let''s say you have two services, applications, whatever that communicate with each other, and they establish a shared password or key to authenticate to the other part. This happens with DHCP/DNS (I think is called dynamic zone update, the DHCP server updates the DNS zone with information from the dynamically configured
2007 Nov 18
9
Modules, namespaces and variables
Hi there, After quite a long time out of puppet business I''m back, and the first thing I''m doing is rephrasing my puppet manifests using modules. I started with the NTP module (a classic, I guess). I have (more or less) the following: In modules/ntp/manifests/init.pp: $ntp_localtime = "/usr/share/zoneinfo/Europe/Madrid" class ntp { ... some stuff using the