aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCeleste <20312-Celeste@users.gitlab.alpinelinux.org>2024-04-15 15:42:32 +0000
committerCeleste <20312-Celeste@users.gitlab.alpinelinux.org>2024-05-07 03:37:58 +0000
commitfff85f6910b2937367b56450edac78d0c7f8f130 (patch)
tree982f944afd41e31bccc74460c0e695a094812d6f
parent7f37facb972382fa46e80956e60720b0e6693d62 (diff)
testing/apache-mod-auth-openidc: fix module path in config fileHEADmaster
Fixes #15999
-rw-r--r--testing/apache-mod-auth-openidc/APKBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/apache-mod-auth-openidc/APKBUILD b/testing/apache-mod-auth-openidc/APKBUILD
index 11eb98866b0..463d8c70d2b 100644
--- a/testing/apache-mod-auth-openidc/APKBUILD
+++ b/testing/apache-mod-auth-openidc/APKBUILD
@@ -2,7 +2,7 @@
pkgname=apache-mod-auth-openidc
_pkgname=mod_auth_openidc
pkgver=2.4.15.7
-pkgrel=0
+pkgrel=1
pkgdesc="OpenID Connect Relying Party implementation for Apache HTTP Server 2.x"
url="https://www.mod-auth-openidc.org"
arch="all !s390x" # tests fails on s390x from cjose
@@ -48,7 +48,7 @@ package() {
mkdir -p "$pkgdir"/etc/apache2/conf.d
cat <<- __EOF__ > "$pkgdir"/etc/apache2/conf.d/mod-auth-openidc.conf
- LoadModule auth_openidc_module modules/mod_auth_openidc.so
+ LoadModule auth_openidc_module mod_auth_openidc.so
__EOF__
cat auth_openidc.conf >> "$pkgdir"/etc/apache2/conf.d/mod-auth-openidc.conf