#!/bin/sh # Author: Athmane Madjoudj t_Log "Running $0 - passwd file sanity check." if [ "$centos_ver" -ge 8 ] ;then nobody_grpid="65534" else nobody_grpid="99" fi grep -q 'root:x:0' /etc/passwd && \ grep -q "nobody:x:${nobody_grpid}" /etc/passwd t_CheckExitStatus $?