Skip to content

Commit

Permalink
DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
eldering committed Sep 18, 2024
1 parent fc1b31e commit 504055b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/jobs/configure-checks/all.bats
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions .github/jobs/configure-checks/setup_configure_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 504055b

Please sign in to comment.