From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040312 Description of problem: When the udev RPM is uninstalled, an error message is displayed. It looks like a bug in the uninstall scripts: /var/tmp/rpm-tmp.64958: line 1: [: missing `]' Version-Release number of selected component (if applicable): udev-023-1 How reproducible: Always Steps to Reproduce: 1. Uninstall udev Actual Results: Uninstall script encounters an error Expected Results: Uninstall script should work without an error message being displayed Additional info:
For what it is worth, it is a space in the preuninstall scriptlet: if [ $1 = 0 -a -f /etc/rc.d/init.d/udev];then should be: if [ $1 = 0 -a -f /etc/rc.d/init.d/udev ];then
fixed