commit d2f9482527521533776f285b83ad7198f75d620a
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Thu Nov 3 10:10:57 2016 +0100
Fix unhashable type
roles/bugzilla/meta/main.yml | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/roles/bugzilla/meta/main.yml b/roles/bugzilla/meta/main.yml
index 52d8846..dbc49c7 100644
--- a/roles/bugzilla/meta/main.yml
+++ b/roles/bugzilla/meta/main.yml
@@ -27,6 +27,6 @@ dependencies:
# List your role dependencies here, one per line.
# Be sure to remove the '[]' above if you add dependencies
# to this list.
- - { role: mariadb_server, tags: ['mariadb'], when: { bugzilla_db_driver ==
'MySQL' and bugzilla_db_host == 'localhost' }}
- - { role: postgresql_server, tags: ['postgresql'], when: { bugzilla_db_driver
== 'Pg' and bugzilla_db_host == 'localhost' }}
+ - { role: mariadb_server, tags: ['mariadb'], when: bugzilla_db_driver ==
'MySQL' and bugzilla_db_host == 'localhost' }
+ - { role: postgresql_server, tags: ['postgresql'], when: bugzilla_db_driver ==
'Pg' and bugzilla_db_host == 'localhost' }
Show replies by date