feat: Add ImunifyAV standalone mode support and fix launcher standalone detection

- ImunifyAV: Add standalone system detection and integration.conf setup
  - Prompts for ui_path for web server UI deployment
  - Validates input (absolute paths, no spaces)
  - Creates minimal integration.conf automatically
  - Shows SELinux warnings for RHEL-family systems
  - Provides post-install UI access instructions

- system-detect.sh: Fix detect_control_panel to return 0 for standalone
  - Was returning 1 on standalone detection, causing launcher to exit
  - Standalone detection is successful, not an error
  - Allows launcher to continue and show menu on standalone servers
This commit is contained in:
Developer
2026-03-21 19:35:21 -04:00
parent 12101901f8
commit 7ad35f59d8
2 changed files with 171 additions and 49 deletions
+1 -1
View File
@@ -106,7 +106,7 @@ detect_control_panel() {
SYS_USER_HOME_BASE="/home"
print_warning "No control panel detected (standalone server)"
return 1
return 0
}
#############################################################################