mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
9 lines
169 B
Bash
Executable File
9 lines
169 B
Bash
Executable File
#!/bin/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
|