summaryrefslogtreecommitdiff
path: root/roles/elevate/media/tasks/main.yml
blob: 9de552c1be40e4f5478afed18df9c0fd65987660 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
- name: install and configure samba
  import_tasks: samba.yml

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

- name: install exfat
  apt:
    name:
    - exfat-fuse
    - exfat-utils
    state: present

- name: install dstat script
  template:
    src: dstat.sh.j2
    dest: /usr/local/bin/dstat.sh
    mode: 0755