Update pulse-install.sh

This commit is contained in:
CanbiZ 2025-05-22 12:03:02 +02:00
parent 92445d4ae8
commit 378ad7e7f2

View File

@ -14,14 +14,12 @@ setting_up_container
network_check network_check
update_os update_os
APP="Pulse"
APP_DIR="/opt/pulse-proxmox"
PULSE_USER="pulse" PULSE_USER="pulse"
SERVICE_NAME="pulse-monitor.service" SERVICE_NAME="pulse-monitor.service"
msg_info "Creating dedicated user pulse..." msg_info "Creating dedicated user pulse..."
if id pulse &>/dev/null; then 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 else
useradd -r -m -d /opt/pulse-home -s /bin/bash "$PULSE_USER" 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 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 NODE_VERSION="20" NODE_MODULE="yarn@latest" install_node_and_modules
msg_info "Setup ${APP}" msg_info "Setup Pulse"
$STD git clone https://github.com/rcourtman/Pulse.git /opt/pulse-proxmox 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 cd /opt/pulse-proxmox
$STD npm install --unsafe-perm $STD npm install --unsafe-perm
cd /opt/pulse-proxmox/server cd /opt/pulse-proxmox/server
$STD npm install --unsafe-perm $STD npm install --unsafe-perm
cd /opt/pulse-proxmox cd /opt/pulse-proxmox
$STD npm run build:css $STD npm run build:css
ENV_EXAMPLE="/opt/pulse-proxmox/.env.example" read -p "Proxmox Host (z.B. https://proxmox.example.com:8006): " PROXMOX_HOST
ENV_FILE="${/opt/pulse-proxmox}/.env" read -p "Proxmox Token ID (z.B. user@pam!mytoken): " PROXMOX_TOKEN_ID
if [ -f "$ENV_EXAMPLE" ]; then read -p "Proxmox Token Secret: " PROXMOX_TOKEN_SECRET
if [ ! -s "$ENV_FILE" ]; then read -p "Allow self-signed certs? (true/false): " PROXMOX_ALLOW_SELF_SIGNED_CERTS
cp "$ENV_EXAMPLE" "$ENV_FILE" read -p "Port (default: 7655): " PORT
msg_info "Created ${ENV_FILE} from example." PORT="${PORT:-7655}"
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" cat <<EOF >/opt/pulse-proxmox/.env
sed -i 's|^PROXMOX_TOKEN_SECRET=.*|PROXMOX_TOKEN_SECRET=YOUR_API_SECRET_HERE|' "$ENV_FILE" PROXMOX_HOST=${PROXMOX_HOST}
sed -i 's|^PROXMOX_ALLOW_SELF_SIGNED_CERTS=.*|PROXMOX_ALLOW_SELF_SIGNED_CERTS=true|' "$ENV_FILE" PROXMOX_TOKEN_ID=${PROXMOX_TOKEN_ID}
sed -i 's|^PORT=.*|PORT=7655|' "$ENV_FILE" PROXMOX_TOKEN_SECRET=${PROXMOX_TOKEN_SECRET}
msg_warning "${ENV_FILE} created with placeholder values. Please edit it with your Proxmox details!" PROXMOX_ALLOW_SELF_SIGNED_CERTS=${PROXMOX_ALLOW_SELF_SIGNED_CERTS}
else PORT=${PORT}
msg_warning "${ENV_FILE} already exists. Skipping default configuration." EOF
fi echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
chmod 600 "$ENV_FILE" msg_ok "Set up Pulse"
else
msg_warning "${ENV_EXAMPLE} not found. Skipping environment configuration."
fi
msg_info "Setting permissions for /opt/pulse-proxmox..." msg_info "Setting permissions for /opt/pulse-proxmox..."
chown -R ${PULSE_USER}:${PULSE_USER} "/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 d -exec chmod 755 {} \;
find "/opt/pulse-proxmox" -type f -exec chmod 644 {} \; find "/opt/pulse-proxmox" -type f -exec chmod 644 {} \;
chmod 600 "$ENV_FILE" chmod 600 /opt/pulse-proxmox/.env
msg_ok "Set permissions." 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" msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/pulse-monitor.service cat <<EOF >/etc/systemd/system/pulse-monitor.service
[Unit] [Unit]
@ -102,13 +96,14 @@ StandardError=journal
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target
EOF EOF
systemctl enable -q --now pulse-monitor.service systemctl enable -q --now pulse-monitor
msg_ok "Created Service" msg_ok "Created Service"
motd_ssh motd_ssh
customize customize
msg_info "Cleaning up apt cache..." msg_info "Cleaning up"
rm -f "$temp_file"
$STD apt-get -y autoremove $STD apt-get -y autoremove
$STD apt-get -y autoclean $STD apt-get -y autoclean
msg_ok "Cleaned up." msg_ok "Cleaned"