similar to: fully qualified variables and nodes.pp

Displaying 20 results from an estimated 100 matches similar to: "fully qualified variables and nodes.pp"

2012 Apr 01
0
postrun_command
Hi, i was testing puppet postrun_command option and i found that it will be executed even if puppet run fails to complete successfully as seen in this snippets : debug: Executing ''rm /root/file'' > debug: catalog supports formats: b64_zlib_yaml dot marshal pson raw yaml; > using pson > err: Could not retrieve catalog from remote server: Error 400 on SERVER: > Could
2006 Jan 30
3
RMySQL install
I am having trouble installing RMySQL on a clean install of Fedora Core 4 64 bit on a dual dual core machine (that is, two dual core processors). Seems like the LD_LIBRARY_PATH is incorrect, but I don't seem to have it quite right yet. There are a few mentions of this problem in google, but thus far none of the "fixes" and fixed my problem. I've tried defining the
2005 Jun 29
1
Can't build cdr_addon_mysql.
I have been unable to build cdr_addon_mysql from asterisk-addons-1.09. Could it be a mysql4 issue [root@server9 asterisk-addons-1.0.9]# make cdr_addon_mysql cc -fPIC -I../asterisk -D_GNU_SOURCE -I/usr/include/mysql -c -o cdr_addon_mysql.o cdr_addon_mysql.c cdr_addon_mysql.c:24:22: asterisk.h: No such file or directory I have MySQL devel # ls /usr/include/mysql/ total 404 drwxr-xr-x 2
2010 May 27
4
[PATCH] Rails 3: fields_for helper doesn't work with association proxy objects
Request for eyeballs. :-) Mongoid uses association proxy objects. It overrides #nil? => false when the association is missing. However since it uses proxy objects, !!assocation is always true. I have created a ticket with a patch that changes the association nil test to call assocation.nil? rather than use implicit coercion of the variable. See:
2013 Aug 21
1
Trouble with ENC and static.pp : enabling ENC fails to find node even with default node in site.pp
I''m having some trouble with getting an ENC to work alongside site.pp: Even with a ''default'' node definition, and an ENC that only returns 0, regardless of input, consistently results in a ''cannot find node'' error. I''m wondering what I''ve missed here. I''ve tried to reduce everything to a ''base case'': and
2006 Aug 10
0
pp in the logs
Hi is there any easy way to apply pp to all the entries in the log files? all those bbunched up arrays and hashes are killing my eyes! If not could someone with a decent amount of knowledge write a plugin that does this? regards c -- Posted via http://www.ruby-forum.com/.
2006 Feb 14
0
Rails puts and pp logs are showing up on browser
Hi, I am using Ruby 1.8.3 and Rails 0.14.2, running on Linux (Fedora) and lighttpd. When there is an exception during RSS parsing or Webservice call, I am getting the error messages shown on the browser. This happens only when there is an exception thrown. This happens only on Linux, not on windows server. lighttpd has write access to the log files. Am I missing some configuration or
2013 Jun 13
0
Error: Could not retrieve catalog from remote server: Error 400 on SERVER: A JSON text must at least contain two octets! at /etc/puppet/manifests/site.pp:4 on node irnode
Hi everyone. I am receiving an error on this line: hiera_include(''classes'') According to documentation here: http://docs.puppetlabs.com/hiera/1/puppet.html#hiera-lookup-functions it seems to the standard way to call hiera_include. Has anyone run into this issue? It only happens after a single puppet run. Thank you Kyle C -- You received this message because you are
2012 Jan 31
0
Command to run the pp file on server to execute on client
Hi, I have installed the Puppet and configured the Client / server set up. I have noticed that when I place any code in site.pp on server machine, that is executed in regular intervals of time and runs the script on client. Is there any command that takes the Client IP as parameter and executes the modules specified on the client. Thanks in advance, Sateesh B. -- You received this message
2012 Apr 12
1
Define node environment on puppet master nodes.pp?
Hello, Is there a way to define an environment for the prospective nodes in nodes.pp (maybe a default node?) I''d like to be able to define it there and then have my puppet module configure the node puppet.conf (erb template) based on the parameters that’s passed on from the master. Possible? Thanks, Will -- You received this message because you are subscribed to the Google Groups
2013 Jul 02
1
How to: In nodes.pp - point "node" to hostnames in a file
I am working on a project that involves host names with now sequence to them. I would like my "node" hostnames in nodes.pp to point to a file with a list of these hostnames. Example: node {path/filename} { instead of the usual: node ''www1.example.com'' { or node /^www\d+$/ { Can this be done? Can anyone show my an example of how this was achieved? Thanks
2009 Feb 04
1
Issue with template.pp
Hi i am creating a template.pp for different OS.. Following is my template.pp file node basenode { case $operatingsystem { fedora: { include fedora } default: { include debian } } include baseapps, sshd, admin, default } <=== line 7 node default inherits basenode {} I receive an error. err: Could not parse for environment production: Syntax error
2010 Oct 12
1
err: Could not retrieve catalog: Could not parse for environment production: Could not find file /etc/puppet/manifests/site.pp warning: Not using cache on failed catalog
I change my ubuntu to mac os, and rsync my puppet file to the puppet server. I run puppetd -tv in the client, and then this error happens puppetd -tv err: Could not retrieve catalog: Could not parse for environment production: Could not find file /etc/puppet/manifests/site.pp warning: Not using cache on failed catalog -- You received this message because you are subscribed to the Google Groups
2005 Apr 15
1
pp-test in timeseries
Test for stationarity (pp-test). In R source code all other command executions I understood, but how I am getting the ssqrtl value ssqrtl <- .C ("R_pp_sum", as.vector(u,mode="double"), as.integer(n), as.integer(l), trm=as.double(ssqru), PACKAGE="ts") please explain the above command. Thanks in advance Ramesh [[alternative HTML version
2003 Jul 21
1
portupgrade -PP needs glasses ?
does anybody have the same problem as I have : (running CURRENT, but the problem occurs on STABLE too) latest portupgrade, ports cvsuped today. fully reproductible with any package... am i missing something ? i hope yes... portinstall -PP teTeX ---> Checking the availability of the latest package of 'print/teTeX' ---> Fetching the package(s) for 'teTeX-2.0.2_2'
2013 Jun 10
1
cannot using LDAP nodes with site.pp together?
*FROM:* http://projects.puppetlabs.com/projects/puppet/wiki/LDAP_Nodes """* NOTE: You can use node entries in your manifests together with LDAP nodes. External or LDAP nodes will be used before node entries. You cannot however use LDAP nodes and external nodes together. You must use one of these two types.* """ But, in *PRO PUPPET* page 127: """ *Note
2011 Jul 13
2
nodes.pp in different environments
Hi guys I have a small question, I have 3 environments in puppet.conf file: [development] modulepath=/etc/puppet/development/modules manifests=/etc/puppet/development/manifests/site.pp I have defined the site.pp path, my question is do I need to make a nodes.pp for every environment?????? Thanks -- You received this message because you are subscribed to the Google Groups "Puppet
2005 Nov 22
3
R: pp plot
hi all i would like to know if anyone has a reference on how one would place the "bands" on the pp plot. i want to test whether or not a certain data set comes from a particular distribution (not normal). i've already plotted F(X(j)) vs j/(n+1) where F(x) is the cum dist function, X(j) is the j'th order statistic and n is the sample size. a goole search gave arb references
2011 Mar 23
1
way of importing .pp file or some string that contain class definition in ruby dsl
I''m finding the way to import a file or a class stored in string in ruby manifest. I have tried following code to parse the class having packages and services. pp = Puppet::Parser::Parser.new("development") pp.string = "class webhttpd{package { ''httpd'': ensure => installed, } service { ''httpd'': ensure => running, enable =>
2013 Mar 11
1
using parameter with puppet dashboard and site.pp
I have just set up my puppet dashboard to be used as a ENC. This is for the time being the easiest way to get support guys to add nodes to classes. I have to use global parameters in my modules if I would like to declare parameters using dashboard as the ENC. So I have a module which does this: class resolver ($domain_name=$::domainname, $search_path=$::searchpath,