mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 09:42:46 +01:00
56 lines
1.4 KiB
Bash
Executable File
56 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright Security Onion Solutions LLC and/or licensed to Security Onion Solutions LLC under one
|
|
# or more contributor license agreements. Licensed under the Elastic License 2.0 as shown at
|
|
# https://securityonion.net/license; you may not use this file except in compliance with the
|
|
# Elastic License 2.0.
|
|
|
|
|
|
default_salt_dir=/opt/so/saltstack/default
|
|
clone_to_tmp() {
|
|
|
|
# TODO Need to add a air gap option
|
|
# Make a temp location for the files
|
|
mkdir /tmp/sogh
|
|
cd /tmp/sogh
|
|
#git clone -b dev https://github.com/Security-Onion-Solutions/securityonion.git
|
|
git clone https://github.com/Security-Onion-Solutions/securityonion.git
|
|
cd /tmp
|
|
|
|
}
|
|
|
|
copy_new_files() {
|
|
|
|
# Copy new files over to the salt dir
|
|
cd /tmp/sogh/securityonion
|
|
git checkout $BRANCH
|
|
VERSION=$(cat VERSION)
|
|
# We need to overwrite if there is a repo file
|
|
if [ -d /opt/so/repo ]; then
|
|
tar -czf /opt/so/repo/"$VERSION".tar.gz -C "$(pwd)/.." .
|
|
fi
|
|
rsync -a salt $default_salt_dir/
|
|
rsync -a pillar $default_salt_dir/
|
|
chown -R socore:socore $default_salt_dir/salt
|
|
chown -R socore:socore $default_salt_dir/pillar
|
|
chmod 755 $default_salt_dir/pillar/firewall/addfirewall.sh
|
|
|
|
rm -rf /tmp/sogh
|
|
}
|
|
|
|
got_root(){
|
|
if [ "$(id -u)" -ne 0 ]; then
|
|
echo "This script must be run using sudo!"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
got_root
|
|
if [ $# -ne 1 ] ; then
|
|
BRANCH=2.4/main
|
|
else
|
|
BRANCH=$1
|
|
fi
|
|
clone_to_tmp
|
|
copy_new_files
|