18 lines
340 B
YAML
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" }
|