删除软件包时 PREUN 脚本中出现 yum 错误

删除软件包时 PREUN 脚本中出现 yum 错误

尝试卸载zarafa邮件服务器。

我用来yum list installed查看已安装的软件包。

之后我用yum erase zarafa*

它拾起所有包裹但返回:

Error in PREUN scriptlet in rpm package zarafa-dagent
Error in PREUN scriptlet in rpm package zarafa-gateway
Error in PREUN scriptlet in rpm package zarafa-monitor
Error in PREUN scriptlet in rpm package zarafa-server
Error in PREUN scriptlet in rpm package zarafa-spooler
Error in PREUN scriptlet in rpm package zarafa-ical
zarafa-ical-7.1.9-1.el6.i686 was supposed to be removed but is not!
  Verifying  : zarafa-ical-7.1.9-1.el6.i686                                                                                                                                                1/6 
zarafa-spooler-7.1.9-1.el6.i686 was supposed to be removed but is not!
  Verifying  : zarafa-spooler-7.1.9-1.el6.i686                                                                                                                                             2/6 
zarafa-server-7.1.9-1.el6.i686 was supposed to be removed but is not!
  Verifying  : zarafa-server-7.1.9-1.el6.i686                                                                                                                                              3/6 
zarafa-monitor-7.1.9-1.el6.i686 was supposed to be removed but is not!
  Verifying  : zarafa-monitor-7.1.9-1.el6.i686                                                                                                                                             4/6 
zarafa-gateway-7.1.9-1.el6.i686 was supposed to be removed but is not!
  Verifying  : zarafa-gateway-7.1.9-1.el6.i686                                                                                                                                             5/6 
zarafa-dagent-7.1.9-1.el6.i686 was supposed to be removed but is not!
  Verifying  : zarafa-dagent-7.1.9-1.el6.i686                                                                                                                                              6/6 

Failed:
  zarafa-dagent.i686 0:7.1.9-1.el6      zarafa-gateway.i686 0:7.1.9-1.el6     zarafa-ical.i686 0:7.1.9-1.el6     zarafa-monitor.i686 0:7.1.9-1.el6     zarafa-server.i686 0:7.1.9-1.el6    
  zarafa-spooler.i686 0:7.1.9-1.el6  

答案1

我猜想可能是 yum 缓存数据和 rpm 数据库不同步了。尝试运行以下命令:

su -c 'yum clean all && rpm --rebuilddb'
su -c 'package-cleanup --problems'

然后运行:

su -c 'yum erase zarafa*'

编辑#1:尝试运行下一个命令:

# su -c 'yum --setopt=tsflags=noscripts remove zarafa*'

如果这不起作用,请尝试这个:

# su -c 'rpm -e --noscripts zarafa*'

答案2

我查看了rpm -ql <packagename>包裹的原始内容。

手动删除任何剩余的文件。

按照上面所述使用 noscripts 标志运行 yum,因此脚本不会失败。

yum --setopt=tsflags=noscripts remove <packagename>

相关内容