Re: [Puppet Users] fileserver.conf -- files not serving

2015-07-28 Thread Jonathan Gazeley

You could consider running SSH or rsync on port 8140...

Cheers,
Jonathan


On 27/07/15 19:58, Peter Berghold wrote:

Hi there,

I am trying to keep Puppet modules in sync between Puppet masters in 
an environment where SSH is being blocked between the masters (long 
story there, corporate security rules), Git and other such are not an 
option but I can use port 8140 between them.


So I set up a fileserver.conf like thus:

[data]
  path=/data
  allow *

and added this to the auth.conf file:

path ~ ^/file_(metadata|content)s?/data/
auth yes
allow *

and one of the classes managing this looks like:
class puppet::master::classdir {
  include puppet::params
  $src_uri = 'puppet:///data/puppet-modules'

  file { '/data/puppet-modules':
source  = $src_uri,
owner   = root,
group   = root,
mode= '0755',
recurse = true
  }
}

and when the Puppet agent runs I see this:

Error: 
/Stage[main]/Puppet::Master::Classdir/File[/data/puppet-modules]: 
Failed to generate additional resources using 'eval_generate': Error 
400 on SERVER: Not authorized to call search on 
/file_metadata/data/puppet-modules with {:recurse=true, 
:checksum_type=md5, :links=manage}
Error: 
/Stage[main]/Puppet::Master::Classdir/File[/data/puppet-modules]: 
Could not evaluate: Could not retrieve file metadata for 
puppet:///data/puppet-modules: Error 400 on SERVER: Not authorized to 
call find on /file_metadata/data/puppet-modules with 
{:source_permissions=use, :links=manage}

Wrapped exception:
Error 400 on SERVER: Not authorized to call find on 
/file_metadata/data/puppet-modules with {:source_permissions=use, 
:links=manage}



OK.. so what am I missing here?
--
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, send 
an email to puppet-users+unsubscr...@googlegroups.com 
mailto:puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/CAArvnv0V2GxEh_6kVB54VWf11MrX7LN5javu9ipL5T6r40kVaw%40mail.gmail.com 
https://groups.google.com/d/msgid/puppet-users/CAArvnv0V2GxEh_6kVB54VWf11MrX7LN5javu9ipL5T6r40kVaw%40mail.gmail.com?utm_medium=emailutm_source=footer.

For more options, visit https://groups.google.com/d/optout.


--
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/55B790D7.2030807%40bristol.ac.uk.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Windows basic file permission error on some computers

2015-07-28 Thread jmp242
I'm using basic file permissions with puppet 3.8.1 on Windows 7 x64. I've 
got a resource:
file { 'chocolatey.config':
path= C:/ProgramData/chocolatey/config/chocolatey.config,
content = template('yum/chocolatey.config.erb'),
owner   = 'SYSTEM',
group   = 'Administrators',
mode= '0775',
ensure  = present,
require = Exec['chocolatelyinstall'],
  }

For a limited set of computers, I'm getting 

change from {md5}eedc18d21cf625bb6c04902e8a9dd409 to 
 {md5}4efbb2600ee773122152faec7ae80934 failed: Failed to set group to 
 'S-1-5-32-544': Failed to initialize ACL: The parameter is incorrect. 


This seems pretty strange to me - doing the above has always worked before, 
and works on most computers. How might I go about debugging or fixing this?

-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/85556532-7790-48ba-830b-32a0b7d96e85%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Puppet Users] Release Note Notification

2015-07-28 Thread Martin
Hi,

not sure wether those are official (but I think so):

* https://groups.google.com/forum/#!forum/puppet-announce
* https://groups.google.com/forum/#!forum/puppet-security-announce

/Martin

On Tue, Jul 28, 2015 at 2:13 PM Michael Speth spethm.landc...@gmail.com
wrote:

 Greetings,
   Is there a way to receive a notification when a new release of the Puppet
 Server
 https://docs.puppetlabs.com/puppetserver/latest/release_notes.html
 and/or Puppet Client?

 Thank you

 --
 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, send an
 email to puppet-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/puppet-users/4913755d-cea9-4bb3-a30e-5fc9d0204e32%40googlegroups.com
 https://groups.google.com/d/msgid/puppet-users/4913755d-cea9-4bb3-a30e-5fc9d0204e32%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.

-- 
-- 
http://www.xing.com/profile/Martin_Marcher
http://www.linkedin.com/in/martinmarcher
Mobil: +43 / 660 / 62 45 103
UID: ATU68801424

-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/CAK1mKES%2BcKEMJc1K72pefijMj_f9_auz6o6d7vz40xyyy5pi4g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Puppet Users] fileserver.conf -- files not serving

2015-07-28 Thread Peter Berghold
Wouldn't thar collide with the Puppet master process listening on 8140?

On Tue, Jul 28, 2015, 10:25 Jonathan Gazeley jonathan.gaze...@bristol.ac.uk
wrote:

  You could consider running SSH or rsync on port 8140...

 Cheers,
 Jonathan



 On 27/07/15 19:58, Peter Berghold wrote:

 Hi there,

  I am trying to keep Puppet modules in sync between Puppet masters in an
 environment where SSH is being blocked between the masters (long story
 there, corporate security rules), Git and other such are not an option but
 I can use port 8140 between them.

  So I set up a fileserver.conf like thus:

  [data]
   path=/data
   allow *

  and added this to the auth.conf file:

  path ~ ^/file_(metadata|content)s?/data/
 auth yes
 allow *

  and one of the classes managing this looks like:
  class puppet::master::classdir {
   include puppet::params
   $src_uri = 'puppet:///data/puppet-modules'

file { '/data/puppet-modules':
 source  = $src_uri,
 owner   = root,
 group   = root,
 mode= '0755',
 recurse = true
   }
 }

  and when the Puppet agent runs I see this:

  Error: /Stage[main]/Puppet::Master::Classdir/File[/data/puppet-modules]:
 Failed to generate additional resources using 'eval_generate': Error 400 on
 SERVER: Not authorized to call search on /file_metadata/data/puppet-modules
 with {:recurse=true, :checksum_type=md5, :links=manage}
 Error: /Stage[main]/Puppet::Master::Classdir/File[/data/puppet-modules]:
 Could not evaluate: Could not retrieve file metadata for
 puppet:///data/puppet-modules: Error 400 on SERVER: Not authorized to call
 find on /file_metadata/data/puppet-modules with
 {:source_permissions=use, :links=manage}
 Wrapped exception:
 Error 400 on SERVER: Not authorized to call find on
 /file_metadata/data/puppet-modules with {:source_permissions=use,
 :links=manage}


  OK.. so what am I missing here?

 --
 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, send an
 email to puppet-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/puppet-users/CAArvnv0V2GxEh_6kVB54VWf11MrX7LN5javu9ipL5T6r40kVaw%40mail.gmail.com
 https://groups.google.com/d/msgid/puppet-users/CAArvnv0V2GxEh_6kVB54VWf11MrX7LN5javu9ipL5T6r40kVaw%40mail.gmail.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.


  --
 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, send an
 email to puppet-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/puppet-users/55B790D7.2030807%40bristol.ac.uk
 https://groups.google.com/d/msgid/puppet-users/55B790D7.2030807%40bristol.ac.uk?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.


-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/CAArvnv07zRGxSJ74Pge2eAqpfRq-fbhWc3H_WBfP%3D%2BkpNGB3Lw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: Puppet Enterprise 2015.2 is now available!

2015-07-28 Thread Vince Skahan
On Tuesday, July 28, 2015 at 9:02:34 AM UTC-7, Stephanie Stouck wrote:

 The new Puppet Enterprise 2015.2 is here! We've added features to help you 
 deploy and move faster without sacrificing reliability, with new 
 capabilities to:


I give up.  I can't tell what this is.

Is this the first PE based on open source 4.x ?
Or the next PE based on open source 3.8.x ?

You don't say either way.
Your download link points to 3.8

c'mon you have to at least 'try' to document thing 

-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/73a0e8ac-1897-48e7-9e54-db616885849a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Puppet Enterprise 2015.2 is now available!

2015-07-28 Thread Stephanie Stouck
Hi all,

The new Puppet Enterprise 2015.2 is here! We've added features to help you 
deploy and move faster without sacrificing reliability, with new 
capabilities to:

   - Visualize your infrastructure code to understand relationships across 
   node configurations and respond to changes quickly
   - Automate provisioning for VMware vSphere virtual machines
   - Manage infrastructure faster with a next-generation Puppet Enterprise 
   web UI
   - Easily move your open source Puppet implementation to Puppet 
   Enterprise with a new unified agent

You can check out this page to see more of what’s new: 
https://puppetlabs.com/puppet/whats-new

As always, let us know if you have questions or feedback.

Thanks,
Stephanie

-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/31d2cecf-3525-4bd8-9d75-4700e3a3ae1c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: Memory leak in Passenger ?

2015-07-28 Thread Michael Wörz


  set PassengerMaxRequests = 1


thanks, this seems to help. memory usage was constant last 3 days. 

-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/27abdd0f-1cfb-40ea-98c2-e5cc59f06cca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Release Note Notification

2015-07-28 Thread Michael Speth
Greetings,
  Is there a way to receive a notification when a new release of the Puppet 
Server https://docs.puppetlabs.com/puppetserver/latest/release_notes.html 
and/or Puppet Client?

Thank you

-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/4913755d-cea9-4bb3-a30e-5fc9d0204e32%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: Puppet Enterprise 2015.2 is now available!

2015-07-28 Thread Stephanie Stouck
Many apologies if folks may be a little confused. This is a new versioning 
system https://docs.puppetlabs.com/pe/latest/pe_versioning.html for our 
enterprise product. We've done this in an effort to be more explicit about 
product versioning, which should also result in fewer namespace (version 
space) collisions with individual upstream projects.

This is a major release as Puppet Enterprise 2015.2 marks a new series. It 
has a new Puppet, new Puppet Server, totally new UI, and the all-in-one 
unified agent. For more information on the versioning please check out the blog 
post 
https://puppetlabs.com/blog/updated-version-numbering-puppet-enterprise 
we released earlier today. 

Finally, thank you for catching the 3.8 reference at the bottom of the 
page. We've got that updated. 

On Tuesday, July 28, 2015 at 9:10:15 AM UTC-7, Vince Skahan wrote:

 On Tuesday, July 28, 2015 at 9:02:34 AM UTC-7, Stephanie Stouck wrote:

 The new Puppet Enterprise 2015.2 is here! We've added features to help 
 you deploy and move faster without sacrificing reliability, with new 
 capabilities to:


 I give up.  I can't tell what this is.

 Is this the first PE based on open source 4.x ?
 Or the next PE based on open source 3.8.x ?

 You don't say either way.
 Your download link points to 3.8

 c'mon you have to at least 'try' to document thing 


-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/ad3fa3f4-a452-4b3c-baa7-e2e99f8b0c16%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Puppet Users] fileserver.conf -- files not serving

2015-07-28 Thread Peter Berghold
Solved it.  Had to play with /etc/puppet/auth.conf to get it to work.  I've
published a blog page about it.
http://puppet-blog.berghold.net/?p=28#more-28


On Tue, Jul 28, 2015 at 11:45 AM Peter Berghold salty.cowd...@gmail.com
wrote:

 Wouldn't thar collide with the Puppet master process listening on 8140?

 On Tue, Jul 28, 2015, 10:25 Jonathan Gazeley 
 jonathan.gaze...@bristol.ac.uk wrote:

  You could consider running SSH or rsync on port 8140...

 Cheers,
 Jonathan



 On 27/07/15 19:58, Peter Berghold wrote:

 Hi there,

  I am trying to keep Puppet modules in sync between Puppet masters in an
 environment where SSH is being blocked between the masters (long story
 there, corporate security rules), Git and other such are not an option but
 I can use port 8140 between them.

  So I set up a fileserver.conf like thus:

  [data]
   path=/data
   allow *

  and added this to the auth.conf file:

  path ~ ^/file_(metadata|content)s?/data/
 auth yes
 allow *

  and one of the classes managing this looks like:
  class puppet::master::classdir {
   include puppet::params
   $src_uri = 'puppet:///data/puppet-modules'

file { '/data/puppet-modules':
 source  = $src_uri,
 owner   = root,
 group   = root,
 mode= '0755',
 recurse = true
   }
 }

  and when the Puppet agent runs I see this:

  Error:
 /Stage[main]/Puppet::Master::Classdir/File[/data/puppet-modules]: Failed to
 generate additional resources using 'eval_generate': Error 400 on SERVER:
 Not authorized to call search on /file_metadata/data/puppet-modules with
 {:recurse=true, :checksum_type=md5, :links=manage}
 Error: /Stage[main]/Puppet::Master::Classdir/File[/data/puppet-modules]:
 Could not evaluate: Could not retrieve file metadata for
 puppet:///data/puppet-modules: Error 400 on SERVER: Not authorized to call
 find on /file_metadata/data/puppet-modules with
 {:source_permissions=use, :links=manage}
 Wrapped exception:
 Error 400 on SERVER: Not authorized to call find on
 /file_metadata/data/puppet-modules with {:source_permissions=use,
 :links=manage}


  OK.. so what am I missing here?

 --
 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, send an
 email to puppet-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/puppet-users/CAArvnv0V2GxEh_6kVB54VWf11MrX7LN5javu9ipL5T6r40kVaw%40mail.gmail.com
 https://groups.google.com/d/msgid/puppet-users/CAArvnv0V2GxEh_6kVB54VWf11MrX7LN5javu9ipL5T6r40kVaw%40mail.gmail.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.


  --
 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, send an
 email to puppet-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/puppet-users/55B790D7.2030807%40bristol.ac.uk
 https://groups.google.com/d/msgid/puppet-users/55B790D7.2030807%40bristol.ac.uk?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.



-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/CAArvnv0REiZiXCnh7wNfx2ajNQDvZC0t-YWe8wOkqf%3Dw1mPO3w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] puppetlabs-splunk needs LOTS of usage examples

2015-07-28 Thread Vince Skahan
Does anybody actually use the puppetlabs-splunk module ?

I've been battling this for too many hours and have a bunch of questions.  
I can't really find any references via Google that this is getting much 
usage, and the documentation in the module itself seems essentially 
non-existent, but I thought I'd ask just in case:

   - how do you define a section for inputs.conf that has multiple 
   key=value pairs

If I wanted a inputs.conf stanza of the following, how do I make that 
happen ?

[monitor:///var/log/nginx]
disabled = false
index = main
sourcetype = nginx


 I came up with the following, but the problem is it only permits 
'one' setting and value.

splunkforwarder_input { 'nginx':
section = 'monitor:///var/log/nginx',
setting = 'disabled'
value = 'false',
  }

Is there a way to get it to accept multiple free-form multiple key=value 
pairs ?  It's using their ini module under the hood isn't it ? Is there a 
secret decoder ring of examples someplace ?


   - the README file seems totally wrong to me. On a centos6 system, it 
   doesn't try to install the universal forwarder rpm from the source tree it 
   tells you to build, and it doesn't use the version/build info it tells you 
   to put into parameters. It does a 'yum install splunkforwarder' with odd 
   options, and no (visible to me) way to control yum options, which repo(s) 
   are enabled/disabled, etc.   While the installation 'does' work and it 
   enables and starts the process well, the whole thing seems like half a 
   solution with a tenth of the docs that I'd expect a 'supported' module to 
   have.

FWIW, I only figured out what was expected by reading the (minimal) tests 
in the module sources.  I'd have expected some examples/readme files to 
save hundreds of potential users that pain.


class { 'splunk::params':
 version = '6.1.2',
 build   = '213098',
 server  = 'splunk.apps.oris.washington.edu',
  }
class { 'splunk::forwarder' :

  }


Am I missing something in how to decipher this thing ?  Should we have to 
spend hours trying to reverse engineer a basically undocumented module that 
doesn't even really say what it does/doesn't support in terms of 
functionality or should we just shop elsewhere or roll our own ?  Guess I'm 
pretty lost/confused/tired of battling this thing.  Ideas ?



 


-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/8b8b7771-8de0-44c0-a419-be847ffe77a0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Puppet Users] Release Note Notification

2015-07-28 Thread Melissa Stone
On Tue, Jul 28, 2015 at 6:18 AM, Martin mar...@marcher.name wrote:
 Hi,

 not sure wether those are official (but I think so):

 * https://groups.google.com/forum/#!forum/puppet-announce
 * https://groups.google.com/forum/#!forum/puppet-security-announce

Yes, both of those google groups are official. All releases are
announced through puppet-announce. All security releases are
additionally announced with puppet-security-announce


 /Martin

 On Tue, Jul 28, 2015 at 2:13 PM Michael Speth spethm.landc...@gmail.com
 wrote:

 Greetings,
   Is there a way to receive a notification when a new release of the
 Puppet Server and/or Puppet Client?

 Thank you

 --
 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, send an
 email to puppet-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/puppet-users/4913755d-cea9-4bb3-a30e-5fc9d0204e32%40googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

 --
 --
 http://www.xing.com/profile/Martin_Marcher
 http://www.linkedin.com/in/martinmarcher
 Mobil: +43 / 660 / 62 45 103
 UID: ATU68801424

 --
 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, send an
 email to puppet-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/puppet-users/CAK1mKES%2BcKEMJc1K72pefijMj_f9_auz6o6d7vz40xyyy5pi4g%40mail.gmail.com.

 For more options, visit https://groups.google.com/d/optout.



-- 
Melissa Stone
Release Engineer, Puppet Labs
--

PuppetConf 2015 is coming to Portland, Oregon! Join us October 5-9.
Register now to take advantage of the Early Bird discount —save $249!

-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/CAHEe_kot%3Dw6u3vMX3VKVh9LJi8r%2BfnnjSC9P4P4c%3Dt%3D30DeMeA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Puppet Users] puppetlabs-splunk needs LOTS of usage examples

2015-07-28 Thread Sandor W. Sklar
I had the same experience; I wound up rolling my own, because I just needed something simple that worked to set up the forwarder. I’ve attached it, maybe you’ll find it useful.	- Sandy



-- 
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, send an email to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/B16AE9A8-47C9-4959-A243-61DAE79CDAE9%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


ssklar-splunk.tar.gz
Description: GNU Zip compressed data
On Jul 28, 2015, at 10:31 AM, Vince Skahan vinceska...@gmail.com wrote:Does anybody actually use the puppetlabs-splunk module ?I've been battling this for too many hours and have a bunch of questions. I can't really find any references via Google that this is getting much usage, and the documentation in the module itself seems essentially non-existent, but I thought I'd ask just in case:how do you define a section for inputs.conf that has multiple key=value pairsIf I wanted a inputs.conf stanza of the following, how do I make that happen ?[monitor:///var/log/nginx]disabled = falseindex = mainsourcetype = nginx  I came up with the following, but the problem is it only permits 'one' setting and value.splunkforwarder_input { 'nginx': section = 'monitor:///var/log/nginx', setting = 'disabled' value = 'false', }Is there a way to get it to accept multiple free-form multiple key=value pairs ? It's using their ini module under the hood isn't it ? Is there a secret decoder ring of examples someplace ?the README file seems totally wrong to me. On a centos6 system, it doesn't try to install the universal forwarder rpm from the source tree it tells you to build, and it doesn't use the version/build info it tells you to put into parameters. It does a 'yum install splunkforwarder' with odd options, and no (visible to me) way to control yum options, which repo(s) are enabled/disabled, etc. While the installation 'does' work and it enables and starts the process well, the whole thing seems like half a solution with a tenth of the docs that I'd expect a 'supported' module to have.FWIW, I only figured out what was expected by reading the (minimal) tests in the module sources. I'd have expected some examples/readme files to save hundreds of potential users that pain.class { 'splunk::params': version = '6.1.2', build = '213098', server = 'splunk.apps.oris.washington.edu', }class { 'splunk::forwarder' : }Am I missing something in how to decipher this thing ? Should we have to spend hours trying to reverse engineer a basically undocumented module that doesn't even really say what it does/doesn't support in terms of functionality or should we just shop elsewhere or roll our own ? Guess I'm pretty lost/confused/tired of battling this thing. Ideas ?

-- 
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, send an email to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/8b8b7771-8de0-44c0-a419-be847ffe77a0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.




-- 
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, send an email to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/B16AE9A8-47C9-4959-A243-61DAE79CDAE9%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: Lucid leaving apt.puppetlabs.com

2015-07-28 Thread Ehsan Foroughi
Hi

I understand that you won't build new packages any longer. But why are you 
removing the old packages?
Why can't you keep the packages around? Some of these packages are needed 
in order to upgrade to a newer release.

Is there an archive server at least where the old packages could be found? 
Almost all mature open source projects still offer a historical archives of 
the old packages.

I feel that one thing puppet labs is failing to understand here is how 
puppet is the perfect technology to update those end-of-life systems and 
how harmful is this removal of old packages to your own technology that you 
have built here.

Regards
Ehsan

On Wednesday, April 22, 2015 at 2:40:17 PM UTC-4, Melissa Stone wrote:

 Ubuntu 10.04 (Lucid Lynx) will reach end of life on 2015-04-30 [1], so we 
 are no
 longer building new packages for it and will remove it from our apt
 repository on 2015-06-01.

 [1] - 
 https://lists.ubuntu.com/archives/ubuntu-announce/2015-March/000193.html

 -- 
 Melissa Stone
 Release Engineer, Puppet Labs
 --

 *PuppetConf 2015 http://2015.puppetconf.com/ is coming to Portland, 
 Oregon! Join us October 5-9.*
 *Register now to take advantage of the Early Adopter discount 
 https://www.eventbrite.com/e/puppetconf-2015-october-5-9-tickets-13115894995?discount=EarlyAdopter
  *
 *—**save $349!*
  

-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/f288ecd3-8676-4974-b4ad-f31e9285a703%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Puppet Users] Re: Lucid leaving apt.puppetlabs.com

2015-07-28 Thread Christopher Wood
There's a valuable lesson to be had here on external dependencies in your 
configuration management deployment. At least you can grep your unpacked rpms 
and puppet git tree to find any more that may exist?

On Tue, Jul 28, 2015 at 04:24:13PM -0400, Ehsan Foroughi wrote:
Going forward we will be doing that. Unfortunately it is too late for
lucid. We are already in hot water since the files are already removed and
nowhere to be found.
Also the old servers are all pointing to that repo and due to our
deployment, we don't have direct access to those servers.
Ehsan
On Tue, Jul 28, 2015 at 4:21 PM, Vince Skahan [1]vinceska...@gmail.com
wrote:
 
  Totally agree with those sentiments.most projects have something ala
  '[2]archives.something.com' site with the historical releases.
 
  That said, you 'could' mirrror the puppetlabs stuff with reposync (or
  .deb equivalent) and set up your local copy to add and not delete
  anything...
 
--
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, send an
email to [3]puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit

 [4]https://groups.google.com/d/msgid/puppet-users/CACEo7Bh3SkoHhZWQNGuJL%2BOmn%3DiwCzRfJtUGoSA73LAetMndnA%40mail.gmail.com.
For more options, visit [5]https://groups.google.com/d/optout.
 
 References
 
Visible links
1. mailto:vinceska...@gmail.com
2. http://archives.something.com/
3. mailto:puppet-users+unsubscr...@googlegroups.com
4. 
 https://groups.google.com/d/msgid/puppet-users/CACEo7Bh3SkoHhZWQNGuJL%2BOmn%3DiwCzRfJtUGoSA73LAetMndnA%40mail.gmail.com?utm_medium=emailutm_source=footer
5. https://groups.google.com/d/optout

-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/20150728205900.GA21668%40iniquitous.heresiarch.ca.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: Lucid leaving apt.puppetlabs.com

2015-07-28 Thread Vince Skahan
Totally agree with those sentiments.most projects have something ala 
'archives.something.com' site with the historical releases.

That said, you 'could' mirrror the puppetlabs stuff with reposync (or .deb 
equivalent) and set up your local copy to add and not delete anything...


-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/6d0936e8-416c-4587-92dd-3080d826638f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: Lucid leaving apt.puppetlabs.com

2015-07-28 Thread Ehsan Foroughi
Going forward we will be doing that. Unfortunately it is too late for
lucid. We are already in hot water since the files are already removed and
nowhere to be found.

Also the old servers are all pointing to that repo and due to our
deployment, we don't have direct access to those servers.

Ehsan

On Tue, Jul 28, 2015 at 4:21 PM, Vince Skahan vinceska...@gmail.com wrote:

 Totally agree with those sentiments.most projects have something ala '
 archives.something.com' site with the historical releases.

 That said, you 'could' mirrror the puppetlabs stuff with reposync (or .deb
 equivalent) and set up your local copy to add and not delete anything...




-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/CACEo7Bh3SkoHhZWQNGuJL%2BOmn%3DiwCzRfJtUGoSA73LAetMndnA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[Puppet Users] Re: Puppet Enterprise 2015.2 is now available!

2015-07-28 Thread Stephanie Stouck
Vince and I have been chatting about this offline for further clarification 
therefore I wanted to make sure I shared this with all.

Puppet Enterprise 2015.2 is based off the latest Open Source Puppet code 
base which is 4.2.1. This means you get everything that is currently 
available in Open Source Puppet 4.2.1 which includes:

   - Language enhancements - 
   
https://puppetlabs.com/blog/puppet-language-enhancements-deliver-greater-reliability
   - Citrix NetScaler module - 
   https://forge.puppetlabs.com/puppetlabs/netscale 
   https://forge.puppetlabs.com/puppetlabs/netscaler
   - Unified Agent 

Plus commercial-only capabilities such as:

   - Node Graph Visualization - This is really cool! Check it out: 
   https://puppetlabs.com/blog/visualize-your-infrastructure-models
   - Updated web UI
   - VMware vSphere module - https://forge.puppetlabs.com/puppetlabs/vsphere

Thanks again Vince for the excellent feedback.



On Tuesday, July 28, 2015 at 9:40:26 AM UTC-7, Stephanie Stouck wrote:

 Many apologies if folks may be a little confused. This is a new 
 versioning system 
 https://docs.puppetlabs.com/pe/latest/pe_versioning.html for our 
 enterprise product. We've done this in an effort to be more explicit about 
 product versioning, which should also result in fewer namespace (version 
 space) collisions with individual upstream projects.

 This is a major release as Puppet Enterprise 2015.2 marks a new series. It 
 has a new Puppet, new Puppet Server, totally new UI, and the all-in-one 
 unified agent. For more information on the versioning please check out the 
 blog 
 post 
 https://puppetlabs.com/blog/updated-version-numbering-puppet-enterprise 
 we released earlier today. 

 Finally, thank you for catching the 3.8 reference at the bottom of the 
 page. We've got that updated. 

 On Tuesday, July 28, 2015 at 9:10:15 AM UTC-7, Vince Skahan wrote:

 On Tuesday, July 28, 2015 at 9:02:34 AM UTC-7, Stephanie Stouck wrote:

 The new Puppet Enterprise 2015.2 is here! We've added features to help 
 you deploy and move faster without sacrificing reliability, with new 
 capabilities to:


 I give up.  I can't tell what this is.

 Is this the first PE based on open source 4.x ?
 Or the next PE based on open source 3.8.x ?

 You don't say either way.
 Your download link points to 3.8

 c'mon you have to at least 'try' to document thing 



-- 
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, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/99d8457a-4ad3-4bb0-ad6b-051b6e16bbcc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.