From 338fbf6f508a1378faafcfce45cacd8286c96597 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 31 May 2010 16:37:00 +0200 Subject: [PATCH] Fix users and groups creation in nscd %post script --- fedora/glibc.spec.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in index ee13633582..96624f2500 100644 --- a/fedora/glibc.spec.in +++ b/fedora/glibc.spec.in @@ -894,8 +894,10 @@ fi %postun utils -p /sbin/ldconfig %pre -n nscd -/usr/sbin/useradd -M -o -r -d / -s /sbin/nologin \ - -c "NSCD Daemon" -u 28 nscd > /dev/null 2>&1 || : +getent group nscd >/dev/null || /usr/sbin/groupadd -g 28 -r nscd +getent passwd nscd >/dev/null || + /usr/sbin/useradd -M -o -r -d / -s /sbin/nologin \ + -c "NSCD Daemon" -u 28 -g nscd nscd %post -n nscd /sbin/chkconfig --add nscd