mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Fix tests for OpenSUSE 15.1 (#139)
* [zypper] Fix tests for OpenSUSE 15.1 Signed-off-by: Rick Elrod <rick@elrod.me> * [setup_mysql_db] Fix tests for OpenSUSE 15.1 Signed-off-by: Rick Elrod <rick@elrod.me> * Update tests/integration/targets/setup_mysql_db/tasks/main.yml * Re-enable zypper_repository tests. Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
1acb4d18e6
commit
6dd5cb5dea
3 changed files with 14 additions and 3 deletions
|
@ -63,6 +63,13 @@
|
|||
when: ansible_facts.pkg_mgr == 'apt'
|
||||
notify: cleanup mysql
|
||||
|
||||
- name: install mysqldb_test opensuse dependencies
|
||||
zypper:
|
||||
name: "{{ mysql_packages }}"
|
||||
state: latest
|
||||
when: ansible_facts.pkg_mgr in ['zypper', 'community.general.zypper']
|
||||
notify: cleanup mysql
|
||||
|
||||
- name: install mysqldb_test FreeBSD dependencies
|
||||
package:
|
||||
name: "{{ mysql_packages }}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue