summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Flink <tflink@fedoraproject.org>2015-02-02 07:32:10 +0000
committerTim Flink <tflink@fedoraproject.org>2015-02-02 07:32:10 +0000
commitf137ccb74c483024c85cc8c3b4106620765b2008 (patch)
tree7260deb1680a80bc3b934be257d2f3558895f56d
parent7ee033df37c7c68b7fa4d494e83228e8429b4e86 (diff)
downloadansible-f137ccb74c483024c85cc8c3b4106620765b2008.tar.gz
ansible-f137ccb74c483024c85cc8c3b4106620765b2008.tar.xz
ansible-f137ccb74c483024c85cc8c3b4106620765b2008.zip
create privs don't seem to be working well, trying without them
-rw-r--r--roles/phabricator/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/phabricator/tasks/main.yml b/roles/phabricator/tasks/main.yml
index 7e22e2c5c..e82eb6335 100644
--- a/roles/phabricator/tasks/main.yml
+++ b/roles/phabricator/tasks/main.yml
@@ -18,7 +18,7 @@
- name: create mariadb user for phabricator
delegate_to: "{{ mariadb_host }}"
- mysql_user: name={{ mariadb_user }} host={{ eth0_ip }} password={{ mariadb_password }} priv=*.*:ALL,CREATE state=present
+ mysql_user: name={{ mariadb_user }} host={{ eth0_ip }} password={{ mariadb_password }} priv=*.*:ALL state=present
- name: create phabricator daemon user
user: name={{ phabricator_daemon_user }}