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
;
> 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/...
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
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
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
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
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,
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
'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