similar to: test my posts aren't going through

Displaying 20 results from an estimated 100000 matches similar to: "test my posts aren't going through"

2013 Jan 15
0
Couple of blog posts on puppet design
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 be found at http://blog.keepingyouhonest.net/?p=435 I''m sharing this to solicit
2012 May 24
6
Puppet on Windows: Avoid download msi files if they aren't going to be installed
Hi all! I''m new on puppet, and I making my firsts classes. I have defined an example class to install 7Zip on Windows servers, it runs right, but I would like to improve it. The problem is that each time that I execute the "puppet agent --test" it downloads the 7zip.msi file, although it is really installed. So, my question is: Is possible to avoid the download of the
2013 Jan 08
4
puppetdb dashboard
Hello, I am currently trying to get the puppetdb dashboard and the puppet dashboard working on the same system. Puppet dashboard is working great but after "successfully" installing puppetdb following puppet''s opensource instructions the puppetdb dashboard just doesn''t seem to exist (according to some sites I should be able to get to it by going to
2012 Dec 14
1
Connecting to Puppet's user experience team as a Puppet Test Pilot
Hi, it''s Jenny here from Puppet''s user experience team. We are looking for people to become Puppet Test Pilots who try our prototype designs, provide feedback, and more: + You get gift cards and t-shirts as thanks for helping us out. + About once a quarter, you''ll be invited to give feedback in a 30-60 minute online meeting. + No other requirements or homework on your
2012 Nov 13
0
Test Active Directory sync module: lpep
Hi All I have just published a module that synchronises users and groups from Active Directory into a Puppet manifest, which can then be rolled out to subscribed agents/workstations. The module maintains generated uids and gids in an SQLite database. It has only been tested on Puppet Enterprise 2.6.1 and RHEL 6.3 so far, at my end. The module is called lpep and you can view it at
2012 Sep 19
2
Puppet testing
I''m in the process of trying to get automated testing for my modules, using puppet-lint, rspec-puppet, puppetlabs_spec_helper and Jenkins. Are there any automated, or semi-automated ways to ensure coverage on my tests? At the moment I am writing tests for existing modules, but I also need to be able to be relatively certain that tests are updated as modules are, and minimize reliance
2012 Mar 06
1
File checksum
I want to to ensure a file, and if the content changes a subscribed exec should fire. file { "/etc/opt/microsoft/scx/ssl/scx-host-$fqdn.pem": checksum => "md5", } exec { "/etc/init.d/scx-cimd restart": subscribe => File["/etc/opt/microsoft/scx/ssl/scx-host-$fqdn.pem"], refreshonly => true } The file is
2013 Jan 07
3
Error: Could not retrieve catalog from remote server: execution expired
Hi everyone, I recently ran into an issue where my puppetmaster can''t run puppet on itself. It errors out with the following: Error: Could not retrieve catalog from remote server: execution expired Warning: Not using cache on failed catalog Error: Could not retrieve catalog; skipping run I''m running Puppet 3 with passanger and puppetdb (hsql). I''ve tried restarting
2012 Sep 10
3
How to remove last comma when iterating through hash in erb template
I need to produce a line in a config file in the format x = "ip1,ip2,ip3" I am using the method below to sort the hash before iterating over it. However, as you can see there will always be a final comma which breaks the app that uses this config file. Does anyone know how I could remove the final comma? ipv4_bind_addresses = "<% routes.sort_by {|key, v| key}.each do |key,
2012 Dec 12
4
Converting puppet client to servr
Is there an easy way to convert a puppet client into being a puppet master? Here''s the scenario. I''m using puppet to configure all my systems, and would like it to be able to deploy a new puppet master as well. We have systems worldwide so having local puppet masters is very desirable for fault tolerance. So Kickstart (via cobbler) installs a puppet client during the initial
2012 Jan 25
4
My ENC won't work, YAML is valid AFAIK
If anyone has any ideas, please share. I''m at a loss. YAML from Puppet Enterprise 2.0.0 default ENC: ++++++++++++++++++++++++++++++++ --- name: rcf-cm-master.our.org parameters: {} classes: - core-permissions ++++++++++++++++++++++++++++++++ YAML from my Python ENC using PyYAML. This results in ''cannot find node''. ++++++++++++++++++++++++++++++++ ---
2011 Jul 07
7
Testing if a puppet class is going to be installed
In a bunch of my templates and manifests, I need to have logic which depends on whether or not a particular (other) puppet class is going to be installed on the machine. For example, for setting up the proper nagios monitors, you''d want to say something like "if this machine has the apache class, then configure apache monitoring" It''s not feasible I think to put this
2012 Oct 15
3
Change Tab behavior in 3.0+
Hey all, I have a question regarding the choice to move to spaces (rather than tabs) in the editor. May I ask the reasoning behind this? Furthermore, is there a way to revert to the ''old style'' that used tabs instead? I prefer this, as it makes the code look cleaner. -- You received this message because you are subscribed to the Google Groups "Puppet Users"
2012 Jun 08
2
MySQL settings for puppet dashboard
Hello Group, I have a problem with pending tasks in puppet-dashboard after I set the MySQL parameter autocommit = 0 and sql_mode = TRADITIONAL. Does the dashboard need autocommit to be enabled? Workers are running: env RAILS_ENV=production script/delayed_job status delayed_job: running [pid 4995] delayed_job: running [pid 5019] Regards Kai -- You received this message because you
2012 Sep 05
2
Is there a puppet module for tomcat and apache
Is there a puppet module for tomcat and another one for apache? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/mQ_MgkwB0z0J. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to
2012 Oct 23
1
Git clone manifest for windows puppet clinet
Can anybody help to come up with a manifest file, which should instruct a puppet client running on windows to clone a repository from github directly to puppet client? Great thanks for help! -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit
2012 Dec 03
1
Weird mode issues with /var/lib/puppet/lib
I have two puppet master servers in my fledgling puppet infrastructure, a production one and a dev one. I have configured the production one as the authoritative CA, and I have one test agent machine which I''m switching back and forth with the "server" option in /etc/puppet/puppet.conf. When I point the agent at the production server and do puppet agent -t, it sets
2012 Oct 26
1
Class in puppet-dashboard
Hello. I have a puppet class: class change-password-root{ > user { root: > password => ''asdfasdfasdfsafasfdsadf'', > ensure => present > } > } The task works perfectly but in puppet-dashboard always has the counter to zero. Thanks. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this
2012 Oct 15
2
base64 within module
I have to convert a string in base64 before placing it inside a template with puppet. Is there a function available and how? Thanks Luca -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/ZgLjlG_IeI4J. To post to this group, send email to
2012 Apr 12
1
Condition based on environment
Hi, I''m using one of the git projects for my Apache configuration. I''m now playing with Puppet environments, and I need to define a few parameters based on the environment. For example, I have params.pp: $user = $operatingsystem ? { /RedHat|CentOS/ => ''apache'', /Debian|Ubuntu/ => ''www-data'', } I''d like to be