#!/bin/bash -x # Author: Rene Diepstraten # 28.03.2024 Pavel Negrobov -- skip для MSVSphere ОС # https://inferitos.asproagile.ru/_module/agile/view/issue/1285 t_Log "Running $0 - skip for MSVSphere. Please see https://inferitos.asproagile.ru/_module/agile/view/issue/1285" exit 0 [ ${centos_ver} -lt 7 ] && exit t_Log "Running $0 - checking if systemctl can check a service status" if [ "$CONTAINERTEST" -eq "1" ]; then t_Log "Running in container -> SKIP" exit 0 fi systemctl is-active auditd.service > /dev/null t_CheckExitStatus $?