From 46105d00bb10dc8193de89a74af5c9acf258b097 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 24 Aug 2023 17:36:39 +0200 Subject: [PATCH] make sure that DOCKER_SOCKET_PROXY_ENABLED is actually removed in update-yaml.sh Signed-off-by: Simon L --- manual-install/update-yaml.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/manual-install/update-yaml.sh b/manual-install/update-yaml.sh index 055466e0..97d9983a 100644 --- a/manual-install/update-yaml.sh +++ b/manual-install/update-yaml.sh @@ -36,9 +36,7 @@ sed -i 's|- source: |- |' containers.yml sed -i 's|- ip_binding: |- |' containers.yml sed -i '/AIO_TOKEN/d' containers.yml sed -i '/AIO_URL/d' containers.yml - -sed -i '/AIO_TOKEN/d' sample.conf -sed -i '/AIO_URL/d' sample.conf +sed -i '/DOCKER_SOCKET_PROXY_ENABLED/d' containers.yml TCP="$(grep -oP '[%A-Z0-9_]+/tcp' containers.yml | sort -u)" mapfile -t TCP <<< "$TCP" @@ -67,7 +65,6 @@ do sed -i "s|$variable|\${$sole_variable}|g" containers.yml done -sed -i '/DOCKER_SOCKET_PROXY_ENABLED/d' sample.conf sed -i 's|_ENABLED=|_ENABLED="no" # Setting this to "yes" (with quotes) enables the option in Nextcloud automatically.|' sample.conf sed -i 's|CLAMAV_ENABLED=no.*|CLAMAV_ENABLED="no" # Setting this to "yes" (with quotes) enables the option in Nextcloud automatically. Note: arm64 has no clamav support|' sample.conf sed -i 's|TALK_ENABLED=no|TALK_ENABLED="yes"|' sample.conf