Hi, I am trying to do my first puppet configuration, already installed the puppetserver and client, in this link show my configuration and my puppet structure: http://paste.pocoo.org/show/212227/ But when i run the client side daemon i get this message: info: /Class[main]/Node[basenode]/Class[inittab]/File[inittab]/source: No specified sources exist err: /Class[main]/Node[basenode]/Class[securetty]/File[securetty]/source: Could not describe /securetty: Fileserver module ''securetty'' not mounted Anyone can help me? Thanks in advance! -- Marley Bacelar Project Fedora Ambassador VCP, VSP. VTSP., ITILF, IBM 000-076, IBM 000-330, IBM 000-331 marleybacelar@gmail.com -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
Did you create your "namespaceauth.conf" on the puppet master? On Mon, May 10, 2010 at 6:58 PM, Marley Bacelar <marleybacelar@gmail.com>wrote:> Hi, > > I am trying to do my first puppet configuration, already installed the > puppetserver and client, in this link show my configuration and my puppet > structure: > > http://paste.pocoo.org/show/212227/ > > But when i run the client side daemon i get this message: > > info: /Class[main]/Node[basenode]/Class[inittab]/File[inittab]/source: No > specified sources exist > err: /Class[main]/Node[basenode]/Class[securetty]/File[securetty]/source: > Could not describe /securetty: Fileserver module ''securetty'' not mounted > > Anyone can help me? Thanks in advance! > > -- > Marley Bacelar > Project Fedora Ambassador > VCP, VSP. VTSP., ITILF, IBM 000-076, IBM 000-330, IBM 000-331 > marleybacelar@gmail.com > > -- > You received this message because you are subscribed to the Google Groups > "Puppet Users" group. > To post to this group, send email to puppet-users@googlegroups.com. > To unsubscribe from this group, send email to > puppet-users+unsubscribe@googlegroups.com<puppet-users%2Bunsubscribe@googlegroups.com> > . > For more options, visit this group at > http://groups.google.com/group/puppet-users?hl=en. >-- LOhit -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
Marley Bacelar wrote:> I am trying to do my first puppet configuration, already installed the > puppetserver and client, in this link show my configuration and my puppet > structure: > > http://paste.pocoo.org/show/212227/Which reads, in part:> # ls /etc/puppet/ # > files fileserver.conf manifests modules puppet.conf > > # fileserver.conf # > [files] > path /etc/puppet/files/ > allow 192.168.0.0/24So you''ve got a ''files'' mount here.> # ls /etc/puppet/manifests/classes # > inittab.pp > > # inittab.pp # > class inittab { > file { > "inittab": > mode => 644, owner => root, group => root, > ensure => present, > path => $operatingsystem ?{ > default => "/etc/inittab", > }, > source => "puppet://$servername/inittab", > } > > }And your source parameter doesn''t use the files mount. You''d want to use ''puppet://$servername/files/inittab'' there.> # ls /etc/puppet/file # > inittabI presume you made a typo there, as the dir should be files, not file. -- Todd OpenPGP -> KeyID: 0xBEAF0CE3 | URL: www.pobox.com/~tmz/pgp ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The ultimate result of shielding men from the effects of folly is to fill the world with fools. -- Herbert Spencer
I will try thie Todd and post the result here later, thanks for your answer. -- Marley Bacelar Project Fedora Ambassador VCP, VSP. VTSP., ITILF, IBM 000-076, IBM 000-330, IBM 000-331 marleybacelar@gmail.com 2010/5/10 Todd Zullinger <tmz@pobox.com>> Marley Bacelar wrote: > > I am trying to do my first puppet configuration, already installed the > > puppetserver and client, in this link show my configuration and my puppet > > structure: > > > > http://paste.pocoo.org/show/212227/ > > Which reads, in part: > > > # ls /etc/puppet/ # > > files fileserver.conf manifests modules puppet.conf > > > > # fileserver.conf # > > [files] > > path /etc/puppet/files/ > > allow 192.168.0.0/24 > > So you''ve got a ''files'' mount here. > > > # ls /etc/puppet/manifests/classes # > > inittab.pp > > > > # inittab.pp # > > class inittab { > > file { > > "inittab": > > mode => 644, owner => root, group => root, > > ensure => present, > > path => $operatingsystem ?{ > > default => "/etc/inittab", > > }, > > source => "puppet://$servername/inittab", > > } > > > > } > > And your source parameter doesn''t use the files mount. You''d want to > use ''puppet://$servername/files/inittab'' there. > > > # ls /etc/puppet/file # > > inittab > > I presume you made a typo there, as the dir should be files, not file. > > -- > Todd OpenPGP -> KeyID: 0xBEAF0CE3 | URL: www.pobox.com/~tmz/pgp<http://www.pobox.com/%7Etmz/pgp> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > The ultimate result of shielding men from the effects of folly is to > fill the world with fools. > -- Herbert Spencer > >-- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
I changed my inittab.pp to source => "puppet://$servername/inittab, but now i am getting this error on client side: [root@mgmt-puppet-client-dev-03 puppet]# puppetd --server puppetmaster.testing.com --verbose --waitforcert 60 notice: Starting Puppet client version 0.22.4 info: Facts have changed; recompiling err: Configuration retrieval timed out At same time my server show me this: [root@mgmt-puppet-dev-01 manifests]# puppetmasterd --verbose --no-daemonize notice: Starting Puppet server version 0.25.4 info: mount[files]: allowing 127.0.0.1 access info: mount[files]: allowing 192.168.0.0/24 access My configurations http://paste.pocoo.org/show/212227/ -- Marley Bacelar Project Fedora Ambassador VCP, VSP. VTSP., ITILF, IBM 000-076, IBM 000-330, IBM 000-331 marleybacelar@gmail.com 2010/5/10 Marley Bacelar <marleybacelar@gmail.com>> I will try thie Todd and post the result here later, thanks for your > answer. > > > -- > Marley Bacelar > Project Fedora Ambassador > VCP, VSP. VTSP., ITILF, IBM 000-076, IBM 000-330, IBM 000-331 > marleybacelar@gmail.com > > > 2010/5/10 Todd Zullinger <tmz@pobox.com> > > Marley Bacelar wrote: >> > I am trying to do my first puppet configuration, already installed the >> > puppetserver and client, in this link show my configuration and my >> puppet >> > structure: >> > >> > http://paste.pocoo.org/show/212227/ >> >> Which reads, in part: >> >> > # ls /etc/puppet/ # >> > files fileserver.conf manifests modules puppet.conf >> > >> > # fileserver.conf # >> > [files] >> > path /etc/puppet/files/ >> > allow 192.168.0.0/24 >> >> So you''ve got a ''files'' mount here. >> >> > # ls /etc/puppet/manifests/classes # >> > inittab.pp >> > >> > # inittab.pp # >> > class inittab { >> > file { >> > "inittab": >> > mode => 644, owner => root, group => root, >> > ensure => present, >> > path => $operatingsystem ?{ >> > default => "/etc/inittab", >> > }, >> > source => "puppet://$servername/inittab", >> > } >> > >> > } >> >> And your source parameter doesn''t use the files mount. You''d want to >> use ''puppet://$servername/files/inittab'' there. >> >> > # ls /etc/puppet/file # >> > inittab >> >> I presume you made a typo there, as the dir should be files, not file. >> >> -- >> Todd OpenPGP -> KeyID: 0xBEAF0CE3 | URL: www.pobox.com/~tmz/pgp<http://www.pobox.com/%7Etmz/pgp> >> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >> The ultimate result of shielding men from the effects of folly is to >> fill the world with fools. >> -- Herbert Spencer >> >> > > > >-- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
Apparently Analagous Threads
- Puppet Dashboard error.
- vtpm_manager can''t run twice in a row
- /etc/inittab: Serial access/ Console Server
- Xen Virtual Console xvc (Was: Re: Pardon me for possibly dumb question but....)
- Could not evaluate: Could not retrieve information from environment production source(s) for one module, for other is ok