This commit is contained in:
Jayne Passmore 2025-04-24 17:54:29 -05:00
parent f380599448
commit 521106e206

View file

@ -1,3 +1,24 @@
#SPDX-License-Identifier: MIT-0
---
# tasks file for role-owncloud
- name: install nextcloud and dependencies
ansible.builtin.package:
name:
- nextcloud
- php-legacy-sodium
- php-legacy-imagick
- librsvg
state: present
- name: deploy nextcloud php.ini file
ansible.builtin.copy:
src: files/nextcloud-php.ini
dest: /etc/webapps/nextcloud/php.ini
#- name: ensure nextcloud is running
# service:
# name: nextcloud
# state: started
# enabled: yes