From 4898e593a4a797e1703e10824fccc74ab351c345 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Sat, 12 Oct 2024 12:35:38 -0300 Subject: [PATCH] Fixed uncommenting port 8081 from gluetun --- docs.org | 1 + install.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/docs.org b/docs.org index cc63126..22fc77e 100644 --- a/docs.org +++ b/docs.org @@ -410,6 +410,7 @@ if [ "$setup_vpn" == "y" ]; then -e "s|- 8081:8081 # qbittorrent|#- 8081:8081 # qbittorrent|g" "$filename" \ -e "s|- 8080:8080 # sabnzbd|#- 8080:8080 # sabnzbd|g" "$filename" \ -e "s|#- 8080:8080/tcp # gluetun|- 8080:8080/tcp # gluetun|g" "$filename" + -e "s|#- 8081:8081/tcp # gluetun|- 8081:8081/tcp # gluetun|g" "$filename" fi #+end_src diff --git a/install.sh b/install.sh index 87445eb..a50095d 100644 --- a/install.sh +++ b/install.sh @@ -253,6 +253,7 @@ if [ "$setup_vpn" == "y" ]; then -e "s|- 8081:8081 # qbittorrent|#- 8081:8081 # qbittorrent|g" "$filename" \ -e "s|- 8080:8080 # sabnzbd|#- 8080:8080 # sabnzbd|g" "$filename" \ -e "s|#- 8080:8080/tcp # gluetun|- 8080:8080/tcp # gluetun|g" "$filename" + -e "s|#- 8081:8081/tcp # gluetun|- 8081:8081/tcp # gluetun|g" "$filename" fi sed -i -e "s||$filename|g" yams \