mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
Utility Module - Fix the search for eval
This commit is contained in:
@@ -19,10 +19,10 @@ base:
|
|||||||
- elasticsearch
|
- elasticsearch
|
||||||
- logstash
|
- logstash
|
||||||
- kibana
|
- kibana
|
||||||
- utility
|
|
||||||
- pcap
|
- pcap
|
||||||
- suricata
|
- suricata
|
||||||
- bro
|
- bro
|
||||||
|
- utility
|
||||||
|
|
||||||
|
|
||||||
'G@role:so-master':
|
'G@role:so-master':
|
||||||
|
|||||||
30
salt/utility/bin/eval.sh
Normal file
30
salt/utility/bin/eval.sh
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
{%- set ES = salt['pillar.get']('master:mainip', '') -%}
|
||||||
|
{%- set MASTER = grains['master'] %}
|
||||||
|
# Wait for ElasticSearch to come up, so that we can query for version infromation
|
||||||
|
echo -n "Waiting for ElasticSearch..."
|
||||||
|
COUNT=0
|
||||||
|
ELASTICSEARCH_CONNECTED="no"
|
||||||
|
while [[ "$COUNT" -le 30 ]]; do
|
||||||
|
curl --output /dev/null --silent --head --fail http://{{ ES }}:9200
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
ELASTICSEARCH_CONNECTED="yes"
|
||||||
|
echo "connected!"
|
||||||
|
break
|
||||||
|
else
|
||||||
|
((COUNT+=1))
|
||||||
|
sleep 1
|
||||||
|
echo -n "."
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
if [ "$ELASTICSEARCH_CONNECTED" == "no" ]; then
|
||||||
|
echo
|
||||||
|
echo -e "Connection attempt timed out. Unable to connect to ElasticSearch. \nPlease try: \n -checking log(s) in /var/log/elasticsearch/\n -running 'sudo docker ps' \n -running 'sudo so-elastic-restart'"
|
||||||
|
echo
|
||||||
|
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Applying cross cluster search config..."
|
||||||
|
curl -s -XPUT http://{{ ES }}:9200/_cluster/settings \
|
||||||
|
-H 'Content-Type: application/json' \
|
||||||
|
-d "{\"persistent\": {\"search\": {\"remote\": {\"{{ MASTER }}\": {\"seeds\": [\"127.0.0.1:9300\"]}}}}}"
|
||||||
@@ -11,3 +11,11 @@ crossclusterson:
|
|||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if grains['role'] == 'so-eval' %}
|
||||||
|
fixsearch:
|
||||||
|
cmd.script:
|
||||||
|
- shell: /bin/bash
|
||||||
|
- runas: socore
|
||||||
|
- source: salt://utility/bin/eval.sh
|
||||||
|
- template: jinja
|
||||||
|
{% endif %}
|
||||||
|
|||||||
Reference in New Issue
Block a user