Browse Source

ansible 2.4 fix

master
parent
commit
c190b7983b
1 changed files with 13 additions and 13 deletions
  1. +13
    -13
      tasks/main.yml

+ 13
- 13
tasks/main.yml View File

@@ -1,32 +1,32 @@
--- ---


- include: setup_{{ansible_os_family}}.yml
- include_tasks: setup_{{ansible_os_family}}.yml


- include: php-opcache.yml
- import_tasks: php-opcache.yml


- include: reset.yml
- import_tasks: reset.yml
when: nextcloud_state == "reinstalled" when: nextcloud_state == "reinstalled"


- include: server.yml
- import_tasks: server.yml


- include: access.yml
- import_tasks: access.yml


- include: mysql.yml
- import_tasks: mysql.yml
when: nextcloud_database_type == "mysql" when: nextcloud_database_type == "mysql"


- include: install.yml
- import_tasks: install.yml
when: when:
nextcloud_state == "installed" or nextcloud_state == "installed" or
nextcloud_state == "reinstalled" nextcloud_state == "reinstalled"


- include: configure.yml
- import_tasks: configure.yml


- include: apps.yml
- import_tasks: apps.yml


- include: upgrade.yml
- import_tasks: upgrade.yml


- include: certificate.yml
- import_tasks: certificate.yml


- include: apache2.yml
- import_tasks: apache2.yml


- include: cron.yml
- import_tasks: cron.yml

Loading…
Cancel
Save