summaryrefslogtreecommitdiffstats
path: root/satellit_installer/static_files
diff options
context:
space:
mode:
authorSimon Rettberg2023-10-11 14:36:03 +0200
committerSimon Rettberg2023-10-11 14:36:03 +0200
commit39168a031dd66179d9a53787dc5269d7522c8adc (patch)
treeec1acb4906e62d517342aa0dc7222f9102f5b863 /satellit_installer/static_files
parent[SSPS] Fix: Don't install Java 11, but default jre (diff)
downloadsetup-scripts-39168a031dd66179d9a53787dc5269d7522c8adc.tar.gz
setup-scripts-39168a031dd66179d9a53787dc5269d7522c8adc.tar.xz
setup-scripts-39168a031dd66179d9a53787dc5269d7522c8adc.zip
[SSPS] Install dozmod from tar
Diffstat (limited to 'satellit_installer/static_files')
-rwxr-xr-xsatellit_installer/static_files/dmsd/opt/dmsd/dmsd.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/satellit_installer/static_files/dmsd/opt/dmsd/dmsd.sh b/satellit_installer/static_files/dmsd/opt/dmsd/dmsd.sh
deleted file mode 100755
index 04994d3..0000000
--- a/satellit_installer/static_files/dmsd/opt/dmsd/dmsd.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-KB=$( grep ^MemTotal /proc/meminfo | awk '{print $2}' )
-[ -z "$KB" ] && KB=600000
-if [ "$KB" -gt 4096000 ]; then
- MB=$(( KB / ( 1024 * 3 ) + 667 ))
-else
- MB=$(( KB / ( 1024 * 2 ) ))
-fi
-if [ "$MB" -gt 2000 ] && ! java -version 2>&1 | grep -q '64-Bit'; then
- MB=2000
-fi
-[ "$MB" -lt 190 ] && MB=190
-[ "$MB" -gt 4500 ] && MB=4500
-
-exec java -Xmx${MB}M -jar dmsd.jar