try removing the host vars for mysql to get credentials to work
This commit is contained in:
parent
70fc30a45c
commit
d3783f17f9
1 changed files with 2 additions and 2 deletions
|
@ -18,11 +18,11 @@
|
|||
|
||||
- name: create mariadb database
|
||||
delegate_to: "{{ mariadb_host }}"
|
||||
mysql_db: login_host={{ mariadb_host }} name={{ phabricator_db_name }}
|
||||
mysql_db: name={{ phabricator_db_name }}
|
||||
|
||||
- name: create mariadb user for phabricator
|
||||
delegate_to: "{{ mariadb_host }}"
|
||||
mysql_user: host={{ mariadb_host }} name={{ mariadb_user }} password={{ mariadb_password }} priv={{ phabricator_db_name }}.*:ALL state=present
|
||||
mysql_user: name={{ mariadb_user }} password={{ mariadb_password }} priv={{ phabricator_db_name }}.*:ALL state=present
|
||||
|
||||
- name: create phabricator daemon user
|
||||
user: name={{ phabricator_daemon_user }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue