mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
9 lines
184 B
Bash
9 lines
184 B
Bash
#!/bin/#!/usr/bin/env bash
|
|
|
|
if [ ! -f /opt/so/state/dockernet.state ]; then
|
|
docker network create -d bridge so-elastic-net
|
|
touch /opt/so/state/dockernet.state
|
|
else
|
|
exit
|
|
fi
|