2023-11-17 17:00:28 -06:00
|
|
|
post_install()
|
|
|
|
{
|
2023-11-21 10:09:57 -06:00
|
|
|
echo "creating wazuh-indexer user and group"
|
|
|
|
groupadd -f wazuh-dashboard
|
|
|
|
usuario="wazuh-dashboard" && id "$usuario" &>/dev/null || useradd -d /usr/share/wazuh-dashboard -g wazuh-dashboard -s /usr/bin/nologin wazuh-dashboard
|
|
|
|
chown -R wazuh-dashboard:wazuh-dashboard /usr/share/wazuh-dashboard
|
|
|
|
chown -R wazuh-dashboard:wazuh-dashboard /etc/wazuh-dashboard
|
|
|
|
echo "Done!"
|
2023-11-17 17:00:28 -06:00
|
|
|
echo "Visit https://documentation.wazuh.com/current/installation-guide/wazuh-dashboard/step-by-step.html and follow the configure instructions"
|
|
|
|
}
|