| #!/bin/bash |
| |
| |
| |
| t_Log "Running $0 - Checking if systemctl can check if a service is enabled" |
| [ ${centos_ver} -lt 7 ] && { t_Log "Systemd is part of el since el7, skipping systemd tests..." ; exit ; } |
| |
| |
| |
| systemctl is-enabled auditd.service > /dev/null |
| |
| t_CheckExitStatus $? |