mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-02-20 06:05:01 +01:00
14 lines
282 B
Bash
14 lines
282 B
Bash
#!/bin/bash
|
|
|
|
VERSION=1.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
|
|
rm $TARBALL
|
|
else
|
|
exit
|
|
fi
|