24 lines
No EOL
500 B
YAML
24 lines
No EOL
500 B
YAML
#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 |