Fix group detection on el5.

This commit is contained in:
Michael Friedrich 2013-10-07 17:25:30 +02:00
parent bed3cecd3a
commit 02f7170298
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ AC_DEFUN([ACICINGA_CHECK_GROUP],[
x=$1
y=$2
AC_MSG_CHECKING([if $y group $x exists])
AS_IF([ $GREP -q "^$x:" /etc/group ],
AS_IF([ id -g $x ],
[ AC_MSG_RESULT([found]) ],
[ AC_MSG_ERROR([not found]) ])
])