mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-04-26 11:55:05 +02:00
Both settings were collected via Advanced Settings UI (Steps 26-27) but never applied to the pct create FEATURES string. This commit: - Add mknod=1 and mount=<fs> to FEATURES string in build_container() - Map ALLOW_MOUNT_FS in base_settings() (was only set in advanced path) - Add var_mknod and var_mount_fs to global VAR_WHITELIST (3rd whitelist) - Add input validation for var_mknod (0/1) and var_mount_fs (alphanumeric+comma) - Show mknod and mount_fs in confirmation dialog (Step 28 summary) - Show mknod and mount_fs in terminal echo after advanced settings - Log mknod and mount_fs to session log file Comma-separated user input (e.g. nfs,cifs) is converted to semicolons (mount=nfs;cifs) as required by pct features format.