選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

18 行
672B

  1. ---
  2. - name: mysql user
  3. mysql_user:
  4. name: "{{ nextcloud_database_user }}"
  5. host: "{{ (nextcloud_database_host == inventory_hostname) | ternary('localhost',nextcloud_database_host) }}"
  6. password: "{{ nextcloud_database_pass }}"
  7. priv: "{{nextcloud_database_name}}.*:ALL"
  8. delegate_to: "{{ (nextcloud_database_host != 'localhost') | ternary(nextcloud_database_host,inventory_hostname) }}"
  9. - name: mysql database
  10. mysql_db:
  11. name: "{{nextcloud_database_name}}"
  12. encoding: utf8mb4
  13. collation: utf8mb4_unicode_ci
  14. state: present
  15. delegate_to: "{{ (nextcloud_database_host != 'localhost') | ternary(nextcloud_database_host,inventory_hostname) }}"