#!/bin/bash # Author: Athmane Madjoudj # Rene Diepstraten t_Log "Running $0 - check if chkconfig can list a service status" if [ $centos_ver -ge 8 ]; then echo "CentOS $centos_ver does not use chkconfig, skipping" exit 0 fi # network is used as example because it's standard with minimal install chkconfig --list network | grep -q '3:on' t_CheckExitStatus $?