#!/bin/sh
set -e

if [ "$1" = "purge" ];then
    if [ "mips64" = `uname -m` ] || [ "mips32" = `uname -m` ] || [ "mips" = `uname -m` ];then
        [ -e /etc/xdg/autostart/dde-launcher.desktop ] && rm -f /etc/xdg/autostart/dde-launcher.desktop || true
    fi
fi

#DEBHELPER#
exit 0
