From 6d360c6d4305c8d0bb2fd235aff53491766036a7 Mon Sep 17 00:00:00 2001 From: tteckster Date: Mon, 18 Sep 2023 07:04:12 -0400 Subject: [PATCH] Update openobserve.sh fix spelling fixes https://github.com/tteck/Proxmox/issues/1807 --- ct/openobserve.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/openobserve.sh b/ct/openobserve.sh index 7cdd431e..d3300770 100644 --- a/ct/openobserve.sh +++ b/ct/openobserve.sh @@ -56,10 +56,10 @@ function update_script() { header_info if [[ ! -d /opt/openobserve/ ]]; then msg_error "No ${APP} Installation Found!"; exit; fi msg_info "Updating $APP" -systemctl stop openobsecure +systemctl stop openobserve LATEST=$(curl -sL https://api.github.com/repos/openobserve/openobserve/releases/latest | grep '"tag_name":' | cut -d'"' -f4) tar zxvf <(curl -fsSL https://github.com/openobserve/openobserve/releases/download/$LATEST/openobserve-${LATEST}-linux-amd64.tar.gz) -C /opt/openobserve -systemctl start openobsecure +systemctl start openobserve msg_ok "Updated $APP" exit }