mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
9028898ba7
Signed-off-by: Adam Warner <me@adamwarner.co.uk>
13 lines
410 B
Python
13 lines
410 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
|