On Tuesday, May 6, 2014 1:31:48 PM UTC+2, Thomas wrote:
>
> When deploying openvz images, we use a init-script to delete puppets ssl
> directory and then run a curl that deletes the certificate from the puppet
> server:
> curl -k -X DELETE -H "Accept: pson" "
> https://puppet.example.com:8140/pro
Hi all,
We use the roles/profiles/components model originally suggested by Craig
Dunn fairly heavily. In our case:
- The role is a business name, like "Application X App Server"
- The profile is the technical name, like "Base Components" or
"Webserver"
- The components are either
On May 14, 2014, at 12:28 PM, Kirk Steffensen wrote:
> Running in webrick, for the exact same node, we saw 458 seconds to compile
> using directory environments vs 4.5 seconds using the old file-based
> environments.
Kirk, did you try this in 3.6.0-RC1? Later in this thread Antoine reported hi
Running in webrick, for the exact same node, we saw 458 seconds to compile
using directory environments vs 4.5 seconds using the old file-based
environments.
On Thursday, April 17, 2014 5:23:24 AM UTC-4, Antoine Cotten wrote:
>
> Dear Puppet Users community, I would like to report an issue I exp
On 05/14/2014 06:01 PM, Jeremy T. Bouse wrote:
> What fix exactly are you speaking of? I currently have version 3.1.0
deployed from the forge and haven't ran into any major issues with its
functionality.
+1
--
You received this message because you are subscribed to the Google Groups "Puppet
On 14.05.2014 11:54, Stephen Boissiere wrote:
Hi all, I'm hoping somebody can tell me if a new release of the
Rabbit
MQ plugin is imminent, or if not, how stable/tested the latest on
github is?
There's at least one fix I'd like to get hold of but I don't want to
take any undue risks with our li
On Wednesday, May 14, 2014 11:47:25 AM UTC-4, Nan Liu wrote:
>
> kaustubh chaudhari wrote:
>
>
> Can we install puppet agent on ESX host.
>
>
>
> Not aware of a way to install puppet agent.
>
>
> 1. I am provisioning the hosts with PXE and Kickstart in the post
> install, i wish to install pupp
Hi all, I'm hoping somebody can tell me if a new release of the Rabbit MQ
plugin is imminent, or if not, how stable/tested the latest on github is?
There's at least one fix I'd like to get hold of but I don't want to take
any undue risks with our live puppet install.
Thanks,
Steve Boissiere
--
kaustubh chaudhari wrote:
Can we install puppet agent on ESX host.
Not aware of a way to install puppet agent.
1. I am provisioning the hosts with PXE and Kickstart in the post
install, i wish to install puppet agent and mange the host with the same.
Like hardning, network config etc.
A
Hello,
when developping puppet modules i'm:
- providing a test.pp for each puppet class that serves a defined
parameters set to the class
- using git to checkout the complete environment (git clone
ssh://puppetmaster:/etc/puppet/environments/development/modules) into my
home on
Hi,
Can we install puppet agent on ESX host.
1. I am provisioning the hosts with PXE and Kickstart in the post install,
i wish to install puppet agent and mange the host with the same.
Like hardning, network config etc.
2. Use vmware/vcenter module to manage the new host, add it to the
appr
(inline)
On Wed, May 14, 2014 at 09:15:49AM +, Cassiano Leal wrote:
> Hi,
>
> I'd like to ask for advice on certificate trust in a scenario with multiple
> puppet masters.
>
> I'm in a position where I have roughly 50 environments, each with their own
> puppetmaster, running their own CAs.
Hi,
how about using augeasprovider to manage PAM?
http://augeasproviders.com/documentation/examples.html#pam-provider
Stefan
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it,
On Wednesday, May 14, 2014 4:20:08 AM UTC-5, Felix.Frank wrote:
>
> On 05/06/2014 06:04 PM, Marcin wrote:
> > I use exec of course – sample of this is below:
> >
> > exec { " something _${name}":
> >
> > command => $some_command_here,
> >
> > require => something [$order],
I tested this and the match is working OK. What I got from what you posted
is the following:
Error: Failed to apply catalog: Validation of File_line[password policy
change] failed: When providing a 'match' parameter, the value must be a
regex that matches against the value of your 'line' paramete
On Tuesday, May 13, 2014 10:16:16 PM UTC-5, Toky wrote:
>
> Hello all,
>
> I have the following code I use to populate /etc/hosts :
>
> # This module will gather hostnames and IPs in order to populate hosts
> files
>
> class hosts {
>
> host { 'localhost.localdomain':
> ensure=> pr
Logged the
issue(https://github.com/chocolatey/puppet-chocolatey/issues/25). Thanks.
On Wednesday, May 14, 2014 3:15:15 PM UTC+8, Rob Reynolds wrote:
>
> This is probably an issue with the provider. Would you file a ticket at
> https://github.com/chocolatey/puppet-chocolatey/issues and we can tr
Hi Ankit,
I'm not sure what the problem is.
Mcollective has a 'service' plugin that is able to do exactly what you need.
https://github.com/puppetlabs/mcollective-service-agent#readme
On Wednesday, May 14, 2014 3:02:00 AM UTC+2, Ankit Mittal wrote:
>
> Dear All,
>
> I have mcollective agent r
Hi,
I'd like to ask for advice on certificate trust in a scenario with multiple
puppet masters.
I'm in a position where I have roughly 50 environments, each with their own
puppetmaster, running their own CAs.
I also have another environment from where I provide some centralised services,
such
Hi!
I'm trying to update /etc/ssh/sshd_config on a Vagrant vm using the puppet
provider. When I do:
ins PermitRootLogin after /files/etc/ssh/sshd_config/#comment[. =
'PermitRootLogin yes']
in augtool, it works fine.
But nothing I try in my puppet rules works. I've tried a few variants,
inc
Hi,
I'm trying to replace line inside a file with file_line.
file_line { 'password policy change':
ensure => present,
path=> '/tmp/test',
match => 'password.*requisite.*cracklib\.so.*',
line => 'passwordrequisite
pam_cracklib.so retry=3 minlen=8 difok=5 dcredit=-
>From foreman server also puppet kick working.
curl -d 'nodes=puppetagent' https://puppetmaster:8443/puppet/run --insecure
but in foreman UI only puppet kick not working.
Please advise me.
Regards,
Suresh
On Wednesday, 14 May 2014 14:38:50 UTC+5:30, Suresh P wrote:
>
> Hi,
>
> puppet kick is w
On 05/06/2014 06:04 PM, Marcin wrote:
> I use exec of course – sample of this is below:
>
> exec { " something _${name}":
>
> command => $some_command_here,
>
> require => something [$order],
>
> creates => some entry here
>
> }
>
>
>
> but what do I need to put i
This is probably an issue with the provider. Would you file a ticket at
https://github.com/chocolatey/puppet-chocolatey/issues and we can track it
from there?
On Mon, May 12, 2014 at 1:35 AM, Gobin Sougrakpam wrote:
> I have updated "chocolateyinstall.ps1" in my chocolatey package to perform
>
24 matches
Mail list logo