Thanks for all your advices, will be very very useful.
Just one thing about versionning : I personnally put into git
everything I can. The sysadmins at my new job don't have this habit,
this is just a fact.
So it's obvious I'll spend some afternoons to teach them git, svn or
any vcs, but sometimes
Hi, quick question:
I have been following the thread: "Splitting classes into separate
files" and decided to to some refactoring based on that. I have the
following file structure for a module
modules/packages/manifests/init.pp
modules/packages/manifests/classes/redis.pp
~/puppet_config$ cat
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
> Also, none of the other files created by puppet types are set to be
> readable only by root. I think this might be a bug in puppet.
> Surprised no one has noticed it before.
http://projects.puppetlabs.com/issues/3299
cheers pete
-BEGIN PGP SIGN
Hiya,
I've recently updated my svn server so that it checks the syntax of
.erb files, on commit, along with .pp files. While doing this, I ran
across a small but niggling issue and wanted to see if I was just
doing something wrong or if it was a bug.
In my sudoers template file, I have a number
Hi.
I googled for this thoroughly but couldn't find any module that
actually worked.
Is there any good puppet module or manifest for installing Sun JDK?
Thanks.
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email
I need to switch machines from DHCP to static IP, any good module for
this?
Regards.
On Jul 6, 12:45 am, SyRenity wrote:
> Hi.
>
> Can someone recommend a good module for network control?
>
> Regards.
--
You received this message because you are subscribed to the Google Groups
"Puppet Users"
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi
> I googled for this thoroughly but couldn't find any module that
> actually worked.
>
> Is there any good puppet module or manifest for installing Sun JDK?
we usually re-package SunJDK with jpackage and put it in our own repo,
then it is simply
Good day to you.
I've updated my puppetmaster and clients to 0.25.x and also updated
file serving paths to include "/modules/". I also use foreman to
monitor puppetd reports, after update there are sporadically emerging
errors :
"Failed to retrieve current state of resource: Mounts without paths
a
Hi.
>
> we usually re-package SunJDK with jpackage and put it in our own repo,
> then it is simply a matter of package installation. this makes also
> updating etc. a lot easier.
>
Is there any good HOWTO you can recommend, or spec files you can
share?
Regards.
--
You received this message bec
We would need a lot more information to be helpful - what OS are you using,
or what distribution if Linux, and how do you want to control the ip's for
machines - variables, a database, ldap?
On Tue, Jul 6, 2010 at 4:01 AM, SyRenity wrote:
> I need to switch machines from DHCP to static IP, any g
On Tuesday 06 Jul 2010 08:42:55 christopher floess wrote:
> Hi, quick question:
>
> I have been following the thread: "Splitting classes into separate
> files" and decided to to some refactoring based on that. I have the
> following file structure for a module
>
> modules/packages/manifests/init.
> We would need a lot more information to be helpful - what OS are you using,
> or what distribution if Linux, and how do you want to control the ip's for
> machines - variables, a database, ldap?
CentOS 5.5, variables for now.
I'm using foreman, so storing these values in DB comes with it.
Rega
On Jul 6, 2010, at 3:59 AM, SyRenity wrote:
> I googled for this thoroughly but couldn't find any module that
> actually worked.
>
> Is there any good puppet module or manifest for installing Sun JDK?
I don’t know what OS you’re on, but under RHEL5, I just installed this like any
other package.
Well, how do I use the content of a variable in regex?
$username = "user1"
file { "userdata.tar.bz2":
source => "puppet://$server/modules/$module/
userdata.tar.bz2",
ensure => $users ? {
/$username/ => absent,
hi guys,
I am having an unusual behaviour in puppet with AIX (client node) while
copying ssh key from puppet-server to client.
here is what i am trying to do;
$username = "xyz"
$group = "system"
$home = "/home"
$sshDir = ".ssh"
$pub_key = "id_rsa.pub.xyz"
1. creating all users virtually in on
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi
>> we usually re-package SunJDK with jpackage and put it in our own repo,
>> then it is simply a matter of package installation. this makes also
>> updating etc. a lot easier.
>>
>
> Is there any good HOWTO you can recommend, or spec files you can
Haris,
On Jul 6, 7:19 am, "M.F.Haris" wrote:
> $sourcepath = $operatingsystem ? {
> AIX => "/etc/puppet/modules/userkeys/files/$pub_key.$username",
> default => "puppet:///SLES/$pub_key.${username}",
> }
Here, on the AIX path you tell it to copy the id_dsa.pub /from a local
f
You are probably using an older version of ruby.
on line 69 remove the opts in the to_yaml declaration (->
configuration.to_yaml())
On Jun 24, 5:25 pm, "Thomas A. McGonagle" wrote:
> Hello Fellows,
> I am running into an odd bug trying to setup External Nodes with
> Puppet Dashboard. I have a pr
On Tue, Jul 6, 2010 at 1:15 AM, Peter Meier wrote:
> Hi
>
>> I googled for this thoroughly but couldn't find any module that
>> actually worked.
>>
>> Is there any good puppet module or manifest for installing Sun JDK?
>
> we usually re-package SunJDK with jpackage and put it in our own repo,
> th
On Mon, Jul 5, 2010 at 9:56 PM, christopher floess wrote:
>
> We work on this by keeping the puppet configuration in Subversion. We
>> then
>> have a Makefile at the top level which runs a puppet syntax check on any
>> modified file before a commit.
>>
>>
> Uh, would you mind divulging to someon
On Tue, Jul 6, 2010 at 12:52 AM, Tim wrote:
>
> I realise that one solution here is to just not check the syntax of
> the template with erb (as it works absolutely fine with a single %)..
> However, it feels a little bit broken or (quite possibly) I'm missing
> something obvious so would be good t
I use this for rhel/foreman:
init.pp
class network {
tag("bootstrap")
file { "ifcfg-eth0":
path =>
"/etc/sysconfig/network-scripts/ifcfg-eth0",
owner => root,
group => root,
On Tue, Jul 6, 2010 at 12:42 AM, christopher floess wrote:
> Hi, quick question:
>
> I have been following the thread: "Splitting classes into separate files"
> and decided to to some refactoring based on that. I have the following file
> structure for a module
Great, thanks for taking the time t
On Tue, Jul 6, 2010 at 6:40 AM, Christian Casar wrote:
> Well, how do I use the content of a variable in regex?
...
> But things like /$variable/ or /\$variable/ or /#{variable}/ just
> don't work.
> Is it even possible in version 0.25.4?
I couldn't get this to work either.
I get the same behavi
On Tue, Jul 6, 2010 at 12:46 AM, Peter Meier wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
>> Also, none of the other files created by puppet types are set to be
>> readable only by root. I think this might be a bug in puppet.
>> Surprised no one has noticed it before.
>
> http://proj
On Jul 6, 2010, at 6:40 AM, Christian Casar wrote:
> Well, how do I use the content of a variable in regex?
>
> $username = "user1"
> file { "userdata.tar.bz2":
>source => "puppet://$server/modules/$module/
> userdata.tar.bz2",
>ensure => $users ? {
>
On Tue, Jul 6, 2010 at 10:40 AM, Patrick Mohr wrote:
>>
>> Is it even possible in version 0.25.4?
>
> Try changing #{variable} to ${variable}
I tried this, it doesn't work.
Here's my test:
# Regular Expression Test
$who = "jeff"
$party = "jeff, john, bill, carrie"
$match = $party? {
/"${jef
Douglas Garstang wrote:
> On Tue, Jul 6, 2010 at 12:46 AM, Peter Meier wrote:
>> -BEGIN PGP SIGNED MESSAGE-
>> Hash: SHA1
>>
>>> Also, none of the other files created by puppet types are set to be
>>> readable only by root. I think this might be a bug in puppet.
>>> Surprised no one has no
On Tue, Jul 6, 2010 at 11:03 AM, James Turnbull wrote:
> Douglas Garstang wrote:
>> On Tue, Jul 6, 2010 at 12:46 AM, Peter Meier wrote:
>>> -BEGIN PGP SIGNED MESSAGE-
>>> Hash: SHA1
>>>
Also, none of the other files created by puppet types are set to be
readable only by root. I
hi,
are module collecitons (camptocamp, completeconfig, example42)
compatible with a standalone puppet environment. i am looking to have
20+ servers running puppet ( not puppetd ) on demand and would like to
use some of the pre-written modules.
if so, does any one have any quick tips/ helpful i
Hello puppeteers,
We are in the process of upgrading to 0.25.4 and I've discovered an
issue. I have a global class called global that looks like this:
class globals {
$java = "/usr/bin/java"
$javac = "/usr/bin/javac"
$java_home = "/usr/java/jdk1.5.0_15"
$dynamo_home
On Tue, Jul 6, 2010 at 11:52 AM, Jeff wrote:
> Hello puppeteers,
>
> We are in the process of upgrading to 0.25.4 and I've discovered an
> issue. I have a global class called global that looks like this:
>
> class globals {
>
> $java = "/usr/bin/java"
> $javac = "/usr/bin/javac"
On Tue, Jul 6, 2010 at 11:43 AM, TonyR wrote:
>
> hi,
>
> are module collecitons (camptocamp, completeconfig, example42)
> compatible with a standalone puppet environment. i am looking to have
> 20+ servers running puppet ( not puppetd ) on demand and would like to
> use some of the pre-written m
Jeff,
Thanks for the response.
puppet:///modules/modulename/path/to/file.txt source URI's.got
it. is that part of puppet best practices?
T.
On Jul 5, 4:39 pm, Jeff McCune wrote:
> On Mon, Jul 5, 2010 at 10:29 AM, TonyR wrote:
> > I think I've answered one of my questions.
>
> > Based on
On Tue, Jul 6, 2010 at 12:25 PM, TonyR wrote:
> Jeff,
>
> Thanks for the response.
My pleasure.
> puppet:///modules/modulename/path/to/file.txt source URI's. got
> it. is that part of puppet best practices?
Yeah, it's documented at:
http://docs.reductivelabs.com/guides/modules.html
The per
On Jul 6, 3:09 pm, Jeff McCune wrote:
> On Tue, Jul 6, 2010 at 11:52 AM, Jeff wrote:
> > Hello puppeteers,
>
> > We are in the process of upgrading to 0.25.4 and I've discovered an
> > issue. I have a global class called global that looks like this:
>
> > class globals {
>
> > $java = "
Dan Carley wrote:
>
> - In addition to custom types, providers and facts, flapping back and
> forth between environments. It's also not possible to have separate
> fileservers for additional paths between environments. But it's probably
> not something that will affect you at this stage.
>
Dan
puppet --configprint module
i will be using that one. ty
i've loaded camptocamp monit module in my /srv/puppet/modules
directory.
I know i've got to run
puppet --modulepath /srv/puppet/modules
but i am unsure with what other options.
t.
On Jul 6, 3:13 pm, Jeff McCune wrote:
> On Tue, Jul 6
I think i will use something similar to:
sudo puppet -v --modulepath /srv/puppet/modules/ /etc/puppet/manifests/
site.pp
I am not certain what goes in the site.pp for the camp2camp monit
module.
t.
On Jul 6, 4:26 pm, TonyR wrote:
> puppet --configprint module
>
> i will be using that one. ty
>
Hi all
We've made some changes to the IRC bot so he now recognizes URLS from
the Puppet Labs Docs site:
http://docs.puppetlabs.com
You can query them much like you can query Redmine information.
Specify ref: and the reference URL you'd like to retrieve or guide: and
the guide page you'd like, f
40 matches
Mail list logo