1#!/bin/sh -e
2
3rm -f /var/lib/games/xjump/record
4
5case "$1" in
6 remove)
7   rm -f /var/games/xjump/record
8 ;;
9esac
10