bstinson / centos / t_functional

Forked from centos/t_functional 3 years ago
Clone

Blame tests/p_systemd/10-systemctl_list_services.sh

Rene Diepstraten 8c0afd
#!/bin/bash
Rene Diepstraten 8c0afd
# Author: Athmane Madjoudj <athmanem@gmail.com>
Rene Diepstraten 8c0afd
#         Rene Diepstraten <rene@renediepstraten.nl>
Rene Diepstraten 8c0afd
Rene Diepstraten 8c0afd
t_Log "Running $0 - Checking if systemctl can check if a service is enabled"
Rene Diepstraten 8c0afd
[ ${centos_ver} -lt 7 ] && { t_Log "Systemd is part of el since el7, skipping systemd tests..." ; exit ; }
Rene Diepstraten 8c0afd
Rene Diepstraten 8c0afd
# auditd is used as example because it's standard with minimal install
Rene Diepstraten 8c0afd
Rene Diepstraten 8c0afd
systemctl is-enabled auditd.service > /dev/null
Rene Diepstraten 8c0afd
Rene Diepstraten 8c0afd
t_CheckExitStatus $?