forked from wazuh/wazuh-docker
29 lines
691 B
Bash
29 lines
691 B
Bash
#!/bin/bash
|
|
# Wazuh Docker Copyright (C) 2021 Wazuh Inc. (License GPLv2)
|
|
|
|
wazuh_url="${WAZUH_API_URL:-https://wazuh}"
|
|
wazuh_port="${API_PORT:-55000}"
|
|
api_username="${API_USERNAME:-wazuh-wui}"
|
|
api_password="${API_PASSWORD:-wazuh-wui}"
|
|
api_run_as="${RUN_AS:-false}"
|
|
|
|
dashboard_config_file="/usr/share/wazuh-dashboard/data/wazuh/config/wazuh.yml"
|
|
|
|
grep -q 1513629884013 $dashboard_config_file
|
|
_config_exists=$?
|
|
|
|
if [[ $_config_exists -ne 0 ]]; then
|
|
cat << EOF > $dashboard_config_file
|
|
hosts:
|
|
- 1513629884013:
|
|
url: $wazuh_url
|
|
port: $wazuh_port
|
|
username: $api_username
|
|
password: $api_password
|
|
run_as: $api_run_as
|
|
EOF
|
|
else
|
|
echo "Wazuh APP already configured"
|
|
fi
|
|
|