Hello a newbie here.
The situation is that:
2 machine one master one client
Puppet 0.24.5
This my configuration:
Client:
/etc/puppet/puppetd.conf
[puppetd]
server = Asus-Vista-Box
logdir = /var/log/puppet
vardir = /var/lib/puppet
rundir = /var/run
master
/etc/puppet/manifests/classes/sudo.pp
class sudo {
file { "/etc/sudoers":
owner => "root",
group => "root",
mode => 440,
}
}
/etc/puppet/manifests/site.pp
import "classes/*"
node default {
include sudo
}
I make
puppetca --list
debian.lokku.net
and
puppetca --sign debian.lokku.net
Signed debian.lokku.net
But even I restart both client and master 100 times if I do:
ls -l /etc/sudoers
-rwxrwxrwx 1 root root 5 2009-10-20 17:52 /etc/sudoers
What I did wrong?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en
-~----------~----~----~----~------~----~------~--~---