Skip to content

Update install.yml #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,19 @@
notify:
- Restart php-fpm

- name: Setup trashbin_retention_obligation
# Deleted Files apps retention
become: yes
become_user: www-data
lineinfile:
path: /var/www/{{ nextcloud_fqdn }}/nextcloud/config/config.php
regexp: trashbin_retention_obligation
line: " 'trashbin_retention_obligation' => 'auto, 35',"
insertbefore: '^\s*\);\s*$'
when: "'deletedfiles' in nextcloud_apps"
notify:
- Restart php-fpm

- name: Check whether background jobs scheduler is set to cron
become: yes
become_user: www-data
Expand Down