From bf2545ce405c0a66df47c3dffa3e1dfeb0221334 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Mon, 2 Jun 2025 13:44:28 +0200 Subject: [PATCH] Pulse: fix missing .env on service startup --- install/pulse-install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/pulse-install.sh b/install/pulse-install.sh index 50362c4177..1e4efcada2 100644 --- a/install/pulse-install.sh +++ b/install/pulse-install.sh @@ -35,6 +35,8 @@ temp_file=$(mktemp) mkdir -p /opt/pulse curl -fsSL "https://github.com/rcourtman/Pulse/releases/download/v${RELEASE}/pulse-v${RELEASE}.tar.gz" -o "$temp_file" tar zxf "$temp_file" --strip-components=1 -C /opt/pulse +touch /opt/pulse/.env +chown pulse:pulse /opt/pulse/.env echo "${RELEASE}" >/opt/${APPLICATION}_version.txt msg_ok "Installed Pulse"