Advertisement
Guest User

Salt test sls include 3

a guest
Oct 10th, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. [root@nyopstools2 salt]# salt 'nybmon1' state.highstate
  2. nybmon1:
  3. TypeError encountered executing state.highstate: list indices must be integers, not str. See debug log for more info. Possibly a missing arguments issue: ArgSpec(args=['test', 'queue'], varargs=None, keywords='kwargs', defaults=(None, False))
  4. [root@nyopstools2 salt]# cat top.sls
  5. base:
  6. 'nybmon1':
  7. - test1
  8. [root@nyopstools2 salt]# cat test1.sls
  9. include:
  10. - test2
  11.  
  12. pkg:
  13. - installed
  14. - name: httpd
  15. - require:
  16. - sls: test2
  17. [root@nyopstools2 salt]# cat test2.sls
  18. pkg:
  19. - installed
  20. - name: gcc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement