From ff77aa8da377524cc3e6a28eae96136bad7fb41d Mon Sep 17 00:00:00 2001 From: pvogt09 <50047961+pvogt09@users.noreply.github.com> Date: Thu, 5 Mar 2020 17:45:00 +0100 Subject: [PATCH] try installation process with main Signed-off-by: pvogt09 <50047961+pvogt09@users.noreply.github.com> --- test/test_automated_install.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/test/test_automated_install.py b/test/test_automated_install.py index 99440fe9..a8f109a4 100644 --- a/test/test_automated_install.py +++ b/test/test_automated_install.py @@ -137,16 +137,21 @@ def test_installPihole_fresh_install_readableBlockpage(Pihole): confirms all web page assets from Core repo are readable by $LIGHTTPD_USER on a fresh build ''' installWeb = Pihole.run(''' + export TERM=xterm umask 0027 source /opt/pihole/basic-install.sh - distro_check > /dev/null - clone_or_update_repos - install_dependent_packages ${PIHOLE_WEB_DEPS[@]} - create_pihole_user - installPihole + main echo "LIGHTTPD_USER=${LIGHTTPD_USER}" echo "webroot=${webroot}" ''') +# distro_check > /dev/null +# clone_or_update_repos +# install_dependent_packages ${PIHOLE_WEB_DEPS[@]} +# create_pihole_user +# installPihole +# echo "LIGHTTPD_USER=${LIGHTTPD_USER}" +# echo "webroot=${webroot}" +# ''') assert 0 == installWeb.rc webuser = '' user = re.findall("^\s*LIGHTTPD_USER=.*$", installWeb.stdout, re.MULTILINE)