Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. ---
  2. - hosts: vms
  3. tasks:
  4.  
  5. - name: Register Red Hat subscription
  6. redhat_subscription:
  7. state: present
  8. username: XXXX
  9. password: XXXXXXXX
  10. autosubscribe: true
  11.  
  12. - name: Install Red Hat Insights
  13. yum:
  14. name: redhat-access-insights
  15. state: present
  16.  
  17. - name: register with Red Hat Insights
  18. command: redhat-access-insights --register
  19.  
  20. - name: misc packages (+ emacs-nox, vim)
  21. yum: name={{ item }} state=present
  22. with_items:
  23. - sudo
  24. - iotop
  25. - strace
  26. - vim-minimal
  27. - emacs-nox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement