18 lines
409 B
YAML
18 lines
409 B
YAML
- name: restart php-fpm
|
|
service:
|
|
name: php-fpm
|
|
state: restarted
|
|
- name: reload httpd
|
|
service:
|
|
name: httpd
|
|
state: reloaded
|
|
listen: certificate changed
|
|
- name: upgrade nextcloud
|
|
become: true
|
|
become_user: apache
|
|
command: php /var/www/html/occ upgrade
|
|
- name: update nextcloud .htaccess
|
|
become: true
|
|
become_user: apache
|
|
command: php /var/www/html/occ maintenance:update:htaccess
|