summaryrefslogtreecommitdiff
path: root/games/tomenet/tomenet.sh
diff options
context:
space:
mode:
Diffstat (limited to 'games/tomenet/tomenet.sh')
-rw-r--r--games/tomenet/tomenet.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/games/tomenet/tomenet.sh b/games/tomenet/tomenet.sh
deleted file mode 100644
index 464bb88517..0000000000
--- a/games/tomenet/tomenet.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-GAMES_TOMENET=/usr/share/games/tomenet
-
-if [ ! -e ${HOME}/.tomenet ]; then
- mkdir -p ${HOME}/.tomenet
-
- # Make a copy of the lib directory for the user
- cp -R ${GAMES_TOMENET}/lib ${HOME}/.tomenet/
-
- # Server configuration files
- cp ${GAMES_TOMENET}/tomenet.cfg ${GAMES_TOMENET}/forbidlist ${HOME}/.tomenet/
-
- # Create an account file
- touch ${HOME}/.tomenet/tomenet.acc
-
- # Create links for running the server in ${HOME}/.tomenet
- ln -s ${GAMES_TOMENET}/tomenet.server ${HOME}/.tomenet/tomenet.server
- ln -s ${GAMES_TOMENET}/evilmeta ${HOME}/.tomenet/evilmeta
-fi
-
-cd ${HOME}/.tomenet
-
-# Point $TOMENET_PATH to the local lib directory
-export TOMENET_PATH=${HOME}/.tomenet/lib
-
-case $(basename $0) in
- tomenet)
- exec ${GAMES_TOMENET}/tomenet "$@"
- ;;
- tomnet.console)
- exec ${GAMES_TOMENET}/tomenet.console "$@"
- ;;
- tomenet.server)
- exec ${GAMES_TOMENET}/tomenet.server "$@"
- ;;
- accedit)
- exec ${GAMES_TOMENET}/accedit "$@"
- ;;
- evilmeta)
- exec ${GAMES_TOMENET}/evilmeta "$@"
- ;;
- esac \ No newline at end of file