Hi Lowe,

Here are the details....

This is the directory structure for manifests file site.pp and nodes.pp  :-
 "C:\Maruti\Puppet\manifests"

The is the code for site.pp file

import 'nodes.pp'

This is the code for nodes.pp file

node 'IMIBLRKA1030' {
 include apache
}

--------

This is the directory structure for module's manifests file  init.pp :-
"C:\Maruti\Puppet\modules\apache\manifests"
This is the code for init.pp file

# Manage apache tomcat v8 application server
class apache {
 package { 'Tomcat8' :
  ensure => present,
  source => 'C:/Maruti/Puppet/apache-tomcat-8.0.30.exe',
  install_options => ['/S','/D=C:\Maruti\Puppet\apache-tomcat-8'],
  description => 'Installing tomcat v8.0.30 on windows system',
 }
}

and I'm invoking site.pp file using puppet apply command as mentioned below
and getting class apache is not found.

C:\>puppet apply C:\Maruti\Puppet\manifests\site.pp
Warning: The use of 'import' is deprecated at
C:/Maruti/Puppet/manifests/site.pp
:1. See http://links.puppetlabs.com/puppet-import-deprecation
   (at C:/Program Files/Puppet
Labs/Puppet/puppet/lib/puppet/parser/parser_suppo
rt.rb:110:in `import')
Error: Could not find class apache for xxxxx on node imiblrka
Error: Could not find class apache for xxxxx on node imiblrka

Thanks,
Maruti.







On Tue, Jan 26, 2016 at 1:41 AM, Maruti Gangumolu <
maruti.gangum...@gmail.com> wrote:

> Hi Team,
>
> I'm new to puppet coding and I'm trying to install apache tomcat using
> class which is being included in nodes.pp file.
>
> I'm getting this error message when running site.pp file
>
> C:\ABC\Puppet\manifests>puppet apply C:\ABC\Puppet\manifests\site.pp
> Warning: The use of 'import' is deprecated at
> C:/ABC/Puppet/manifests/site.pp
> :1. See http://links.puppetlabs.com/puppet-import-deprecation
>    (at C:/Program Files/Puppet
> Labs/Puppet/puppet/lib/puppet/parser/parser_suppo
> rt.rb:110:in `import')
> Error: Could not find class apache for xxxx on node imiblr
> Error: Could not find class apache for xxxx on node imiblr
>
> Could you please help me in fixing this issue?
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Puppet Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/puppet-users/tIS3pSfnrSQ/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> puppet-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/puppet-users/2a28a925-5fd8-4d2e-992d-c4df22e944b4%40googlegroups.com
> <https://groups.google.com/d/msgid/puppet-users/2a28a925-5fd8-4d2e-992d-c4df22e944b4%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/CAKu269jka%3D-Ba7pEEUFAf-qQr-0Zfa%2B-_tvdZ6HO6pjb8ikFCA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to