From a47360b0da3856a54e027f8e1d415fb72c0016e6 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 9 Aug 2015 11:11:18 +1200 Subject: Update setup package script --- setup/unix/linux-arm-setup.sh | 22 ++++++++++++++++++++++ setup/unix/setup.sh | 14 ++++++++++++++ 2 files changed, 36 insertions(+) create mode 100755 setup/unix/linux-arm-setup.sh create mode 100755 setup/unix/setup.sh (limited to 'setup/unix') diff --git a/setup/unix/linux-arm-setup.sh b/setup/unix/linux-arm-setup.sh new file mode 100755 index 000000000..afa3be37a --- /dev/null +++ b/setup/unix/linux-arm-setup.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +UNIX_PATH="/opt/traccar" + +if [ $(java -version 2>&1 | grep -i version | sed 's/.*version "\(.*\)\.\(.*\)\..*"/\1\2/; 1q') -lt 17 ] +then + echo "Please install Java version 7 or higher" +else + mkdir $UNIX_PATH + cp -rf * $UNIX_PATH + chmod -R +r $UNIX_PATH + if [ -z "`readelf -A /proc/self/exe | grep Tag_ABI_VFP_args`" ] + then + mv $UNIX_PATH/bin/wrapper-linux-armel-32 $UNIX_PATH/bin/wrapper + mv $UNIX_PATH/lib/libwrapper-linux-armel-32.so $UNIX_PATH/lib/libwrapper.so + else + mv $UNIX_PATH/bin/wrapper-linux-armhf-32 $UNIX_PATH/bin/wrapper + mv $UNIX_PATH/lib/libwrapper-linux-armhf-32.so $UNIX_PATH/lib/libwrapper.so + fi + $UNIX_PATH/bin/traccar install + rm $UNIX_PATH/setup.sh +fi diff --git a/setup/unix/setup.sh b/setup/unix/setup.sh new file mode 100755 index 000000000..cf93e8985 --- /dev/null +++ b/setup/unix/setup.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +UNIX_PATH="/opt/traccar" + +if [ $(java -version 2>&1 | grep -i version | sed 's/.*version "\(.*\)\.\(.*\)\..*"/\1\2/; 1q') -lt 17 ] +then + echo "Please install Java version 7 or higher" +else + mkdir $UNIX_PATH + cp -rf * $UNIX_PATH + chmod -R +r $UNIX_PATH + $UNIX_PATH/bin/traccar install + rm $UNIX_PATH/setup.sh +fi -- cgit v1.2.3