summaryrefslogtreecommitdiff
path: root/roles/elevate/media/tasks/main.yml
blob: 8d659de4f8109cf4123b0e90ce37ea97d7d07f2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
- name: install packages
  apt:
    name:
      - mdadm
      - nginx
      - python-docker
      - systemd-docker
      - python-openssl
      - samba
    state: present

- name: configure network
  import_tasks: network.yml

- name: configure samba
  import_tasks: samba.yml

- name: install and configure nextcloud
  import_tasks: nextcloud.yml

- name: configure nginx
  import_tasks: nginx.yml