diff --git a/install/pulse-install.sh b/install/pulse-install.sh index 7acbd4a..0b2e774 100644 --- a/install/pulse-install.sh +++ b/install/pulse-install.sh @@ -14,14 +14,12 @@ setting_up_container network_check update_os -APP="Pulse" -APP_DIR="/opt/pulse-proxmox" PULSE_USER="pulse" SERVICE_NAME="pulse-monitor.service" msg_info "Creating dedicated user pulse..." if id pulse &>/dev/null; then - msg_warning "User '${PULSE_USER}' already exists. Skipping creation." + msg_warn "User '${PULSE_USER}' already exists. Skipping creation." else useradd -r -m -d /opt/pulse-home -s /bin/bash "$PULSE_USER" if useradd -r -m -d /opt/pulse-home -s /bin/bash "$PULSE_USER"; then @@ -41,46 +39,42 @@ msg_ok "Installed Core Dependencies" NODE_VERSION="20" NODE_MODULE="yarn@latest" install_node_and_modules -msg_info "Setup ${APP}" -$STD git clone https://github.com/rcourtman/Pulse.git /opt/pulse-proxmox +msg_info "Setup Pulse" +RELEASE=$(curl -fsSL https://api.github.com/repos/rcourtman/Pulse/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') +temp_file=$(mktemp) +mkdir -p /opt/pulse-proxmox +curl -fsSL "https://github.com/rcourtman/Pulse/archive/refs/tags/v${RELEASE}.tar.gz" -o "$temp_file" +tar zxf "$temp_file" --strip-components=1 -C /opt/pulse-proxmox 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 -ENV_EXAMPLE="/opt/pulse-proxmox/.env.example" -ENV_FILE="${/opt/pulse-proxmox}/.env" -if [ -f "$ENV_EXAMPLE" ]; then - if [ ! -s "$ENV_FILE" ]; then - cp "$ENV_EXAMPLE" "$ENV_FILE" - msg_info "Created ${ENV_FILE} from example." - sed -i 's|^PROXMOX_HOST=.*|PROXMOX_HOST=https://proxmox_host:8006|' "$ENV_FILE" - sed -i 's|^PROXMOX_TOKEN_ID=.*|PROXMOX_TOKEN_ID=user@pam!tokenid|' "$ENV_FILE" - sed -i 's|^PROXMOX_TOKEN_SECRET=.*|PROXMOX_TOKEN_SECRET=YOUR_API_SECRET_HERE|' "$ENV_FILE" - sed -i 's|^PROXMOX_ALLOW_SELF_SIGNED_CERTS=.*|PROXMOX_ALLOW_SELF_SIGNED_CERTS=true|' "$ENV_FILE" - sed -i 's|^PORT=.*|PORT=7655|' "$ENV_FILE" - msg_warning "${ENV_FILE} created with placeholder values. Please edit it with your Proxmox details!" - else - msg_warning "${ENV_FILE} already exists. Skipping default configuration." - fi - chmod 600 "$ENV_FILE" -else - msg_warning "${ENV_EXAMPLE} not found. Skipping environment configuration." -fi +read -p "Proxmox Host (z. B. https://proxmox.example.com:8006): " PROXMOX_HOST +read -p "Proxmox Token ID (z. B. user@pam!mytoken): " PROXMOX_TOKEN_ID +read -p "Proxmox Token Secret: " PROXMOX_TOKEN_SECRET +read -p "Allow self-signed certs? (true/false): " PROXMOX_ALLOW_SELF_SIGNED_CERTS +read -p "Port (default: 7655): " PORT +PORT="${PORT:-7655}" + +cat </opt/pulse-proxmox/.env +PROXMOX_HOST=${PROXMOX_HOST} +PROXMOX_TOKEN_ID=${PROXMOX_TOKEN_ID} +PROXMOX_TOKEN_SECRET=${PROXMOX_TOKEN_SECRET} +PROXMOX_ALLOW_SELF_SIGNED_CERTS=${PROXMOX_ALLOW_SELF_SIGNED_CERTS} +PORT=${PORT} +EOF +echo "${RELEASE}" >/opt/${APPLICATION}_version.txt +msg_ok "Set up Pulse" msg_info "Setting permissions for /opt/pulse-proxmox..." chown -R ${PULSE_USER}:${PULSE_USER} "/opt/pulse-proxmox" find "/opt/pulse-proxmox" -type d -exec chmod 755 {} \; find "/opt/pulse-proxmox" -type f -exec chmod 644 {} \; -chmod 600 "$ENV_FILE" +chmod 600 /opt/pulse-proxmox/.env msg_ok "Set permissions." -msg_info "Saving installed version information..." -VERSION_TO_SAVE="${LATEST_RELEASE:-$(git rev-parse --short HEAD)}" -echo "${VERSION_TO_SAVE}" >/opt/${APP}_version.txt -msg_ok "Saved version info (${VERSION_TO_SAVE})." - msg_info "Creating Service" cat </etc/systemd/system/pulse-monitor.service [Unit] @@ -102,13 +96,14 @@ StandardError=journal [Install] WantedBy=multi-user.target EOF -systemctl enable -q --now pulse-monitor.service +systemctl enable -q --now pulse-monitor msg_ok "Created Service" motd_ssh customize -msg_info "Cleaning up apt cache..." +msg_info "Cleaning up" +rm -f "$temp_file" $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned up." +msg_ok "Cleaned"