-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Open
Labels
bugSomething isn't workingSomething isn't working
Description
β Have you read and understood the above guidelines?
yes
π Did you run the script with verbose mode enabled?
Yes, verbose mode was enabled and the output is included below
π What is the name of the script you are using?
PVE Post Install
π What was the exact command used to execute the script?
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/pve/post-pve-install.sh)"
βοΈ What settings are you using?
- Default Settings
- Advanced Settings
π₯οΈ Which Linux distribution are you using?
Debian 13
π Which Proxmox version are you on?
9.1.4
π Provide a clear and concise description of the issue.
Better check for /etc/apt/apt.conf.d/no-nag-script existence before trying to delete it, otherwise post install script will interrupt. I modified original script like this:
...
no)
whiptail --backtitle "Proxmox VE Helper Scripts" --msgbox --title "Support Subscriptions" "Supporting the software's development team is essential. Check their official website's Support Subscriptions for pricing. Without their dedicated work, we wouldn't have this exceptional software." 10 58
msg_error "Selected no to Disabling subscription nag"
if [ -f /etc/apt/apt.conf.d/no-nag-script ]; then
rm /etc/apt/apt.conf.d/no-nag-script 2>/dev/null
fi
;;
esac
apt --reinstall install proxmox-widget-toolkit &>/dev/null || msg_error "Widget toolkit reinstall failed"
...
Original script interrupts when both conditions occurring:
- selected 'no' to disable subscription nag
- no 'DPkg::Post-Invoke' script exists on the system
π Steps to reproduce the issue.
- run PVE Post Install script on a fresh system
- select 'no' at the "Disable subscription nag" question
β Paste the full error output (if available).
script fails silently
πΌοΈ Additional context (optional).
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working