#!/bin/sh
#----------------------------------------------------------------------------
# /var/install/deinstall/python2-python-mimeparse - deinstall script
#
# Creation   :  2018-12-11 holbru
# Last update:  $Id$
#
# Copyright (c) 2018-@@YEAR@@ Holger Bruenjes, holgerbruenjes(at)gmx(dot)net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#----------------------------------------------------------------------------

# set package name
package_name=python2-python-mimeparse

# set filelist
filelist=/etc/filelist.d/${package_name}-files.txt

# check for update is given
if [ "${1}" = "--update" ]
then
    update=true
fi
# ---------------------------------------------------------------------------
# remove program files
# ---------------------------------------------------------------------------
while read id perm user group package file
do
    case ${id} in
    b|u|s|h)
        # remove program files
        if [ "${file}" != "tmp/install.sh"    \
          -a "${file}" != "tmp/preinstall.sh" ]
        then
            rm -f /${file}
        fi
        ;;
    f)
        # remove directories
        rmdir --ignore-fail-on-non-empty /${file} 2>/dev/null
        ;;
    esac
done < ${filelist}

exit 0
# ---------------------------------------------------------------------------
# end
# ---------------------------------------------------------------------------