mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-09 10:42:54 +01:00
19 lines
786 B
Bash
19 lines
786 B
Bash
#!/bin/bash
|
|
# {%- set FLEET_MANAGER = salt['pillar.get']('global:fleet_manager', False) -%}
|
|
# {%- set FLEET_NODE = salt['pillar.get']('global:fleet_node', False) -%}
|
|
# {%- set MANAGER = salt['pillar.get']('global:url_base', '') %}
|
|
|
|
# Copy template file
|
|
cp /opt/so/conf/kibana/saved_objects.ndjson.template /opt/so/conf/kibana/saved_objects.ndjson
|
|
|
|
# {% if FLEET_NODE or FLEET_MANAGER %}
|
|
# Fleet IP
|
|
#sed -i "s/FLEETPLACEHOLDER/{{ MANAGER }}/g" /opt/so/conf/kibana/saved_objects.ndjson
|
|
# {% endif %}
|
|
|
|
# SOCtopus and Manager
|
|
sed -i "s/PLACEHOLDER/{{ MANAGER }}/g" /opt/so/conf/kibana/saved_objects.ndjson
|
|
|
|
# Load saved objects
|
|
curl -X POST "localhost:5601/api/saved_objects/_import?overwrite=true" -H "kbn-xsrf: true" --form file=@/opt/so/conf/kibana/saved_objects.ndjson > /dev/null 2>&1
|