mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-08 18:22:47 +01:00
13 lines
266 B
Bash
13 lines
266 B
Bash
#!/bin/bash
|
|
|
|
VERSION=HH1.1.4
|
|
TARBALL=/nsm/docker-registry/docker/so-dockers-$VERSION.tar
|
|
|
|
# See if the tarball is there. If so do soemthing otherwise peace out.
|
|
if [ -f "$TARBALL" ]; then
|
|
cd /nsm/docker-registry/docker
|
|
tar xvf so-dockers-$VERSION.tar
|
|
fi
|
|
|
|
exit 0
|