fixing copy-pasta error to use correct mariadb host var
This commit is contained in:
parent
6faf93eed8
commit
70fc30a45c
1 changed files with 2 additions and 2 deletions
|
@ -17,11 +17,11 @@
|
|||
- phabricator
|
||||
|
||||
- name: create mariadb database
|
||||
delegate_to: "{{ buildmaster_db_host }}"
|
||||
delegate_to: "{{ mariadb_host }}"
|
||||
mysql_db: login_host={{ mariadb_host }} name={{ phabricator_db_name }}
|
||||
|
||||
- name: create mariadb user for phabricator
|
||||
delegate_to: "{{ buildmaster_db_host }}"
|
||||
delegate_to: "{{ mariadb_host }}"
|
||||
mysql_user: host={{ mariadb_host }} name={{ mariadb_user }} password={{ mariadb_password }} priv={{ phabricator_db_name }}.*:ALL state=present
|
||||
|
||||
- name: create phabricator daemon user
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue