Advertisement
Guest User

Untitled

a guest
Mar 25th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. # Install nginx from system packages
  2. install-nginx:
  3. pkg.installed:
  4. - name: nginx
  5.  
  6. service-nginx:
  7. service:
  8. - running
  9. - name: nginx
  10. - enable: True
  11. - reload: True
  12. - require:
  13. - pkg: nginx
  14.  
  15.  
  16.  
  17.  
  18. ERROR
  19. local:
  20. Data failed to compile:
  21. ----------
  22. Invalid requisite type 'file.managed' in state 'service-nginx', in SLS 'nginx'. Requisite types must not contain dots, did you mean 'file'?
  23. ----------
  24. Invalid requisite type 'file.managed' in state 'service-nginx', in SLS 'nginx'. Requisite types must not contain dots, did you mean 'file'?
  25. ----------
  26. Invalid requisite type 'file.absent' in state 'service-nginx', in SLS 'nginx'. Requisite types must not contain dots, did you mean 'file'?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement