adding login creds to phab mariadb user creation
This commit is contained in:
parent
2fdfd392f8
commit
2a3fa2af91
1 changed files with 7 additions and 1 deletions
|
@ -19,7 +19,13 @@
|
|||
- phabricator
|
||||
|
||||
- name: create mariadb user for phabricator
|
||||
mysql_user: name={{ mariadb_user }} host='localhost' password={{ mariadb_password }} priv=*.*:ALL state=present
|
||||
mysql_user:
|
||||
name: "{{ mariadb_user }}"
|
||||
host: 'localhost'
|
||||
password: "{{ mariadb_password }}"
|
||||
priv: "*.*:ALL state=present"
|
||||
login_user: root
|
||||
login_password: "{{ mariadb_root_password }}"
|
||||
|
||||
- name: create phabricator daemon user
|
||||
user: name={{ phabricator_daemon_user }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue