-
Notifications
You must be signed in to change notification settings - Fork 384
Description
π Request Details
Required Information
- Target version: releases 4.9.1 to 4.13 (latest)
- Request type
- Product update
- Fixes or corrections
- Improvement
- Other:
- Affected Documentation
-
Documentation section(s):
-
release 4.13
Install Wazuh components using the assisted method
Single-node offline installation -> tabs, group-tab:: DEB -
releases 4.9.1 to 4.12
Install Wazuh components using the assistant
Installing the Wazuh indexer -> tabs, group-tab:: DEB
-
-
Specific page URLs:
- 4.13: https://github.com/wazuh/wazuh-documentation/blob/v4.13.0/source/deployment-options/offline-installation/installation-assistant.rst#single-node-offline-installation
- from 4.9.1 to 4.12: https://github.com/wazuh/wazuh-documentation/blob/v4.13.0/source/deployment-options/offline-installation/installation-assistant.rst#single-node-offline-installation
-
Description
doing an offline installation on a debain arm system, the installation script "wazuh-install.sh" exited on a missing sw package dependency to "software-properties-common". This particular dependency seems to be undocumented.
Additional examples/references (screenshots, code samples, links)
π Additional Details
As the issue might be related to the content of the installer script "wazuh-install.sh", I tried to trace it's source. It seems the scripts generation is determined by code from wazuh-packages and parameter values from elsewhere:
https://github.com/search?q=org%3Awazuh+wazuh-install.sh+repo%3Awazuh%2Fwazuh-packages&type=code
"my" installer script contains this configuration, defining the requirement for the package not documented:
readonly wazuh_apt_dependencies=( apt-transport-https libcap2-bin software-properties-common gnupg)
There are similar definitions from line 69 on within
https://github.com/wazuh/wazuh-installation-assistant/blob/main/install_functions/installVariables.sh
Due to limited time I can't investigate more for now.