diff --git a/.github/jobs/configure-checks/all.bats b/.github/jobs/configure-checks/all.bats index 9fd6ebf2bc1..05229996a7e 100755 --- a/.github/jobs/configure-checks/all.bats +++ b/.github/jobs/configure-checks/all.bats @@ -178,8 +178,8 @@ compile_assertions_finished () { groupdel ${www_group} || true done repo-install httpd - grep -E 'nginx|apache' /etc/passwd || true - grep -E 'nginx|apache' /etc/group || true +# grep -E 'nginx|apache' /etc/passwd || true +# grep -E 'nginx|apache' /etc/group || true run ./configure --with-domjudge-user=$u assert_line "checking webserver-group... apache (detected)" assert_line " * webserver group.....: apache" diff --git a/.github/jobs/configure-checks/setup_configure_image.sh b/.github/jobs/configure-checks/setup_configure_image.sh index 884b21b19f7..4b12cfb1aac 100755 --- a/.github/jobs/configure-checks/setup_configure_image.sh +++ b/.github/jobs/configure-checks/setup_configure_image.sh @@ -7,14 +7,14 @@ distro_id=$(grep "^ID=" /etc/os-release) # Install everything for configure and testing case $distro_id in "ID=fedora") - grep -E 'nginx|apache' /etc/passwd || true - grep -E 'nginx|apache' /etc/group || true +# grep -E 'nginx|apache' /etc/passwd || true +# grep -E 'nginx|apache' /etc/group || true dnf install -y pkg-config make bats autoconf automake util-linux \ httpd - grep -E 'nginx|apache' /etc/passwd || true - grep -E 'nginx|apache' /etc/group || true +# grep -E 'nginx|apache' /etc/passwd || true +# grep -E 'nginx|apache' /etc/group || true ;; *) apt-get update; apt-get full-upgrade -y