Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. - name: "Include role-specific variables"
  2. include_vars: "{{ansible_os_family}}{{ansible_distribution_major_version}}.yml"
  3.  
  4. - name: copy certificate authority to trusted ca path of the os
  5. copy:
  6. src: {{ item}}
  7. dest: "{{ ca_path }}"
  8. owner: root
  9. group: root
  10. mode: 0644
  11. with_fileglob:
  12. - ca/*
  13. notify:
  14. - update trusted ca debian
  15. - update trusted ca redhat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement