Changeset - f0f48518f9b3
[Not reviewed]
0 2 0
Branko Majic (branko) - 4 years ago 2020-05-08 11:08:38
branko@majic.rs
MAR-149: Install Python 3 MySQL bindings in database_server role.
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
roles/database_server/molecule/default/tests/test_default.py
Show inline comments
 
@@ -14,7 +14,7 @@ def test_installed_packages(host):
 

	
 
    assert host.package('mariadb-client').is_installed
 
    assert host.package('mariadb-server').is_installed
 
    assert host.package('python-mysqldb').is_installed
 
    assert host.package('python3-mysqldb').is_installed
 

	
 

	
 
def test_service(host):
roles/database_server/tasks/main.yml
Show inline comments
 
@@ -5,7 +5,7 @@
 
    name:
 
      - mariadb-client
 
      - mariadb-server
 
      - python-mysqldb
 
      - python3-mysqldb
 
    state: present
 

	
 
- name: Enable MariaDB service on boot (workaround for systemctl broken handling of SysV)
0 comments (0 inline, 0 general)