aboutsummaryrefslogtreecommitdiff
path: root/games/armagetronad/README
diff options
context:
space:
mode:
authorHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:07:31 +0200
committerHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:07:31 +0200
commit684b60112ba8b5340817ccd842558dedb1b5c266 (patch)
treee029b81db41b3be803673a1a600b4a1f278ecfb7 /games/armagetronad/README
parenta1ad0b9a01be72a555c68de0463d810542dcdbe3 (diff)
games/armagetronad: Removed from 13.0 repository
Diffstat (limited to 'games/armagetronad/README')
-rw-r--r--games/armagetronad/README44
1 files changed, 0 insertions, 44 deletions
diff --git a/games/armagetronad/README b/games/armagetronad/README
deleted file mode 100644
index 243d68d7f3c3..000000000000
--- a/games/armagetronad/README
+++ /dev/null
@@ -1,44 +0,0 @@
-armagetronad (a Tron clone in 3D)
-
-A Tron 'Light Cycles' clone that offers up to 16 players, a highly
-advanced AI, and network/internet play in a full 3D environment
-
-This build includes the game client and Master server. It will install
-system-wide configuration into /etc/armagetron.
-
-Full documentation exists in /usr/doc/armagetronad-<version>/
-
-The armagetronad server initscript is stored as:
-/usr/share/games/armagetronad/scripts/rcd_master
-To use this script, symlink it to /etc/rc.d with this command:
-ln -s /usr/share/games/armagetronad/scripts/rcd_master /etc/rc.d/rc.armagetronad
-
-The armagetronad server system-wide install scripts enable the creation
-of a user called 'armagetronad' for use with the Master server. This
-user isn't created by default by this package. If you would like to
-create this user in the same fashion as the armagetronad system-wide
-install script, the user creation section is shown below. You may
-choose to use this by creating a script with the contents below or
-create a user manually.
-
-
-user=armagetronad
-
-if test -w /etc/passwd; then
- echo "Creating user ${user}..."
-
- if which useradd > /dev/null 2>&1; then
- useradd ${user} || echo -e "\nWarning: unable to create user with 'useradd'. Giving up.\n"
- else
-
- if which pw > /dev/null 2>&1; then
- pw useradd ${user} || echo "Warning: unable to create user with 'pw'. Giving up."
- else
- echo -e "\nWarning: unable to find suitable program to add user.\n"
- fi
-
- fi
-
- else # no write acces to /etc/passwd
- echo -e "\nWarning: no write access to /etc/passwd, can't add user.\n"
-fi