Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ci/provisioning/post_provision_config_common_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,12 @@ post_provision_config_nodes() {
dnf -y erase fuse3\*
fi

# maldet might bring additional load on CPU during tests
if command -v maldet &>/dev/null; then
systemctl stop maldet 2>/dev/null || true
systemctl disable maldet 2>/dev/null || true
fi

if [ -n "$CONFIG_POWER_ONLY" ]; then
rm -f "$REPOS_DIR"/*_job_daos-stack_job_*_job_*.repo
time dnf -y erase fio fuse ior-hpc mpich-autoload \
Expand Down
Loading