From 504055b0f951a5b924661b5211fc5ccfa8162363 Mon Sep 17 00:00:00 2001 From: Jaap Eldering Date: Wed, 18 Sep 2024 17:15:02 +0200 Subject: [PATCH] DEBUG --- .github/jobs/configure-checks/all.bats | 4 ++-- .github/jobs/configure-checks/setup_configure_image.sh | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) 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