Fix container permissions and update timezone default

Container fixes:
- Remove complex su user switching that fails due to missing user
- Run scripts as root but ensure file ownership matches NFS mapping
- Simplifies deployment and allows package installation to succeed

Setup script:
- Change default timezone from UTC to America/New_York
This commit is contained in:
Deckard
2025-10-13 01:07:25 -04:00
parent c90d777f2c
commit 9fe4a2b00a
2 changed files with 4 additions and 7 deletions

View File

@@ -322,7 +322,7 @@ main() {
BACKUP_DAILY_TIME=$(prompt_input "Daily backup time (24h format, e.g., 09 for 9 AM)" "09" "")
# Optional: Timezone
TIMEZONE=$(prompt_input "Server timezone" "UTC" "")
TIMEZONE=$(prompt_input "Server timezone" "America/New_York" "")
# Module Configuration
print_status "HEADER" "MODULE CONFIGURATION"