2025-04-24 13:45:04 -05:00
|
|
|
#SPDX-License-Identifier: MIT-0
|
|
|
|
|
---
|
2025-04-24 13:54:43 -05:00
|
|
|
# tasks file for role-owncloud
|
2025-04-24 17:54:29 -05:00
|
|
|
- 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
|