From 55b26e739146ce03428f9996f69919616f414ebe Mon Sep 17 00:00:00 2001 From: David Lutterkort Date: Mon, 15 Dec 2008 11:23:57 +0000 Subject: Use fixed uid/gid pair across all active branches --- puppet.spec | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/puppet.spec b/puppet.spec index e098823..718df95 100644 --- a/puppet.spec +++ b/puppet.spec @@ -145,10 +145,12 @@ touch %{buildroot}%{_sysconfdir}/puppet/puppetd.conf %doc %{_mandir}/man8/puppetmasterd.8.gz %doc %{_mandir}/man8/puppetrun.8.gz +# Fixed uid/gid were assigned in bz 472073 (Fedora), 471918 (RHEL-5), +# and 471919 (RHEL-4) %pre -getent group puppet >/dev/null || groupadd -r puppet +getent group puppet >/dev/null || groupadd -r puppet -g 52 getent passwd puppet >/dev/null || \ -useradd -r -g puppet -d %{_localstatedir}/lib/puppet -s /sbin/nologin \ +useradd -r -u 52 -g puppet -d %{_localstatedir}/lib/puppet -s /sbin/nologin \ -c "Puppet" puppet || : # ensure that old setups have the right puppet home dir if [ $1 -gt 1 ] ; then -- cgit