Guest User

Untitled

a guest
Dec 11th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. ## puppet version
  2.  
  3. 2.6.6
  4.  
  5. ## puppet error
  6.  
  7. err: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find class group in namespaces centos at /etc/puppet/manifests/os/centos.pp:4 on node puppet.acadaca.net
  8. warning: Not using cache on failed catalog
  9. err: Could not retrieve catalog; skipping run
  10.  
  11.  
  12.  
  13. ## site.pp
  14.  
  15. ...
  16.  
  17. # site.pp
  18. import "template"
  19. import "nodes"
  20. import "classes/*"
  21. import "groups/*"
  22. import "users/*"
  23. import "os/*"
  24.  
  25. ...
  26.  
  27.  
  28.  
  29. ## centos.pp
  30.  
  31. class centos {
  32.  
  33. include yumrepos
  34. include group
  35.  
  36. ...
  37.  
  38. }
  39.  
  40.  
  41.  
  42. ## ls of group.pp
  43.  
  44. [root@puppet ~]# ls -l /etc/puppet/manifests/groups/group.pp
  45. -rw-r--r-- 1 puppet puppet 3372 May 10 11:10 /etc/puppet/manifests/groups/group.pp
Add Comment
Please, Sign In to add comment