1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#!/bin/sh
# Nethack post-remove script for Debian
#
# Ben Gertzfield (che@debian.org) 29 July 1997
# Copyright 1997 Ben Gertzfield. This script is released under the
# GNU General Public License, version 2 or later.
# Updated 13 October 2003 to move the debhelper above the save-files
# purge (seems to be reading from stdin, seeing the "Purging" echo
# as a command)
# Updated 18 August 1998 to rm -rf the score/save directory on a purge,
# added debhelper comments
set -e
#DEBHELPER#
if [ "$1" = "purge" ]; then
echo -n "Purging high-scores and save-files for Nethack... "
rm -rf /var/games/nethack/
echo "done."
fi
|