summaryrefslogtreecommitdiffstats
path: root/update.sh
diff options
context:
space:
mode:
authorJesper Noordsij <45041769+jnoordsij@users.noreply.github.com>2023-11-24 11:42:06 +0100
committerGitHub <noreply@github.com>2023-11-24 10:42:06 +0000
commitd1dbc77e0b5e851105cf8606942e74b7d21fe682 (patch)
tree002d9b880d5f26f5919541a9233dfbf00ef4b5d4 /update.sh
parent44e01e1eab2160bce02686797a51f81a3a021551 (diff)
EOL 25 (#2102)
Signed-off-by: Jesper Noordsij <jesper@sslleiden.nl>
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh13
1 files changed, 1 insertions, 12 deletions
diff --git a/update.sh b/update.sh
index f5e6f019..9556d8ce 100755
--- a/update.sh
+++ b/update.sh
@@ -2,17 +2,14 @@
set -eo pipefail
declare -A alpine_version=(
- [25]='3.16'
[default]='3.18'
)
declare -A debian_version=(
- [25]='bullseye'
[default]='bookworm'
)
declare -A php_version=(
- [25]='8.1'
[default]='8.2'
)
@@ -87,7 +84,7 @@ variants=(
fpm-alpine
)
-min_version='25'
+min_version='26'
# version_greater_or_equal A B returns whether A >= B
function version_greater_or_equal() {
@@ -112,14 +109,6 @@ function create_variant() {
echo "updating $fullversion [$1] $variant"
- # Apply version+variant-specific patches
- case "$version" in
- 25)
- # Nextcloud 26+ recommends sysvsem
- sed -ri -e '/sysvsem/d' "$dir/Dockerfile"
- ;;
- esac
-
# Replace the variables.
sed -ri -e '
s/%%ALPINE_VERSION%%/'"$alpineVersion"'/g;