From a783425cef83d3fb398ca883c122f7ada2842b56 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Tue, 6 May 2025 15:14:47 +0100 Subject: [PATCH] Fix unterminated single quote error in install script --- scripts/install-pulse.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/install-pulse.sh b/scripts/install-pulse.sh index 2248f1754..aecf5e96b 100755 --- a/scripts/install-pulse.sh +++ b/scripts/install-pulse.sh @@ -826,13 +826,13 @@ configure_environment() { print_info "You need a Proxmox API Token. You can create one via the Proxmox Web UI," print_info "or run the following commands on your Proxmox host shell:" echo "----------------------------------------------------------------------" - echo ' + echo " # 1. Create user 'pulse-monitor' [enter password when prompted]:" echo " pveum useradd pulse-monitor@pam -comment "API user for Pulse monitoring"" - echo ' ' - echo ' + echo ' ' + echo " # 2. Create API token 'pulse' for user [COPY THE SECRET VALUE!]:" echo " pveum user token add pulse-monitor@pam pulse --privsep=1" - echo ' ' - echo ' + echo ' ' + echo " # 3. Assign PVEAuditor role to user:" echo " pveum acl modify / -user pulse-monitor@pam -role PVEAuditor" echo "----------------------------------------------------------------------" echo "After running the 'token add' command, copy the Token ID and Secret Value"