mirror of
https://github.com/pi-hole/pi-hole
synced 2024-11-01 05:09:57 +00:00
0df38cd64e
Signed-off-by: Christian König <ckoenig@posteo.de>
16 lines
424 B
Python
16 lines
424 B
Python
def test_epel_and_remi_not_installed_fedora(host):
|
|
"""
|
|
confirms installer does not attempt to install EPEL/REMI repositories
|
|
on Fedora
|
|
"""
|
|
package_manager_detect = host.run(
|
|
"""
|
|
source /opt/pihole/basic-install.sh
|
|
package_manager_detect
|
|
"""
|
|
)
|
|
assert package_manager_detect.stdout == ""
|
|
|
|
epel_package = host.package("epel-release")
|
|
assert not epel_package.is_installed
|