try removing the host vars for mysql to get credentials to work

This commit is contained in:
Tim Flink 2015-02-02 06:09:13 +00:00
parent 70fc30a45c
commit d3783f17f9

View file

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