.
This commit is contained in:
@ -1,5 +1,12 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# We don't want to run this on the wazuh server, otherwise bad things happen...
|
||||||
|
|
||||||
|
export TSYS_NSM_CHECK
|
||||||
|
TSYS_NSM_CHECK="$(hostname |grep -c tsys-nsm ||true)"
|
||||||
|
|
||||||
|
if [ "$TSYS_NSM_CHECK" -eq 0 ]; then
|
||||||
|
|
||||||
curl -s https://packages.wazuh.com/key/GPG-KEY-WAZUH | gpg --no-default-keyring --keyring gnupg-ring:/usr/share/keyrings/wazuh.gpg --import && chmod 644 /usr/share/keyrings/wazuh.gpg
|
curl -s https://packages.wazuh.com/key/GPG-KEY-WAZUH | gpg --no-default-keyring --keyring gnupg-ring:/usr/share/keyrings/wazuh.gpg --import && chmod 644 /usr/share/keyrings/wazuh.gpg
|
||||||
echo "deb [signed-by=/usr/share/keyrings/wazuh.gpg] https://packages.wazuh.com/4.x/apt/ stable main" > /etc/apt/sources.list.d/wazuh.list
|
echo "deb [signed-by=/usr/share/keyrings/wazuh.gpg] https://packages.wazuh.com/4.x/apt/ stable main" > /etc/apt/sources.list.d/wazuh.list
|
||||||
apt-get update
|
apt-get update
|
||||||
@ -7,4 +14,6 @@ WAZUH_MANAGER="tsys-nsm.knel.net" apt-get -y install wazuh-agent
|
|||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
systemctl enable wazuh-agent
|
systemctl enable wazuh-agent
|
||||||
systemctl start wazuh-agent
|
systemctl start wazuh-agent
|
||||||
echo "wazuh-agent hold" | dpkg --set-selections
|
echo "wazuh-agent hold" | dpkg --set-selections
|
||||||
|
|
||||||
|
fi
|
Reference in New Issue
Block a user