You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - name: mysql user
- mysql_user:
- name: "{{ nextcloud_database_user }}"
- host: "{{ (nextcloud_database_host == inventory_hostname) | ternary('localhost',ssh_ip) }}"
- password: "{{ nextcloud_database_pass }}"
- priv: "{{nextcloud_database_name}}.*:ALL"
- delegate_to: "{{ nextcloud_database_host }}"
-
- - name: mysql database
- mysql_db:
- name: "{{nextcloud_database_name}}"
- encoding: utf8mb4
- collation: utf8mb4_unicode_ci
- state: present
- delegate_to: "{{ nextcloud_database_host }}"
|