mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
57 lines
1.7 KiB
Plaintext
57 lines
1.7 KiB
Plaintext
# Copyright Security Onion Solutions LLC and/or licensed to Security Onion Solutions LLC under one
|
|
# or more contributor license agreements. Licensed under the Elastic License 2.0 as shown at
|
|
# https://securityonion.net/license; you may not use this file except in compliance with the
|
|
# Elastic License 2.0.
|
|
|
|
# We do not import GLOBALS in this state because it is called during setup
|
|
|
|
down_original_mgmt_interface:
|
|
cmd.run:
|
|
- name: "nmcli con down {{ pillar.host.mainint }}"
|
|
- unless:
|
|
- nmcli -f GENERAL.CONNECTION dev show {{ pillar.host.mainint }} | grep bridge-slave-{{ pillar.host.mainint }}
|
|
- order: last
|
|
|
|
wait_for_br0_ip:
|
|
cmd.run:
|
|
- name: |
|
|
counter=0
|
|
until ip addr show br0 | grep -q "inet "; do
|
|
sleep 1
|
|
counter=$((counter+1))
|
|
if [ $counter -ge 90 ]; then
|
|
echo "Timeout waiting for br0 to get an IP address"
|
|
exit 1
|
|
fi
|
|
done
|
|
echo "br0 has IP address: $(ip addr show br0 | grep 'inet ' | awk '{print $2}')"
|
|
- timeout: 95
|
|
- onchanges:
|
|
- cmd: down_original_mgmt_interface
|
|
|
|
{% if grains.role == 'so-hypervisor' %}
|
|
|
|
update_mine_functions:
|
|
file.managed:
|
|
- name: /etc/salt/minion.d/mine_functions.conf
|
|
- contents: |
|
|
mine_interval: 25
|
|
mine_functions:
|
|
network.ip_addrs:
|
|
- interface: br0
|
|
{%- if role in ['so-eval','so-import','so-manager','so-managerhype','so-managersearch','so-standalone'] %}
|
|
x509.get_pem_entries:
|
|
- glob_path: '/etc/pki/ca.crt'
|
|
{% endif %}
|
|
- onchanges:
|
|
- cmd: wait_for_br0_ip
|
|
|
|
restart_salt_minion_service:
|
|
service.running:
|
|
- name: salt-minion
|
|
- enable: True
|
|
- listen:
|
|
- file: update_mine_functions
|
|
|
|
{% endif %}
|