summaryrefslogtreecommitdiff
path: root/os/debian/config
diff options
context:
space:
mode:
Diffstat (limited to 'os/debian/config')
-rwxr-xr-xos/debian/config21
1 files changed, 0 insertions, 21 deletions
diff --git a/os/debian/config b/os/debian/config
deleted file mode 100755
index a4e1268f6..000000000
--- a/os/debian/config
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-# Source debconf library.
-. /usr/share/debconf/confmodule
-
-FILES="trg1r.grf trgcr.grf trghr.grf trgir.grf trgtr.grf sample.cat"
-DATADIR=/usr/share/games/openttd/data
-
-MISSING="No"
-for FILE in $FILES; do
- # Check if all the files needed are here.
- if [ ! -e $DATADIR/$FILE ]; then
- MISSING="Yes"
- break
- fi;
-done
-
-if [ $MISSING = "Yes" ]; then
- db_input high openttd/datafiles || true
- db_go
-fi