#!/bin/sh

set -e

if [ "$1" = "purge" ]
then
  rm -rf "${DPKG_ROOT:-}"/var/log/wtmp.db* "${DPKG_ROOT:-}"/var/lib/wtmpdb
fi


