Bug 224561

Summary: Error in pre uninstall script
Product: [Fedora] Fedora Reporter: Phil Knirsch <pknirsch>
Component: gnome-bluetoothAssignee: Bastien Nocera <bnocera>
Status: CLOSED RAWHIDE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: rawhideCC: rvokal
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: 2007-04-02 21:49:20 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:

Description Phil Knirsch 2007-01-26 14:35:27 UTC
During an automated install/deinstall check the following error has happened:

ERROR: Output running pre uninstall script for package
gnome-bluetooth-0:0.8.0-2.fc7.i386
gconfd-2: no process killed

Changing the pre uninstall script to redirect the output of the killall command
will fix this:

preuninstall scriptlet (using /bin/sh):
if [ "$1" -eq 0 ]; then
    export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
    gconftool-2 --makefile-uninstall-rule \
      /etc/gconf/schemas/gnome-obex-server.schemas > /dev/null || :
    killall -HUP gconfd-2 > /dev/null 2>&1 || :
fi

Comment 1 Matthias Clasen 2007-04-02 21:49:20 UTC
I've removed the no longer needed gconfd killing from the scripts now.