-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall-server
More file actions
28 lines (25 loc) · 794 Bytes
/
install-server
File metadata and controls
28 lines (25 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
# -*- mode: shell-script; coding: utf-8 -*-
#
#
#
# ThinLinc server installation script
#
# To install the ThinLinc server software double click on the
# "Click to install" icon. If that does not work, or if you wish
# to start the installer from a terminal, then enter the following
# on the command line:
#
# sh ./install-server
#
#
#
# Copyright 2002-2024 Cendio AB.
# For more information, see http://www.cendio.com
#
[ -h "$0" ] && ORIGIN=`ls -l "$0" | sed "s/.*-> //g"` || ORIGIN="$0"
ORIGIN=`(cd "\`dirname \"$ORIGIN\"\`"; pwd -P 2>/dev/null || pwd)`
# Check basic system requirements
. "${ORIGIN}/libs/libexec/syscheck.sh"
# Can't put a relative path in the hashbang
exec "${ORIGIN}/libs/libexec/python3" "${ORIGIN}/libs/tlinstaller" "$@"