#!/bin/sh


RM_PATH=/i-data/.system/zy-pkgs/tmp/AuroraSyncBackup.err_msg
UPGRADE_FILE=/tmp/PKGUPGRADE.AuroraSyncBackup

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

