- Mark IGNORE on FreeBSD 12-aarch64 - Use makepatch to generate patch files - Fix typo at wazuh-agent and wazuh-manager pkg-message files [1] - Fix some linking issues when devel/libsysinfo is installed (using ports). wazuh-manager compile/install a library with the same name like libsysinfo and it is used by syscollector feature. - wazuh-dashboard use opensearch-dashboards 2.7.0 - Some other modifications ChangeLog at: https://github.com/wazuh/wazuh/releases PR: 271376 Reported by: lambert _ at _ sanesecurityguy.com [1]
20 lines
726 B
Plaintext
20 lines
726 B
Plaintext
--- api/Makefile.orig 2023-05-12 12:30:40 UTC
|
|
+++ api/Makefile
|
|
@@ -8,11 +8,11 @@ WAZUH_GROUP = wazuh
|
|
INSTALLDIR ?= /var/ossec
|
|
|
|
RM_FILE = rm -f
|
|
-INSTALL_DIR = install -o root -g ${WAZUH_GROUP} -m 0750 -d
|
|
-INSTALL_RW_DIR = install -o root -g ${WAZUH_GROUP} -m 0770 -d
|
|
-INSTALL_EXEC = install -o root -g ${WAZUH_GROUP} -m 0750
|
|
-INSTALL_FILE = install -o root -g ${WAZUH_GROUP} -m 0640
|
|
-INSTALL_CONFIG_FILE = install -o root -g ${WAZUH_GROUP} -m 0660
|
|
+INSTALL_DIR = install -m 0750 -d
|
|
+INSTALL_RW_DIR = install -m 0770 -d
|
|
+INSTALL_EXEC = install -m 0750
|
|
+INSTALL_FILE = install -m 0640
|
|
+INSTALL_CONFIG_FILE = install -m 0660
|
|
PYTHON_BIN = $(INSTALLDIR)/framework/python/bin/python3
|
|
|
|
|