fix: remove useless package icingaweb2-module-monitoring

This commit is contained in:
Adrien Waksberg 2024-05-07 21:59:11 +02:00
parent ec977101f9
commit b08f2eda4d
2 changed files with 2 additions and 4 deletions

View file

@ -2,9 +2,8 @@ import os, re
import testinfra.utils.ansible_runner import testinfra.utils.ansible_runner
def test_packages(host): def test_packages(host):
for package_name in ['icingaweb2', 'icingaweb2-module-monitoring']: package = host.package('icingaweb2')
package = host.package(package_name) assert package.is_installed
assert package.is_installed
def test_service(host): def test_service(host):
service = host.service('apache2') service = host.service('apache2')

View file

@ -19,7 +19,6 @@
ansible.builtin.package: ansible.builtin.package:
name: name:
- icingaweb2 - icingaweb2
- icingaweb2-module-monitoring
tags: icingaweb2 tags: icingaweb2
- name: enable apache configuration - name: enable apache configuration