Files
securityonion/salt/common/scripts/dockernet.sh
2020-02-05 11:39:37 -05:00

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