mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 09:42:46 +01:00
Initial RHEL support
This commit is contained in:
21
salt/strelka/tools/sbin_jinja/so-yara-download
Normal file
21
salt/strelka/tools/sbin_jinja/so-yara-download
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
NOROOT=1
|
||||||
|
. /usr/sbin/so-common
|
||||||
|
|
||||||
|
{%- set proxy = salt['pillar.get']('manager:proxy') %}
|
||||||
|
|
||||||
|
# Download the rules from the internet
|
||||||
|
{%- if proxy %}
|
||||||
|
export http_proxy={{ proxy }}
|
||||||
|
export https_proxy={{ proxy }}
|
||||||
|
export no_proxy= salt['pillar.get']('manager:no_proxy')
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
|
mkdir -p /tmp/yara
|
||||||
|
cd /tmp/yara
|
||||||
|
git clone https://github.com/Security-Onion-Solutions/securityonion-yara.git
|
||||||
|
mkdir -p /nsm/rules/yara
|
||||||
|
rsync -shav --progress /tmp/yara/securityonion-yara/yara /nsm/rules/
|
||||||
|
cd /tmp
|
||||||
|
rm -rf /tmp/yara
|
||||||
|
|
||||||
@@ -955,6 +955,11 @@ detect_os() {
|
|||||||
OSVER=9
|
OSVER=9
|
||||||
is_centos=true
|
is_centos=true
|
||||||
is_rpm=true
|
is_rpm=true
|
||||||
|
elif grep -q "Red Hat Enterprise Linux release 9" /etc/redhat-release; then
|
||||||
|
OS=rhel
|
||||||
|
OSVER=9
|
||||||
|
is_rhel=true
|
||||||
|
is_rpm=true
|
||||||
fi
|
fi
|
||||||
elif [ -f /etc/os-release ]; then
|
elif [ -f /etc/os-release ]; then
|
||||||
OS=ubuntu
|
OS=ubuntu
|
||||||
@@ -1926,7 +1931,7 @@ remove_package() {
|
|||||||
|
|
||||||
securityonion_repo() {
|
securityonion_repo() {
|
||||||
# Remove all the current repos
|
# Remove all the current repos
|
||||||
if [[ $is_rocky ]]; then
|
if [[ $is_rpm ]]; then
|
||||||
logCmd "dnf -v clean all"
|
logCmd "dnf -v clean all"
|
||||||
logCmd "mkdir -vp /root/oldrepos"
|
logCmd "mkdir -vp /root/oldrepos"
|
||||||
logCmd "mv -v /etc/yum.repos.d/* /root/oldrepos/"
|
logCmd "mv -v /etc/yum.repos.d/* /root/oldrepos/"
|
||||||
@@ -1960,6 +1965,10 @@ securityonion_repo() {
|
|||||||
logCmd "mv -bvf /etc/yum.repos.d/centos* /root/oldrepos/"
|
logCmd "mv -bvf /etc/yum.repos.d/centos* /root/oldrepos/"
|
||||||
logCmd "dnf repolist all"
|
logCmd "dnf repolist all"
|
||||||
fi
|
fi
|
||||||
|
if [ -f "/etc/yum.repos.d/redhat.repo" ]; then
|
||||||
|
info "Backing up the .repo files that were added by the redhat-release package."
|
||||||
|
logCmd "mv -bvf /etc/yum.repos.d/redhat* /root/oldrepos/"
|
||||||
|
logCmd "dnf repolist all"
|
||||||
if [[ $waitforstate ]]; then
|
if [[ $waitforstate ]]; then
|
||||||
if [[ ! $is_airgap ]]; then
|
if [[ ! $is_airgap ]]; then
|
||||||
# Build the repo locally so we can use it
|
# Build the repo locally so we can use it
|
||||||
@@ -1979,9 +1988,12 @@ repo_sync_local() {
|
|||||||
if [[ $is_rocky ]]; then
|
if [[ $is_rocky ]]; then
|
||||||
echo "https://repo.securityonion.net/file/so-repo/prod/2.4/rocky/9" > /opt/so/conf/reposync/mirror.txt
|
echo "https://repo.securityonion.net/file/so-repo/prod/2.4/rocky/9" > /opt/so/conf/reposync/mirror.txt
|
||||||
echo "https://so-repo-east.s3.us-east-005.backblazeb2.com/prod/2.4/rocky/9" >> /opt/so/conf/reposync/mirror.txt
|
echo "https://so-repo-east.s3.us-east-005.backblazeb2.com/prod/2.4/rocky/9" >> /opt/so/conf/reposync/mirror.txt
|
||||||
else
|
elif [[ $is_centos ]]; then
|
||||||
echo "https://repo.securityonion.net/file/so-repo/prod/2.4/centos/9" > /opt/so/conf/reposync/mirror.txt
|
echo "https://repo.securityonion.net/file/so-repo/prod/2.4/centos/9" > /opt/so/conf/reposync/mirror.txt
|
||||||
echo "https://so-repo-east.s3.us-east-005.backblazeb2.com/prod/2.4/centos/9" >> /opt/so/conf/reposync/mirror.txt
|
echo "https://so-repo-east.s3.us-east-005.backblazeb2.com/prod/2.4/centos/9" >> /opt/so/conf/reposync/mirror.txt
|
||||||
|
elif [[ $is_rhel ]]; then
|
||||||
|
echo "https://repo.securityonion.net/file/so-repo/prod/2.4/rhel/9" > /opt/so/conf/reposync/mirror.txt
|
||||||
|
echo "https://so-repo-east.s3.us-east-005.backblazeb2.com/prod/2.4/rhel/9" >> /opt/so/conf/reposync/mirror.txt
|
||||||
fi
|
fi
|
||||||
echo "[main]" > /opt/so/conf/reposync/repodownload.conf
|
echo "[main]" > /opt/so/conf/reposync/repodownload.conf
|
||||||
echo "gpgcheck=1" >> /opt/so/conf/reposync/repodownload.conf
|
echo "gpgcheck=1" >> /opt/so/conf/reposync/repodownload.conf
|
||||||
@@ -2389,13 +2401,21 @@ update_sudoers_for_testing() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
update_packages() {
|
update_packages() {
|
||||||
if [[ $is_rocky ]]; then
|
if [[ $is_rpm ]]; then
|
||||||
logCmd "dnf repolist"
|
logCmd "dnf repolist"
|
||||||
logCmd "dnf -y update --allowerasing --exclude=salt*,docker*,containerd*"
|
logCmd "dnf -y update --allowerasing --exclude=salt*,docker*,containerd*"
|
||||||
if [[ $is_rocky ]]; then
|
if [[ $is_rocky ]]; then
|
||||||
RMREPOFILES=("rocky-addons.repo" "rocky-devel.repo" "rocky-extras.repo" "rocky.repo")
|
RMREPOFILES=("rocky-addons.repo" "rocky-devel.repo" "rocky-extras.repo" "rocky.repo")
|
||||||
info "Removing repo files added by rocky-repos package update"
|
info "Removing repo files added by rocky-repos package update"
|
||||||
fi
|
fi
|
||||||
|
if [[ $is_centos ]]; then
|
||||||
|
RMREPOFILES=("centos-addons.repo" "centos-devel.repo" "centos-extras.repo" "centos.repo")
|
||||||
|
info "Removing repo files added by centos-repos package update"
|
||||||
|
fi
|
||||||
|
if [[ $is_rhel ]]; then
|
||||||
|
RMREPOFILES=("redhat-addons.repo" "redhat-devel.repo" "redhat-extras.repo" "redhat.repo")
|
||||||
|
info "Removing repo files added by redhat-repos package update"
|
||||||
|
fi
|
||||||
for FILE in ${RMREPOFILES[@]}; do
|
for FILE in ${RMREPOFILES[@]}; do
|
||||||
logCmd "rm -f /etc/yum.repos.d/$FILE"
|
logCmd "rm -f /etc/yum.repos.d/$FILE"
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user