start including nextcloud

This commit is contained in:
2022-06-23 23:05:33 +02:00
parent b1248c03e9
commit 407c61e77d
7 changed files with 74 additions and 2 deletions

View File

@@ -0,0 +1 @@
- import_tasks: apps/nextcloud/prereq.yml

View File

@@ -0,0 +1,29 @@
- name: webserver | nextcloud | basic tools
package:
state: latest
name:
- ca-certificates
- apt-transport-https
- software-properties-common
- lsb-release
- ca-certificates
when: ansible_distribution in ["Debian", "Ubuntu"]
- name: webserver | nextcloud | prereq | get php repo key
uri:
url: "https://packages.sury.org/php/apt.gpg"
dest: "/etc/apt/trusted.gpg.d/php.gpg"
- name: webserver | nextcloud | prereq | add php repo
lineinfile:
path: "/etc/apt/sources.list.d/php.list"
state: present
line: "deb https://packages.sury.org/php/ {{ ansible_distribution_release | lower }} main"
create: True
- name: webserver | nextcloud | prereq | install php
package:
state: latest
name: "{{ item.package }}"
update_cache: True
with_item: "{{ nextcloud_php_packages }}"