Hi,

I'm new on  puppet and I'm having an issue with "puppet apply" command in a 
standalone mode.

a tree command on my project folder gives: 

test
└── manifests
    ├── init.pp
    ├── preparehost
    │   └── params.pp
    └── preparehost.pp


#cat /test/manifests/ini.pp

notify{"here we go":   
} 
include preparehost

#cat /test/manifests/ preparehost.pp

class test::preparehost inherits test::preparehost::params {  
  #curl
  notify{$myname:
  } -> 
  package{'curl':
    ensure => installed
  }
  
}

#cat /test/manifests/params.pp

class test::preparehost::params{
  $myname = "ulky"
}


When I run the command 

# puppet apply /test/manifests/init.pp

I get the folowwings:

Error: Could not find class test::preparehost for clouderatest-vm on node 
clouderatest-vm
Error: Could not find class test::preparehost for clouderatest-vm on node 
clouderatest-vm

Any idea??

Thanks


-- 
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/8cee3caa-702c-4338-80f6-e95f9f7ba6de%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to