โ
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?
Any Debian based LXC script, but specifically here, Shiori
๐ What was the exact command used to execute the script?
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/shiori.sh)"
โ๏ธ What settings are you using?
๐ฅ๏ธ Which Linux distribution are you using?
Debian 13
๐งฑ Is this Proxmox host running arm64?
No
๐ Which Proxmox version are you on?
pve-manager/9.2.11/f6997e698c7933ea (running kernel: 7.0.14-12-pve)
๐ Provide a clear and concise description of the issue.
When you run a Debian based community script after โhardeningโ the ProxmoxVE node using PegaProx, the permissions are tightened to the point that the script cannot get a network connection.
Umask 022 executed before the script, does fix the network error, by making directory /etc 755 as needed. But I haven't been able to install this or any other Debian based scripts I tried because various other issues cause them to fail. (I, however, didn't do exhaustive testing on many LXC installs.) I'm assuming, maybe incorrectly, that there may be other permission concerns using the umask 022 command.
See #14363, a closed and locked issue. It does the best to explain the situation.
Related to the above referenced issue. I would argue that it does appear to be script related. If you install any of the same Debian based LXC containers using the ProxmoxVE โCreate CTโ on the GUI menu after the โhardeningโ process, they install flawlessly with the correct permissions set for the /etc directory.
๐ Steps to reproduce the issue.
- Set up/use a testing server of ProxmoxVE.
- Install the PegaProx LXC on the server.
- Run the "Harden PVE Node" menu in PegaProx under: (your proxmox node) - Automation - Harden PVE Node
- After that, try to install any Debian based LXC in the community-scripts. The script will fail to finish, because it cannot access any Debian repositories over the network.
- To verify, save the unfinished LXC for testing
- Run: stat -c %a /etc. 750 will be shown for the directory permissions, which makes resolv.conf unreachable.
- chmod 755 /etc. Network now works and you can access the repositories.
โ Paste the full error output (if available).
Using:
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/shiori.sh)"
/ // / ()__ __()
_ / __ / / __ / / /
/ / / / / / // / / / /
/// ///_// //
๐งฉ Using Advanced Install on node proxmox0
๐ก PVE Version 9.2.11 (Kernel: 7.0.14-12-pve)
๐ฅ๏ธ Operating System: debian
๐ Version: 13
๐ฆ Container Type: Unprivileged
๐ Container ID: 100
๐ Hostname: shiori
๐พ Disk Size: 4 GB
๐ง CPU Cores: 1
๐ ๏ธ RAM Size: 1024 MiB
๐ Bridge: vmbr0
๐ก IPv4: dhcp
๐ก IPv6: disable
๐๏ธ FUSE Support: no
๐ฆ Nesting: Enabled
๐ฆ Keyctl: Enabled
๐ฎ GPU Passthrough: no
๐ก Timezone: America/Denver
๐ Verbose Mode: yes
๐ Creating an LXC of Shiori using the above advanced settings
โ๏ธ Storage local (Free: 47.4GB Used: 16.9GB) [Template]
โ๏ธ Storage local-lvm (Free: 141.3GB Used: 0.0B) [Container]
โ๏ธ Storage 'local-lvm' (lvmthin) validated
โ๏ธ Template storage 'local' validated
โ๏ธ Template search completed
โ๏ธ Template debian-13-standard_13.6-1_amd64.tar.zst [local]
โ๏ธ LXC Container 100 was successfully created.
โ๏ธ Started LXC Container
โ๏ธ Network in LXC is reachable (ping)
๐ก apt-get update failed (security.debian.org).
โน๏ธ Probing alternate mirrors (this can take 1-2 minutes on network issues)
Mirror fallback for distro: debian
Phase 1/3: Scanning global mirrors for reachability...
Attempting mirror: ftp.nl.debian.org
Mirror ftp.nl.debian.org failed (package install error)
Attempting mirror: debian.mirror.lrz.de
Mirror debian.mirror.lrz.de failed (package install error)
Attempting mirror: ftp.fau.de
Mirror ftp.fau.de failed (package install error)
Phase 2/3: Trying primary mirror...
Attempting mirror: ftp.debian.org
Mirror ftp.debian.org failed (package install error)
Phase 3/3: Scanning regional mirrors...
Attempting mirror: debian.osuosl.org
Mirror debian.osuosl.org failed (package install error)
Attempting mirror: mirrors.ocf.berkeley.edu
Mirror mirrors.ocf.berkeley.edu failed (package install error)
Attempting mirror: debian.csail.mit.edu
Mirror debian.csail.mit.edu failed (package install error)
๐ก Multiple mirrors failed (possible CDN synchronization issue).
๐ก Find Debian mirrors at: https://www.debian.org/mirror/list
Enter a mirror hostname (or 'skip' to abort): skip
๐ก Mirror selection aborted by user ('skip')
๐ก Aborting installation before base package bootstrap
โ๏ธ Installation failed in container 100 (exit code: 130)
๐ Installation log: /tmp/shiori-100-f20101c6.log
Error: Aborted by user (SIGINT)
What would you like to do?
- Remove container and exit
- Keep container for debugging
- Retry with verbose mode (full rebuild)
Select option [1-3] (default: 1, auto-remove in 60s): 2
Container 100 kept for debugging
Debian GNU/Linux 13 shiori tty1
shiori login: root
Password:
Linux shiori 7.0.14-12-pve #1 SMP PREEMPT_DYNAMIC PMX 7.0.14-12 (2026-08-11T11:05Z) x86_64
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
root@shiori:~# stat -c %a /etc
750
root@shiori:~# apt update
Ign:1 http://security.debian.org trixie-security InRelease
Ign:2 http://debian.csail.mit.edu/debian trixie InRelease
Ign:3 http://debian.csail.mit.edu/debian trixie-updates InRelease
Ign:1 http://security.debian.org trixie-security InRelease
Ign:3 http://debian.csail.mit.edu/debian trixie-updates InRelease
Ign:2 http://debian.csail.mit.edu/debian trixie InRelease
Ign:1 http://security.debian.org trixie-security InRelease
Ign:2 http://debian.csail.mit.edu/debian trixie InRelease
Ign:3 http://debian.csail.mit.edu/debian trixie-updates InRelease
Err:1 http://security.debian.org trixie-security InRelease
Temporary failure resolving 'security.debian.org'
Err:3 http://debian.csail.mit.edu/debian trixie-updates InRelease
Temporary failure resolving 'debian.csail.mit.edu'
Err:2 http://debian.csail.mit.edu/debian trixie InRelease
Temporary failure resolving 'debian.csail.mit.edu'
All packages are up to date.
Warning: Failed to fetch http://security.debian.org/dists/trixie-security/InRelease Temporary failure resolving 'security.debian.org'
Warning: Failed to fetch http://debian.csail.mit.edu/debian/dists/trixie/InRelease Temporary failure resolving 'debian.csail.mit.edu'
Warning: Failed to fetch http://debian.csail.mit.edu/debian/dists/trixie-updates/InRelease Temporary failure resolving 'debian.csail.mit.edu'
Warning: Some index files failed to download. They have been ignored, or old ones used instead.
root@shiori:~# chmod 755 /etc
root@shiori:# apt update
Get:1 http://security.debian.org trixie-security InRelease [43.4 kB]
Get:2 http://debian.csail.mit.edu/debian trixie InRelease [140 kB]
Get:3 http://security.debian.org trixie-security/contrib amd64 Packages [3,148 B]
Get:4 http://debian.csail.mit.edu/debian trixie-updates InRelease [47.3 kB]
Get:5 http://debian.csail.mit.edu/debian trixie/contrib amd64 Packages [53.8 kB]
Get:6 http://debian.csail.mit.edu/debian trixie/contrib Translation-en [49.6 kB]
Get:7 http://debian.csail.mit.edu/debian trixie/main amd64 Packages [9,673 kB]
Get:8 http://security.debian.org trixie-security/contrib Translation-en [2,564 B]
Get:9 http://security.debian.org trixie-security/main amd64 Packages [244 kB]
Get:10 http://debian.csail.mit.edu/debian trixie/main Translation-en [6,484 kB]
Get:11 http://debian.csail.mit.edu/debian trixie-updates/main amd64 Packages [4,412 B]
Get:12 http://debian.csail.mit.edu/debian trixie-updates/main Translation-en [2,496 B]
Get:13 http://security.debian.org trixie-security/main Translation-en [148 kB]
Fetched 16.9 MB in 2s (10.7 MB/s)
22 packages can be upgraded. Run 'apt list --upgradable' to see them.
root@shiori:#
Using:
umask 022
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/shiori.sh)"
/ // / ()__ __()
_ / __ / / __ / / /
/ / / / / / // / / / /
/// ///_// //
โ๏ธ Using Default Settings on node proxmox0
๐ก PVE Version 9.2.11 (Kernel: 7.0.14-12-pve)
๐ Container ID: 101
๐ฅ๏ธ Operating System: debian (13)
๐ฆ Container Type: Unprivileged
๐พ Disk Size: 4 GB
๐ง CPU Cores: 1
๐ ๏ธ RAM Size: 1024 MiB
๐ Creating a Shiori LXC using the above default settings
โ๏ธ Storage local (Free: 47.4GB Used: 16.9GB) [Template]
โ๏ธ Storage local-lvm (Free: 140.1GB Used: 1.2GB) [Container]
โ๏ธ Storage 'local-lvm' (lvmthin) validated
โ๏ธ Template storage 'local' validated
โ๏ธ Template search completed
โ๏ธ Template debian-13-standard_13.6-1_amd64.tar.zst [local]
โ๏ธ LXC Container 101 was successfully created.
โ๏ธ Started LXC Container
โ๏ธ Network in LXC is reachable (ping)
โ๏ธ Customized LXC Container
โ๏ธ Set up Container OS
โ๏ธ Network Connected: 192.168.0.252
โ๏ธ IPv4 Internet Connected
โ๏ธ IPv6 Internet Not Connected
โ๏ธ Git DNS: github.com:(โ๏ธ ) raw.githubusercontent.com:(โ๏ธ ) api.github.com:(โ๏ธ ) git.community-scripts.org:(โ๏ธ )
โ๏ธ Updated Container OS
mktemp: failed to create directory via template โ/tmp/user/0/tmp.XXXXXXXXXXโ: No such file or directory
โ๏ธ in line 16: exit code 1 (General error / Operation not permitted): while executing command return 1
--- Last 20 lines of log ---
After modifying main.cf, be sure to run 'systemctl reload postfix'.
Setting up mount (2.41.5-0+deb13u1) ...
Setting up python3.13-minimal (3.13.5-2+deb13u4) ...
Setting up bind9-host (1:9.20.26-1deb13u1) ...
Setting up libpython3.13-stdlib:amd64 (3.13.5-2+deb13u4) ...
Setting up util-linux-extra (2.41.5-0+deb13u1) ...
Setting up login (1:4.16.0-2+really2.41.5-0+deb13u1) ...
Setting up python3.13 (3.13.5-2+deb13u4) ...
Setting up fdisk (2.41.5-0+deb13u1) ...
Setting up bind9-dnsutils (1:9.20.26-1deb13u1) ...
Processing triggers for libc-bin (2.41-12+deb13u3) ...
Processing triggers for systemd (257.13-1~deb13u1) ...
Processing triggers for man-db (2.13.1-1) ...
Processing triggers for mailcap (3.74) ...
Processing triggers for postfix (3.10.13-0+deb13u1) ...
Restarting postfix
[2026-08-24 23:10:50] [OK] Updated Container OS
[2026-08-24 23:10:50] [ERROR] in line 16: exit code 1 (General error / Operation not permitted): while executing command return 1
โ๏ธ Installation failed in container 101 (exit code: 1)
๐ Installation log: /tmp/shiori-101-09e6e610.log
Error: General error / Operation not permitted
๐ผ๏ธ Additional context (optional).
This is a problem, of course, with the Ubuntu scripts also.
This may or not be related... When installing a script using the "default" settings, I was not able to log into the LXC using an "empty" password. I had to use the advanced settings and add a password to log in and debug the failed container install.
I've spent a lot of time on this so far, and the only fix I am capable of doing, if I want to continue installing community-scripts, is rebuilding my ProxmoxVE server from scratch. Then not install or use the PegaProx and/or its "hardening" function.
For reference testing, I installed a Alpine container via a community-script and it worked fine.
โ 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?
Any Debian based LXC script, but specifically here, Shiori
๐ What was the exact command used to execute the script?
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/shiori.sh)"
โ๏ธ What settings are you using?
๐ฅ๏ธ Which Linux distribution are you using?
Debian 13
๐งฑ Is this Proxmox host running arm64?
No
๐ Which Proxmox version are you on?
pve-manager/9.2.11/f6997e698c7933ea (running kernel: 7.0.14-12-pve)
๐ Provide a clear and concise description of the issue.
When you run a Debian based community script after โhardeningโ the ProxmoxVE node using PegaProx, the permissions are tightened to the point that the script cannot get a network connection.
Umask 022 executed before the script, does fix the network error, by making directory /etc 755 as needed. But I haven't been able to install this or any other Debian based scripts I tried because various other issues cause them to fail. (I, however, didn't do exhaustive testing on many LXC installs.) I'm assuming, maybe incorrectly, that there may be other permission concerns using the umask 022 command.
See #14363, a closed and locked issue. It does the best to explain the situation.
Related to the above referenced issue. I would argue that it does appear to be script related. If you install any of the same Debian based LXC containers using the ProxmoxVE โCreate CTโ on the GUI menu after the โhardeningโ process, they install flawlessly with the correct permissions set for the /etc directory.
๐ Steps to reproduce the issue.
โ Paste the full error output (if available).
Using:
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/shiori.sh)"
/ // / ()__ __()
_ / __ / / __ / / /
/ / / / / / // / / / /
/// ///_// //
๐งฉ Using Advanced Install on node proxmox0
๐ก PVE Version 9.2.11 (Kernel: 7.0.14-12-pve)
๐ฅ๏ธ Operating System: debian
๐ Version: 13
๐ฆ Container Type: Unprivileged
๐ Container ID: 100
๐ Hostname: shiori
๐พ Disk Size: 4 GB
๐ง CPU Cores: 1
๐ ๏ธ RAM Size: 1024 MiB
๐ Bridge: vmbr0
๐ก IPv4: dhcp
๐ก IPv6: disable
๐๏ธ FUSE Support: no
๐ฆ Nesting: Enabled
๐ฆ Keyctl: Enabled
๐ฎ GPU Passthrough: no
๐ก Timezone: America/Denver
๐ Verbose Mode: yes
๐ Creating an LXC of Shiori using the above advanced settings
โ๏ธ Storage local (Free: 47.4GB Used: 16.9GB) [Template]
โ๏ธ Storage local-lvm (Free: 141.3GB Used: 0.0B) [Container]
โ๏ธ Storage 'local-lvm' (lvmthin) validated
โ๏ธ Template storage 'local' validated
โ๏ธ Template search completed
โ๏ธ Template debian-13-standard_13.6-1_amd64.tar.zst [local]
โ๏ธ LXC Container 100 was successfully created.
โ๏ธ Started LXC Container
โ๏ธ Network in LXC is reachable (ping)
๐ก apt-get update failed (security.debian.org).
โน๏ธ Probing alternate mirrors (this can take 1-2 minutes on network issues)
Mirror fallback for distro: debian
Phase 1/3: Scanning global mirrors for reachability...
Attempting mirror: ftp.nl.debian.org
Mirror ftp.nl.debian.org failed (package install error)
Attempting mirror: debian.mirror.lrz.de
Mirror debian.mirror.lrz.de failed (package install error)
Attempting mirror: ftp.fau.de
Mirror ftp.fau.de failed (package install error)
Phase 2/3: Trying primary mirror...
Attempting mirror: ftp.debian.org
Mirror ftp.debian.org failed (package install error)
Phase 3/3: Scanning regional mirrors...
Attempting mirror: debian.osuosl.org
Mirror debian.osuosl.org failed (package install error)
Attempting mirror: mirrors.ocf.berkeley.edu
Mirror mirrors.ocf.berkeley.edu failed (package install error)
Attempting mirror: debian.csail.mit.edu
Mirror debian.csail.mit.edu failed (package install error)
๐ก Multiple mirrors failed (possible CDN synchronization issue).
๐ก Find Debian mirrors at: https://www.debian.org/mirror/list
Enter a mirror hostname (or 'skip' to abort): skip
๐ก Mirror selection aborted by user ('skip')
๐ก Aborting installation before base package bootstrap
โ๏ธ Installation failed in container 100 (exit code: 130)
๐ Installation log: /tmp/shiori-100-f20101c6.log
Error: Aborted by user (SIGINT)
What would you like to do?
Select option [1-3] (default: 1, auto-remove in 60s): 2
Container 100 kept for debugging
Debian GNU/Linux 13 shiori tty1
shiori login: root
Password:
Linux shiori 7.0.14-12-pve #1 SMP PREEMPT_DYNAMIC PMX 7.0.14-12 (2026-08-11T11:05Z) x86_64
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
root@shiori:~# stat -c %a /etc
750
root@shiori:~# apt update
Ign:1 http://security.debian.org trixie-security InRelease
Ign:2 http://debian.csail.mit.edu/debian trixie InRelease
Ign:3 http://debian.csail.mit.edu/debian trixie-updates InRelease
Ign:1 http://security.debian.org trixie-security InRelease
Ign:3 http://debian.csail.mit.edu/debian trixie-updates InRelease
Ign:2 http://debian.csail.mit.edu/debian trixie InRelease
Ign:1 http://security.debian.org trixie-security InRelease
Ign:2 http://debian.csail.mit.edu/debian trixie InRelease
Ign:3 http://debian.csail.mit.edu/debian trixie-updates InRelease
Err:1 http://security.debian.org trixie-security InRelease
Temporary failure resolving 'security.debian.org'
Err:3 http://debian.csail.mit.edu/debian trixie-updates InRelease
Temporary failure resolving 'debian.csail.mit.edu'
Err:2 http://debian.csail.mit.edu/debian trixie InRelease
Temporary failure resolving 'debian.csail.mit.edu'
All packages are up to date.
Warning: Failed to fetch http://security.debian.org/dists/trixie-security/InRelease Temporary failure resolving 'security.debian.org'
Warning: Failed to fetch http://debian.csail.mit.edu/debian/dists/trixie/InRelease Temporary failure resolving 'debian.csail.mit.edu'
Warning: Failed to fetch http://debian.csail.mit.edu/debian/dists/trixie-updates/InRelease Temporary failure resolving 'debian.csail.mit.edu'
Warning: Some index files failed to download. They have been ignored, or old ones used instead.
root@shiori:~# chmod 755 /etc
root@shiori:
# apt update#Get:1 http://security.debian.org trixie-security InRelease [43.4 kB]
Get:2 http://debian.csail.mit.edu/debian trixie InRelease [140 kB]
Get:3 http://security.debian.org trixie-security/contrib amd64 Packages [3,148 B]
Get:4 http://debian.csail.mit.edu/debian trixie-updates InRelease [47.3 kB]
Get:5 http://debian.csail.mit.edu/debian trixie/contrib amd64 Packages [53.8 kB]
Get:6 http://debian.csail.mit.edu/debian trixie/contrib Translation-en [49.6 kB]
Get:7 http://debian.csail.mit.edu/debian trixie/main amd64 Packages [9,673 kB]
Get:8 http://security.debian.org trixie-security/contrib Translation-en [2,564 B]
Get:9 http://security.debian.org trixie-security/main amd64 Packages [244 kB]
Get:10 http://debian.csail.mit.edu/debian trixie/main Translation-en [6,484 kB]
Get:11 http://debian.csail.mit.edu/debian trixie-updates/main amd64 Packages [4,412 B]
Get:12 http://debian.csail.mit.edu/debian trixie-updates/main Translation-en [2,496 B]
Get:13 http://security.debian.org trixie-security/main Translation-en [148 kB]
Fetched 16.9 MB in 2s (10.7 MB/s)
22 packages can be upgraded. Run 'apt list --upgradable' to see them.
root@shiori:
Using:
umask 022
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/shiori.sh)"
/ // / ()__ __()
_ / __ / / __ / / /
/ / / / / / // / / / /
/// ///_// //
โ๏ธ Using Default Settings on node proxmox0
๐ก PVE Version 9.2.11 (Kernel: 7.0.14-12-pve)
๐ Container ID: 101
๐ฅ๏ธ Operating System: debian (13)
๐ฆ Container Type: Unprivileged
๐พ Disk Size: 4 GB
๐ง CPU Cores: 1
๐ ๏ธ RAM Size: 1024 MiB
๐ Creating a Shiori LXC using the above default settings
โ๏ธ Storage local (Free: 47.4GB Used: 16.9GB) [Template]
โ๏ธ Storage local-lvm (Free: 140.1GB Used: 1.2GB) [Container]
โ๏ธ Storage 'local-lvm' (lvmthin) validated
โ๏ธ Template storage 'local' validated
โ๏ธ Template search completed
โ๏ธ Template debian-13-standard_13.6-1_amd64.tar.zst [local]
โ๏ธ LXC Container 101 was successfully created.
โ๏ธ Started LXC Container
โ๏ธ Network in LXC is reachable (ping)
โ๏ธ Customized LXC Container
โ๏ธ Set up Container OS
โ๏ธ Network Connected: 192.168.0.252
โ๏ธ IPv4 Internet Connected
โ๏ธ IPv6 Internet Not Connected
โ๏ธ Git DNS: github.com:(โ๏ธ ) raw.githubusercontent.com:(โ๏ธ ) api.github.com:(โ๏ธ ) git.community-scripts.org:(โ๏ธ )
โ๏ธ Updated Container OS
mktemp: failed to create directory via template โ/tmp/user/0/tmp.XXXXXXXXXXโ: No such file or directory
โ๏ธ in line 16: exit code 1 (General error / Operation not permitted): while executing command return 1
--- Last 20 lines of log ---
After modifying main.cf, be sure to run 'systemctl reload postfix'.
Setting up mount (2.41.5-0+deb13u1) ...
Setting up python3.13-minimal (3.13.5-2+deb13u4) ...
Setting up bind9-host (1:9.20.26-1
deb13u1) ...deb13u1) ...Setting up libpython3.13-stdlib:amd64 (3.13.5-2+deb13u4) ...
Setting up util-linux-extra (2.41.5-0+deb13u1) ...
Setting up login (1:4.16.0-2+really2.41.5-0+deb13u1) ...
Setting up python3.13 (3.13.5-2+deb13u4) ...
Setting up fdisk (2.41.5-0+deb13u1) ...
Setting up bind9-dnsutils (1:9.20.26-1
Processing triggers for libc-bin (2.41-12+deb13u3) ...
Processing triggers for systemd (257.13-1~deb13u1) ...
Processing triggers for man-db (2.13.1-1) ...
Processing triggers for mailcap (3.74) ...
Processing triggers for postfix (3.10.13-0+deb13u1) ...
Restarting postfix
[2026-08-24 23:10:50] [OK] Updated Container OS
[2026-08-24 23:10:50] [ERROR] in line 16: exit code 1 (General error / Operation not permitted): while executing command return 1
โ๏ธ Installation failed in container 101 (exit code: 1)
๐ Installation log: /tmp/shiori-101-09e6e610.log
Error: General error / Operation not permitted
๐ผ๏ธ Additional context (optional).
This is a problem, of course, with the Ubuntu scripts also.
This may or not be related... When installing a script using the "default" settings, I was not able to log into the LXC using an "empty" password. I had to use the advanced settings and add a password to log in and debug the failed container install.
I've spent a lot of time on this so far, and the only fix I am capable of doing, if I want to continue installing community-scripts, is rebuilding my ProxmoxVE server from scratch. Then not install or use the PegaProx and/or its "hardening" function.
For reference testing, I installed a Alpine container via a community-script and it worked fine.