Displaying 10 results from an estimated 10 matches for "puppetcookbook".
2013 Sep 16
4
Executing command via puppet !
Hi,
Is it possible to get response of a command from puppet ?
For example if I run "nginx -t" it would give some details about the
configurations i.e. if configuration has some error then which file has the
error !
Regards
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To unsubscribe from this group and stop receiving
2012 Oct 29
1
intercept/pre-process cert request?
I''m assuming this is possible, but I can''t find a good starting point
anywhere, so I''m hoping someone here can help. What I want to do is,
somewhere in the cert approval process, run an extra check before saying
yes.
I have a puppet master running with auto sign turned on, I bring up a
puppet agent, it connects, authenticates and all is good. What I''d like
2011 Oct 13
2
How to divide the puppet.conf file in multiple files ?
Hi,
How can i divide my puppet.conf file in multiple files ?
I would like to have the [main] and [agent] section in puppet.conf and
[master] in puppetmaster.conf for example. I could call sone "include"
or "import" statement inside puppet.conf to include the content of
puppetmaster.conf in my configuration
Not sure if this is a stupid question, but i could not find any
2011 Apr 30
10
How to check if a package exists
Dear all,
I''m trying to do this. Say for example, I want this link: "liblcgdm.so
-> liblcgdm.so.1.8.0" to be present on the client only if "lcgdm-
libs-1.8.0-1sec.sl5" is already listed. I already have this to create
the link:
file {
''liblcgdm.so'':
ensure => symlink,
name => ''/opt/lcg/lib/liblcgdm.so'',
2011 May 13
5
puppet resource for group
Hi,
Why doesn''t puppet resource group tell me who belongs to the group?
Given the group such as:
mg_team:x:501:smruph, cosman, msmith, mhankey
With the command:
puppet resource group mg_team
only returns:
group { ''mg_team'':
gid => ''501'',
ensure => ''present''
}
I was expecting:
group { ''mg_team'':
2011 Aug 11
6
Vanishing facts
Hello all,
I am running puppet 2.7.1 with mongrel and an apache proxy. I have been
seeing an issue where it appears that the puppetmaster is completely
ignoring any facts that are sent to it.
When a client connects, any configuration that relies on facts shows
those variables as being empty strings. (I have been testing this with
a simple notify resource that prints out the IP address and the
2011 Jun 09
6
Prerun, Postrun Commands, and Stages
Hi all,
I''m looking for background information about how bug #7127[1] should
be fixed: prerun_command don''t stop puppet on error
I think there''s general agreement that if the prerun command fails,
then the catalog should not be applied, but the report should be sent,
and the report''s status should be "failed".
However, what about the post-run
2012 Dec 20
3
Whats the best approach to create a repo of the installers to be used for installing and upgrading in the puppet managed nodes
Lets take the example, I am having a jboss-4.2.3 installers as a .tar file.
In general to install jboss, i ll
1. untar the jboss-4.2.3 into a prefefined folder (opt/server/jbossas/)
into multiple servers
2. untar the openjdk into a preferined path (/opt/software/java)set the
path in the bash.profile
3. Create server profile in the place where jboss is installed
4. Start the server.
Lets say
2012 Jul 17
8
How to override $::operatingsystem fact
Hi,
I want to introduce "Proxmox" as new value in $::operatingsystem.
"Proxmox" is based on Debian, so the normal value is currently "Debian".
To change that, I just write a custom fact based on the facter fact
"operatingsystem"
Facter.add(:operatingsystem) do
> ...
> setcode do
> ...
> elsif
2011 Mar 22
25
RFC: Splitting up the file{} type functionality.
The file{} type can do all of the following:
* manage single files
* manage directories
* manage symlinks
* manage recursive file copies
The intersection of all these bits of functionality makes it difficult
to understand exactly what is going on when you''re new to Puppet, and
even experienced users often don''t know how combining symlinks/content
management is going to work.