Bug 354531

Summary: script failure
Product: [Fedora] Fedora Reporter: Bill Nottingham <notting>
Component: bluez-utilsAssignee: David Woodhouse <dwmw2>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: low Docs Contact:
Priority: low    
Version: 8CC: bnocera, jorton, rvokal, sundaram
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-10-30 22:34:08 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:
Bug Depends On:    
Bug Blocks: 235703    

Description Bill Nottingham 2007-10-26 17:36:11 UTC
Description of problem:

  Updating  : bluez-utils                  ####################### [ 5/18] 
error: %post(bluez-utils-3.20-3.fc8.x86_64) scriptlet failed, exit status 1

Comment 1 Bastien Nocera 2007-10-26 19:51:03 UTC
Which bit is it failing? I don't see anything wrong with the scripts...

Comment 2 Bill Nottingham 2007-10-26 20:11:04 UTC
Not sure. If I force it now, it works. I suspect it's the condrestart stuff
(which should be in %postun and be "$1" -ge "1")

Comment 3 Jeremy Katz 2007-10-28 18:10:29 UTC
Yeah, you can definitely get an exit status of 1 there.  If the condrestart bits
aren't hit, then the exit status when the scriptlet exits will be 1.  So the
condrestart probably needs to be moved to %postun, have notting's fix and also
add an exit 0 to the end

Comment 4 Jeremy Katz 2007-10-28 19:57:19 UTC
Fixed to follow the scriptlet guidelines better (and merged the changes with the
devel/ branch)

Comment 5 Rahul Sundaram 2007-10-28 22:48:51 UTC
I don't get any scriptlet errors with the latest update. Can I close?

Comment 6 Joe Orton 2007-10-29 08:42:10 UTC
+if [ "$1" -ge "1" ]; then
+       /sbin/service bluetooth condrestart >/dev/null 2>&1
+       /sbin/service dund condrestart >/dev/null 2>&1
+       /sbin/service pand condrestart >/dev/null 2>&1
 fi

this runs the condrestarts on install ($1 == 1) as well as upgrade, which
doesn't seem necessary (though harmless).

Comment 7 Will Woods 2007-10-30 22:34:08 UTC
Yep, can't reproduce anymore.