Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 504055b

Browse files
committedSep 18, 2024·
DEBUG
1 parent fc1b31e commit 504055b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎.github/jobs/configure-checks/all.bats

+2-2
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ compile_assertions_finished () {
178178
groupdel ${www_group} || true
179179
done
180180
repo-install httpd
181-
grep -E 'nginx|apache' /etc/passwd || true
182-
grep -E 'nginx|apache' /etc/group || true
181+
# grep -E 'nginx|apache' /etc/passwd || true
182+
# grep -E 'nginx|apache' /etc/group || true
183183
run ./configure --with-domjudge-user=$u
184184
assert_line "checking webserver-group... apache (detected)"
185185
assert_line " * webserver group.....: apache"

‎.github/jobs/configure-checks/setup_configure_image.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ distro_id=$(grep "^ID=" /etc/os-release)
77
# Install everything for configure and testing
88
case $distro_id in
99
"ID=fedora")
10-
grep -E 'nginx|apache' /etc/passwd || true
11-
grep -E 'nginx|apache' /etc/group || true
10+
# grep -E 'nginx|apache' /etc/passwd || true
11+
# grep -E 'nginx|apache' /etc/group || true
1212

1313
dnf install -y pkg-config make bats autoconf automake util-linux \
1414
httpd
1515

16-
grep -E 'nginx|apache' /etc/passwd || true
17-
grep -E 'nginx|apache' /etc/group || true
16+
# grep -E 'nginx|apache' /etc/passwd || true
17+
# grep -E 'nginx|apache' /etc/group || true
1818
;;
1919
*)
2020
apt-get update; apt-get full-upgrade -y

0 commit comments

Comments
 (0)
Please sign in to comment.