aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ansible/roles/configure-db/tasks/main.yml6
-rw-r--r--ansible/roles/install-deps/tasks/main.yml2
-rw-r--r--ansible/site.yml2
3 files changed, 5 insertions, 5 deletions
diff --git a/ansible/roles/configure-db/tasks/main.yml b/ansible/roles/configure-db/tasks/main.yml
index 6bfe5eb..03f7f2c 100644
--- a/ansible/roles/configure-db/tasks/main.yml
+++ b/ansible/roles/configure-db/tasks/main.yml
@@ -1,8 +1,8 @@
---
- name: Create PostgreSQL bugzilla user
- mysql_user: name={{ db_user }}
- password={{ db_pass }}
- state=present
+ postgresql_user: name={{ db_user }}
+ password={{ db_pass }}
+ state=present
- name: Create PostgreSQL bugzilla database
postgresql_db: name={{ db_name }}
diff --git a/ansible/roles/install-deps/tasks/main.yml b/ansible/roles/install-deps/tasks/main.yml
index 9348de7..70ecab2 100644
--- a/ansible/roles/install-deps/tasks/main.yml
+++ b/ansible/roles/install-deps/tasks/main.yml
@@ -50,7 +50,7 @@
- lynx
- perlmagick
- postgresql
- - python-psycopg
+ - python-psycopg2
- tree
- unzip
- xmlto
diff --git a/ansible/site.yml b/ansible/site.yml
index fe56f1f..6b75a38 100644
--- a/ansible/site.yml
+++ b/ansible/site.yml
@@ -1,7 +1,7 @@
---
- hosts: all
sudo: yes
- gather_facts: yes
+ gather_facts: no
roles:
- common
- install-deps