22931abc7c
and matches the default) and advise users to remove it otherwise. - Trim header
8 lines
214 B
Bash
8 lines
214 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
FILE="/var/games/sokoban"
|
|
|
|
if [ "$2" = "POST-DEINSTALL" -a -f "$FILE" ]; then
|
|
echo "===> If you are completely uninstalling sokoban you may also want to remove the scores files: $FILE"
|
|
fi
|