Re: [Puppet Users] apply.pp module missing?

2011-10-02 Thread olympus stance
Hello Dan, It seems that you are correct, I couldnt find any particular command to find out the version number, but looking at the changelog which is located in the /usr/share/puppet/... directory it looks like I am running 0.25.4 I will be upgrading. Thanks On Sun, Oct 2, 2011 at 4:22 PM, Dan

Re: [Puppet Users] apply.pp module missing?

2011-10-02 Thread olympus stance
; > On Sun, Oct 2, 2011 at 3:29 PM, olympus stance > wrote: > >> Hello Dan, >> >> It seems that you are correct, I couldnt find any particular command to >> find out the version number, but looking at the changelog which is located >> in the /usr/share/puppet/...

[Puppet Users] Re: Can't get servers to sync

2011-10-04 Thread olympus stance
Also this is what my nodes.pp file looks like on the master root@puppet:/etc/puppet/manifests# cat nodes.pp # /etc/puppet/manifests/nodes.pp node basenode { include sudo } node 'cloneubuntu.local.net' inherits basenode { } and on the master i am running puppetd and it looks like /etc/sudoers

[Puppet Users] Re: Can't get servers to sync

2011-10-04 Thread olympus stance
I am running Ubuntu, installed puppet through gem. On Tue, Oct 4, 2011 at 8:41 AM, olympus stance wrote: > Also this is what my nodes.pp file looks like on the master > > root@puppet:/etc/puppet/manifests# cat nodes.pp > # /etc/puppet/manifests/nodes.pp > > node basenode

[Puppet Users] Re: Can't get servers to sync

2011-10-04 Thread olympus stance
4 06:37:18 -0700 2011 info: Caching node for cloneubuntu.local.net debug: importing '/etc/puppet/manifests/classes/sudo.pp' in environment production notice: Compiled catalog for cloneubuntu.local.net in environment production in 0.06 seconds debug: Recieved report to process from cloneubun

[Puppet Users] Re: Can't get servers to sync

2011-10-04 Thread olympus stance
certificate_request]: allowing 'method' find > info: access[/certificate_request]: allowing 'method' save > info: access[/certificate_request]: allowing * access > info: access[/]: adding authentication any > info: Inserting default '/status'(auth) ACL becau

Re: [Puppet Users] file server not right directory?

2011-10-12 Thread olympus stance
Hi Jacob, My init.pp file is a symbolic link to the mysql-server.pp in the classes directory. It looks like this: --- class mysql-server { package { "mysql-server": ensure => installed } package { "mysql-client": ensure => installed } service { "mysql": enable => false,

Re: [Puppet Users] file server not right directory?

2011-10-12 Thread olympus stance
s not get imported On Wed, Oct 12, 2011 at 5:55 PM, Nathan Clemons wrote: > Try: > > file { "/etc/mysql": > ensure => directory, > mode => 0755, > owner => root, > group => root, > } > > file { "/etc/mysql/my

Re: [Puppet Users] file server not right directory?

2011-10-12 Thread olympus stance
'mysql-server'] and possibly mysql-client as well. > > > On Wed, Oct 12, 2011 at 3:09 PM, olympus stance > wrote: > >> Hello Nathan, >> >> I tried that: >> here is mysql-server.pp >> --- >> >> c