Files
provisioning/roles/dockerhost/tasks/main.yml
2017-06-16 09:23:01 -04:00

18 lines
340 B
YAML

---
# main docker tasks
- include: "install-xenial.yml"
when: ansible_distribution_release == "xenial"
become: true
- include: "fstab.yml"
- name: symlinks
file:
state: link
src: "{{ item.src }}"
path: "{{ item.path }}"
force: yes
with_items:
- { src: "/opt/shared/letsencrypt", path: "/etc/letsencrypt" }