1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-12-26 08:11:33 +00:00

reuse DOCKER_MAJOR Variable in ip6_controller

This commit is contained in:
DerLinkman
2025-08-05 16:36:35 +02:00
parent e2a2b42139
commit 690d511e54

View File

@@ -41,7 +41,7 @@ docker_daemon_edit(){
! _has_kv ipv6 true && MISSING+=("ipv6: true")
! grep -Eq '"fixed-cidr-v6"\s*:\s*".+"' "$DOCKER_DAEMON_CONFIG" \
&& MISSING+=('fixed-cidr-v6: "fd00:dead:beef:c0::/80"')
if [[ -n "$docker_version" && "$docker_version" -ge 27 ]]; then
if [[ -n "$DOCKER_MAJOR" && "$DOCKER_MAJOR" -ge 27 ]]; then
_has_kv ipv6 true && ! _has_kv ip6tables true && MISSING+=("ip6tables: true")
! _has_kv experimental true && MISSING+=("experimental: true")
fi