From 6f40dc49a7989b14d2dd89b877c228ad66c1e677 Mon Sep 17 00:00:00 2001 From: thespad Date: Mon, 20 Jan 2025 11:06:37 +0000 Subject: [PATCH] Fix iptables symlinks --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1602e32..2231d09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN \ openresolv \ wireguard-tools==${WIREGUARD_RELEASE} && \ echo "wireguard" >> /etc/modules && \ - cd /sbin && \ + cd /usr/sbin && \ for i in ! !-save !-restore; do \ rm -rf iptables$(echo "${i}" | cut -c2-) && \ rm -rf ip6tables$(echo "${i}" | cut -c2-) && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index a1c91e6..2f309ef 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -31,7 +31,7 @@ RUN \ openresolv \ wireguard-tools==${WIREGUARD_RELEASE} && \ echo "wireguard" >> /etc/modules && \ - cd /sbin && \ + cd /usr/sbin && \ for i in ! !-save !-restore; do \ rm -rf iptables$(echo "${i}" | cut -c2-) && \ rm -rf ip6tables$(echo "${i}" | cut -c2-) && \