File: slashem-common.postrm

package info (click to toggle)
slashem 0.0.7E7F3-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 23,552 kB
  • ctags: 22,410
  • sloc: ansic: 263,188; cpp: 7,180; yacc: 2,154; sh: 738; lex: 440; makefile: 154; awk: 97; sed: 11
file content (21 lines) | stat: -rw-r--r-- 442 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

# post-remove script for Debian Slash'EM
#
# Peter Makholm (peter@makholm.net) 14. Marts 1999
# This script is released under GPLv2 or later
#

set -e

# Source debconf library to make debconf work.
[ -e /usr/share/debconf/confmodule ] && . /usr/share/debconf/confmodule

if [ "$1" = "purge" ]; then
    echo -n "Purging high-scores and save-files for Slash'EM... "
    rm -rf /var/games/slashem/
    echo "done."
fi

#DEBHELPER#