Debian.yml 354 B

123456789101112131415161718
  1. ---
  2. - name: Update the {{ ansible_distribution }} repos
  3. apt:
  4. update_cache: yes
  5. - name: Install all the {{ ansible_distribution }} packages
  6. apt:
  7. name: "{{ specific_packages }}"
  8. state: present
  9. - name: Create ssl private directory
  10. file:
  11. path: "{{ ssl_crt_path }}"
  12. state: directory
  13. owner: root
  14. group: root
  15. mode: 0750