#!/bin/sh

RM_PATH=/usr/local/zy-pkgs/tmp/myZyXELcloud-Agent.err_msg

if [ -e $RM_PATH ];then
	check_disable_error=$(cat ${RM_PATH}| grep "Cannot disable this package")
	if [ -n "$check_disable_error" ];then
		rm $RM_PATH
	fi
fi
