From 077fa50e15c5ff0f2dad8ce3a6827b87d1ba94a8 Mon Sep 17 00:00:00 2001 From: Elton Renda Date: Wed, 6 Dec 2023 10:39:05 +0200 Subject: [PATCH] fix: use debian utils for ubuntu --- apps/nginx-proxy-manager/install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/nginx-proxy-manager/install.sh b/apps/nginx-proxy-manager/install.sh index 8f18cd1..2987e92 100644 --- a/apps/nginx-proxy-manager/install.sh +++ b/apps/nginx-proxy-manager/install.sh @@ -13,7 +13,11 @@ fi source <(echo -n "$EPS_UTILS") source <(echo -n "$EPS_APP_CONFIG") -source <(wget --no-cache -qO- ${EPS_BASE_URL}/utils/${EPS_OS_DISTRO}.sh) +if [ "$EPS_OS_DISTRO" = "alpine" ]; then + source <(wget --no-cache -qO- ${EPS_BASE_URL}/utils/alpine.sh) +else + source <(wget --no-cache -qO- ${EPS_BASE_URL}/utils/debian.sh) +fi pms_bootstrap pms_settraps