Hello everyone,
I am currently finishing up my auto configure script for Proxmox VE. (Since I have a standardized configurations and want to have have it automaticly configured.)
Now I have in my script code to deal with installations that get licensed and hosts that do not.
If I provide a license key as the first argument, the script runs:
Now my question is:
Can I run "apt update && apt upgrade -y" right after "pvesubscription update -force" or should I wait for some time before updating the system after applying the license key? (And if I should wait, then for how long?)
I am currently finishing up my auto configure script for Proxmox VE. (Since I have a standardized configurations and want to have have it automaticly configured.)
Now I have in my script code to deal with installations that get licensed and hosts that do not.
If I provide a license key as the first argument, the script runs:
pvesubscription set $1
pvesubscription update -force
Now my question is:
Can I run "apt update && apt upgrade -y" right after "pvesubscription update -force" or should I wait for some time before updating the system after applying the license key? (And if I should wait, then for how long?)