Your IP : 216.73.216.170


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : //var/lib/dpkg/info/mlocate.postrm

#! /bin/sh

set -e

GROUP="mlocate"
VARDIR="/var/lib/mlocate"

if [ "$1" = "purge" ]; then
    if [ -d "$VARDIR" ]; then
	rm -f "$VARDIR/mlocate.db"
	rmdir --ignore-fail-on-non-empty "$VARDIR"
    fi

    dpkg-statoverride --remove /usr/bin/mlocate || test $? -eq 2

    if sg "$GROUP" true 2>/dev/null; then
	delgroup "$GROUP"
    fi
fi