add PHP7 for compatibility tt-rss and nextcloud

This commit is contained in:
vincent 2021-02-06 10:26:14 +01:00
parent db0313a018
commit 17e9627b0c

View File

@ -66,7 +66,7 @@
- name: installation - ensure nextcloud config - name: installation - ensure nextcloud config
command: > command: >
php {{ nextcloud_web_root }}/occ maintenance:install --database "{{ 'pgsql' if nextcloud_DB_type == 'postgres' else nextcloud_DB_type }}" --database-name "{{ nextcloud_db_name}}" php7 {{ nextcloud_web_root }}/occ maintenance:install --database "{{ 'pgsql' if nextcloud_DB_type == 'postgres' else nextcloud_DB_type }}" --database-name "{{ nextcloud_db_name}}"
--database-user "{{ nextcloud_db_user }}" --database-pass "{{ nextcloud_db_password }}" --database-user "{{ nextcloud_db_user }}" --database-pass "{{ nextcloud_db_password }}"
--admin-user "{{ nextcloud_admin_user }}" --admin-pass "{{ nextcloud_admin_password }}" --data-dir "{{ nextcloud_datadirectory }}" --admin-user "{{ nextcloud_admin_user }}" --admin-pass "{{ nextcloud_admin_password }}" --data-dir "{{ nextcloud_datadirectory }}"
become: true become: true
@ -86,7 +86,7 @@
when: nextcloud_config_options is defined when: nextcloud_config_options is defined
- name: installation - ensure trusted domains are set - name: installation - ensure trusted domains are set
command: 'php {{ nextcloud_web_root }}/occ config:system:set trusted_domains {{ item.0 }} --value "{{ item.1 }}"' command: 'php7 {{ nextcloud_web_root }}/occ config:system:set trusted_domains {{ item.0 }} --value "{{ item.1 }}"'
become: true become: true
become_user: http become_user: http
changed_when: true changed_when: true
@ -118,7 +118,7 @@
- name: create cron for nextcloud - name: create cron for nextcloud
cron: cron:
job: "sudo -u http /usr/bin/php -f {{nextcloud_web_root}}/cron.php" job: "sudo -u http /usr/bin/php7 -f {{nextcloud_web_root}}/cron.php"
user: root # not required. The specific user whose crontab should be modified. user: root # not required. The specific user whose crontab should be modified.
minute: 0,15,30,45 # not required. Minute when the job should run ( 0-59, *, */2, etc ) minute: 0,15,30,45 # not required. Minute when the job should run ( 0-59, *, */2, etc )
name: "nextcloud recuring cron job" # not required. Description of a crontab entry or, if env is set, the name of environment variable. Required if state=absent. Note that if name is not set and state=present, then a new crontab entry will always be created, regardless of existing ones. name: "nextcloud recuring cron job" # not required. Description of a crontab entry or, if env is set, the name of environment variable. Required if state=absent. Note that if name is not set and state=present, then a new crontab entry will always be created, regardless of existing ones.
@ -126,7 +126,7 @@
- name: create cron for file scan - name: create cron for file scan
cron: cron:
job: "sudo -u http /usr/bin/php /usr/share/webapps/nextcloud/occ files:scan --all > /dev/null" job: "sudo -u http /usr/bin/php7 /usr/share/webapps/nextcloud/occ files:scan --all > /dev/null"
user: root # not required. The specific user whose crontab should be modified. user: root # not required. The specific user whose crontab should be modified.
minute: "00" # not required. Minute when the job should run ( 0-59, *, */2, etc ) minute: "00" # not required. Minute when the job should run ( 0-59, *, */2, etc )
hour: "4" hour: "4"