Update pulse.sh
This commit is contained in:
parent
76506bcbfd
commit
491683276f
148
ct/pulse.sh
148
ct/pulse.sh
@ -24,130 +24,58 @@ function update_script() {
|
|||||||
check_container_storage
|
check_container_storage
|
||||||
check_container_resources
|
check_container_resources
|
||||||
|
|
||||||
if ! command -v jq &>/dev/null; then
|
if [[ ! -d /opt/argus ]]; then
|
||||||
msg_info "jq is not installed. Installing..."
|
msg_error "No ${APP} Installation Found!"
|
||||||
$STD apt-get update >/dev/null
|
exit
|
||||||
$STD apt-get install -y jq >/dev/null
|
|
||||||
if ! command -v jq &>/dev/null; then
|
|
||||||
msg_error "Failed to install jq. Cannot proceed with update check."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
msg_ok "jq installed."
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
msg_info "Checking for ${APP} updates..."
|
RELEASE=$(curl -fsSL https://api.github.com/repos/rcourtman/Pulse/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
|
||||||
LATEST_RELEASE=$(curl -s https://api.github.com/repos/rcourtman/Pulse/releases/latest | jq -r '.tag_name')
|
if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then
|
||||||
msg_ok "Latest available version: ${LATEST_RELEASE}"
|
msg_info "Stopping ${APP}"
|
||||||
|
systemctl stop pulse-monitor
|
||||||
|
msg_ok "Stopped ${APP}"
|
||||||
|
|
||||||
CURRENT_VERSION=""
|
msg_info "Updating Pulse"
|
||||||
if [[ -f /opt/${APP}_version.txt ]]; then
|
if [[ -f /opt/pulse-proxmox/.env ]]; then
|
||||||
CURRENT_VERSION=$(cat /opt/${APP}_version.txt)
|
cp /opt/pulse-proxmox/.env /tmp/.env.backup.pulse
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "${LATEST_RELEASE}" != "$CURRENT_VERSION" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then
|
|
||||||
msg_info "Updating ${APP} to ${LATEST_RELEASE}..."
|
|
||||||
|
|
||||||
msg_info "Stopping ${APP} service..."
|
|
||||||
systemctl stop pulse-monitor.service
|
|
||||||
msg_ok "Stopped ${APP} service."
|
|
||||||
|
|
||||||
msg_info "Fetching and checking out ${LATEST_RELEASE}..."
|
|
||||||
cd /opt/pulse-proxmox || {
|
|
||||||
msg_error "Failed to cd into /opt/pulse-proxmox"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
msg_info "Configuring git safe directory..."
|
|
||||||
set -x
|
|
||||||
git config --global --add safe.directory /opt/pulse-proxmox
|
|
||||||
local git_config_exit_code=$?
|
|
||||||
set +x
|
|
||||||
if [ $git_config_exit_code -ne 0 ]; then
|
|
||||||
msg_error "git config safe.directory failed with exit code $git_config_exit_code"
|
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
msg_ok "Configured git safe directory."
|
temp_file=$(mktemp)
|
||||||
|
mkdir -p /opt/pulse-proxmox
|
||||||
silent git fetch origin --tags --force || {
|
rm -rf /opt/pulse-proxmox/*
|
||||||
msg_error "Failed to fetch from git remote."
|
curl -fsSL "https://github.com/rcourtman/Pulse/archive/refs/tags/v${RELEASE}.tar.gz" -o "$temp_file"
|
||||||
exit 1
|
tar zxf "$temp_file" --strip-components=1 -C /opt/pulse-proxmox
|
||||||
}
|
if [[ -f /tmp/.env.backup.pulse ]]; then
|
||||||
echo "DEBUG: Attempting checkout command: git checkout ${LATEST_RELEASE}"
|
mv /tmp/.env.backup.pulse /opt/pulse-proxmox/.env
|
||||||
git checkout "${LATEST_RELEASE}" || {
|
|
||||||
msg_error "Failed to checkout tag ${LATEST_RELEASE}."
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
silent git reset --hard "${LATEST_RELEASE}" || {
|
|
||||||
msg_error "Failed to reset to tag ${LATEST_RELEASE}."
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
silent git clean -fd || { msg_warning "Failed to clean untracked files."; }
|
|
||||||
msg_ok "Fetched and checked out ${LATEST_RELEASE}."
|
|
||||||
|
|
||||||
msg_info "Setting ownership and permissions before npm install..."
|
|
||||||
chown -R pulse:pulse /opt/pulse-proxmox || {
|
|
||||||
msg_error "Failed to chown /opt/pulse-proxmox"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
chmod -R u+rwX,go+rX,go-w /opt/pulse-proxmox || {
|
|
||||||
msg_error "Failed to chmod /opt/pulse-proxmox"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
if [ -d "/opt/pulse-proxmox/node_modules/.bin" ]; then
|
|
||||||
chmod +x /opt/pulse-proxmox/node_modules/.bin/* || msg_warning "Failed to chmod +x on node_modules/.bin"
|
|
||||||
fi
|
fi
|
||||||
msg_ok "Ownership and permissions set."
|
cd /opt/pulse-proxmox
|
||||||
|
$STD npm install --unsafe-perm
|
||||||
|
cd /opt/pulse-proxmox/server
|
||||||
|
$STD npm install --unsafe-perm
|
||||||
|
cd /opt/pulse-proxmox
|
||||||
|
$STD npm run build:css
|
||||||
|
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
|
||||||
|
msg_ok "Updated Pulse to ${RELEASE}"
|
||||||
|
|
||||||
msg_info "Installing Node.js dependencies..."
|
msg_info "Setting permissions for /opt/pulse-proxmox..."
|
||||||
silent sudo -iu pulse sh -c 'cd /opt/pulse-proxmox && npm install --unsafe-perm' || {
|
chown -R pulse:pulse "/opt/pulse-proxmox"
|
||||||
msg_error "Failed to install root npm dependencies."
|
find "/opt/pulse-proxmox" -type d -exec chmod 755 {} \;
|
||||||
exit 1
|
find "/opt/pulse-proxmox" -type f -exec chmod 644 {} \;
|
||||||
}
|
chmod 600 /opt/pulse-proxmox/.env
|
||||||
silent sudo -iu pulse sh -c 'cd /opt/pulse-proxmox/server && npm install --unsafe-perm' || {
|
msg_ok "Set permissions."
|
||||||
msg_error "Failed to install server npm dependencies."
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
msg_ok "Node.js dependencies installed."
|
|
||||||
|
|
||||||
msg_info "Building CSS assets..."
|
msg_info "Starting ${APP}"
|
||||||
TAILWIND_PATH="/opt/pulse-proxmox/node_modules/.bin/tailwindcss"
|
systemctl start pulse-monitor
|
||||||
TAILWIND_ARGS="-c ./src/tailwind.config.js -i ./src/index.css -o ./src/public/output.css"
|
msg_ok "Started ${APP}"
|
||||||
if ! sudo -iu pulse sh -c "cd /opt/pulse-proxmox && $TAILWIND_PATH $TAILWIND_ARGS"; then
|
|
||||||
echo -e "${TAB}${YW}⚠️ Failed to build CSS assets (See errors above). Proceeding anyway.${CL}"
|
|
||||||
else
|
|
||||||
msg_ok "CSS assets built."
|
|
||||||
fi
|
|
||||||
|
|
||||||
msg_info "Setting permissions..."
|
|
||||||
chown -R pulse:pulse /opt/pulse-proxmox || msg_warning "Final chown failed."
|
|
||||||
msg_ok "Permissions set."
|
|
||||||
|
|
||||||
msg_info "Starting ${APP} service..."
|
|
||||||
systemctl start pulse-monitor.service
|
|
||||||
msg_ok "Started ${APP} service."
|
|
||||||
|
|
||||||
echo "${LATEST_RELEASE}" >/opt/${APP}_version.txt
|
|
||||||
msg_ok "Update Successful to ${LATEST_RELEASE}"
|
|
||||||
else
|
else
|
||||||
msg_ok "No update required. ${APP} is already at ${LATEST_RELEASE}."
|
msg_ok "No update required. ${APP} is already at ${RELEASE}."
|
||||||
fi
|
fi
|
||||||
exit 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
start
|
start
|
||||||
build_container
|
build_container
|
||||||
description
|
description
|
||||||
|
|
||||||
PULSE_PORT=7655
|
msg_ok "Completed Successfully!\n"
|
||||||
if [ -f "/opt/pulse-proxmox/.env" ] && grep -q '^PORT=' "/opt/pulse-proxmox/.env"; then
|
|
||||||
PULSE_PORT=$(grep '^PORT=' "/opt/pulse-proxmox/.env" | cut -d'=' -f2 | tr -d '[:space:]')
|
|
||||||
if ! [[ "$PULSE_PORT" =~ ^[0-9]+$ ]]; then
|
|
||||||
PULSE_PORT=7655
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
msg_ok "Completed Successfully!
|
|
||||||
"
|
|
||||||
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
||||||
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
||||||
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:${PULSE_PORT}${CL}"
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:${PORT}${CL}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user