lowercase database_type
This commit is contained in:
parent
3f9e81569d
commit
758a45bf18
3 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
- name: "Richte MariaDB-Datenbank ein"
|
||||
when: item.database_type == "MariaDB"
|
||||
when: item.database_type == "mariadb"
|
||||
block:
|
||||
- name: "Database | Erstelle Datenbank | {{ item.name }}"
|
||||
community.mysql.mysql_db:
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
become: true
|
||||
become_user: "{{ item.user }}"
|
||||
changed_when: true
|
||||
when: not nc_is_installed.stat.exists and item.database_type == "MariaDB"
|
||||
when: not nc_is_installed.stat.exists and item.database_type == "mariadb"
|
||||
|
||||
- name: "Nextcloud | Führe Installation aus | {{ item.name }}"
|
||||
ansible.builtin.command:
|
||||
|
@ -58,4 +58,4 @@
|
|||
chdir: "{{ nextcloud_install_path }}"
|
||||
become: true
|
||||
become_user: "{{ item.user }}"
|
||||
when: not nc_is_installed.stat.exists and item.database_type == "PostgreSQL"
|
||||
when: not nc_is_installed.stat.exists and item.database_type == "postgresql"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue