Hi,
Suppose I have 3 nodes, and I want puppet to perform a set of steps on
them in a different order:
Apply step A on each of them, then step B on each of them, then step C
on each of them, and so on.
I'm wondering if puppet supports this scenario. Thanks.
--
You received this message because yo
The reason I wasn't able to get it to work was because I didn't know I
have to modify modulepath in /etc/puppet/puppet.conf
[puppetmasterd]
modulepath = /etc/puppet/modules:/usr/share/puppet/modules:/tmp/
puppet/modules
--
You received this message because you are subscribed to the Google Gr
After I did the following, it works. Thanks.
chmod 0665 -R /etc/puppet/modules
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to puppet-us...@googlegroups.com.
To unsubscribe from this group, send email to
pup
Thanks for your reply. I made some changes according to your feedback,
but I'm still unable to copy files to the client. What else am I
missing again?
[r...@puppet ~]# cat /etc/puppet/manifests/site.pp
# site.pp
file { "/tmp/0910.txt":
source => "puppet://puppet.test.123.com/modules/configurat
Hi,
I am running puppet-server 0.25.5 on CentOS 5.4.
I defined a moudle in /etc/puppet/fileserver.conf as below:
[files]
path /tmp/puppet
allow *
I also defined a resource in /etc/puppet/manifests/site.pp:
file { "/etc/passwd":
owner => "root",
group => "bin",
mode => 644,
}
file { "/tmp/0909.t