Details
Description
Here is what hadoop-hbase tries to do when being uninstalled:
%preun if [ "$1" = 0 ]; then # Stop any services that might be running for service in %{hbase_services} do service hadoop-hbase-$service stop || /bin/true done fi
But the relevant subpackages already take care of that:
%preun %1 \ if [ "$1" = 0 ] ; then \ service %{name}-%1 stop > /dev/null \ chkconfig --del %{name}-%1 \ fi
Note: It may be a duplicate. Just creating a ticket in case