Bug 160643

Summary: pcap user is not added while installing tcpdump/arpwatch
Product: [Fedora] Fedora Reporter: Kirill Kolyshkin <kolyshkin>
Component: tcpdumpAssignee: Martin Stransky <stransky>
Status: CLOSED RAWHIDE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 4   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2005-06-21 09:22:45 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
patch to tcpdump.spec adding prereq: /usr/sbin/{user,group}add to tcpdump and arpwatch none

Description Kirill Kolyshkin 2005-06-16 09:24:58 UTC
Description of problem:

tcpdump and arpwatch tries to create user and group 'pcap' with UID/GID of 77 in
preinstall script, using /usr/sbin/useradd and /usr/sbin/groupadd.

In some situations it fails because useradd/groupadd binaries (from shadow-utils
rpm) is not yet installed. Proper fix would be to add
Prereq: /usr/sbin/useradd /usr/sbin/groupadd
to appropriate places of tcpdump.spec

Version-Release number of selected component (if applicable):
tcpdump-3.8.2-12


How reproducible:
Use yum to install tcpdump in a clean chroot environment. Say,

mkdir chrooted
yum --installroot chrooted tcpdump

Yum will pick up all dependencies correctly (including shadow-utils which is
required by some other rpm) and install everything. The problem is installation
order is not correct and tcpdump gets installed before shadow-utils.

I have checked that adding prereq for useradd and groupadd fixes the problem.
Patch to tcpdump.spec is attached.

Comment 1 Kirill Kolyshkin 2005-06-16 09:24:58 UTC
Created attachment 115528 [details]
patch to tcpdump.spec adding prereq: /usr/sbin/{user,group}add to tcpdump and arpwatch