adding login creds to phab mariadb user creation

This commit is contained in:
Tim Flink 2015-05-19 19:24:59 +00:00
parent 2fdfd392f8
commit 2a3fa2af91

View file

@ -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 }}