浏览代码

AMBARI-7310. Error message on ambari-server removal.(vbrodetskyi)

Vitaly Brodetskyi 11 年之前
父节点
当前提交
e3dba26347
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      ambari-agent/src/main/package/rpm/preremove.sh
  2. 1 1
      ambari-server/src/main/package/rpm/preremove.sh

+ 1 - 1
ambari-agent/src/main/package/rpm/preremove.sh

@@ -29,7 +29,7 @@ if [ "$1" -eq 0 ]; then  # Action is uninstall
       /var/lib/ambari-agent/install-helper.sh remove
     fi
 
-    chkconfig --del ambari-agent
+    chkconfig --list | grep ambari-server && chkconfig --del ambari-server
 fi
 
 exit 0

+ 1 - 1
ambari-server/src/main/package/rpm/preremove.sh

@@ -34,7 +34,7 @@ if [ "$1" -eq 0 ]; then  # Action is uninstall
       /var/lib/ambari-server/install-helper.sh remove
     fi
 
-    chkconfig --del ambari-server
+    chkconfig --list | grep ambari-server && chkconfig --del ambari-server
 fi
 
 exit 0