#!/bin/sh

#     DESCRIPTION
#
# Remove desktop file.


#     REQUIRES
#
# Nothing


#     INFO
#

NAME="init5-rm-flash-eula"

verbose()
{
    if [ -n "$GLOBAL_VERBOSE" ]; then
        echo "HOOK: $NAME: $@"
    fi
}

verbose "has started"

rm -rf /usr/share/applications/adobe_flash_player_eula.desktop

verbose "finished"
