forked from hasufell/hasufell-repository
11 lines
258 B
Plaintext
11 lines
258 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
BASEDIR="/opt/teamspeak3-client"
|
||
|
|
||
|
export LD_LIBRARY_PATH="${BASEDIR}${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}"
|
||
|
|
||
|
# work around DT_RPATH (.) security issue by chdir'ing into expected $LD_LIBRARY_PATH
|
||
|
cd "${BASEDIR}"
|
||
|
|
||
|
exec "${BASEDIR}/ts3client" "$@"
|