0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-21 12:39:08 +01:00
mongodb/evergreen/selinux_test_setup.sh
Erwin Pe dbf3bd8432 SERVER-90234 Allow jsTestName() for SELinux tests (#22535)
GitOrigin-RevId: 2413ea8f3bec5aa5c87bb9879aefa803585d5d37
2024-05-30 21:15:11 +00:00

51 lines
1.4 KiB
Bash
Executable File

#!/bin/bash
# This script is loaded on the target machine, which is running tests
# Purpose: install mongod and shell from packages
set -o xtrace
set -o errexit
function apply_selinux_policy() {
echo "==== Applying SELinux policy now"
rm -rf mongodb-selinux
git clone https://github.com/mongodb/mongodb-selinux
cd mongodb-selinux
make
sudo make install
}
# on evergreen images /tmp is usually linked to /data/tmp, which interferes
# with selinux, as it does not recognize it as tmp_t domain
if [ -L /tmp ]; then
sudo --non-interactive rm /tmp
sudo --non-interactive mkdir /tmp
sudo --non-interactive systemctl start tmp.mount
fi
# selinux policy should work both when applied before and after install
# we will randomly apply it before or after installation is completed
SEORDER="$(($RANDOM % 2))"
if [ "$SEORDER" == "0" ]; then
apply_selinux_policy
fi
pkg="$(find "$HOME"/repo -name 'mongodb-*-server-*.x86_64.rpm' | tee /dev/stderr)"
if ! sudo --non-interactive rpm --install --verbose --verbose --hash --nodeps "$pkg"; then
if [ "$?" -gt "1" ]; then exit 1; fi # exit code 1 is OK
fi
if [ "$SEORDER" == "1" ]; then
apply_selinux_policy
fi
# install packages needed by check_has_tag.py
PYTHON=/opt/mongodbtoolchain/v4/bin/python3
if [[ (-f "$PYTHON" || -L "$PYTHON") && -x "$PYTHON" ]]; then
echo "==== Found python3 in $PYTHON"
$PYTHON -m pip install pyyaml
else
echo "==== Could not find $PYTHON; needed by SELinux tests"
exit 1
fi