committed by
GitHub
3 changed files with 21 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||||
|
#!/bin/bash |
||||
|
# LinuxGSM fix_ts3.sh function |
||||
|
# Author: Daniel Gibbs |
||||
|
# Website: https://linuxgsm.com |
||||
|
# Description: Resolves various issues with Teamspeak 3. |
||||
|
|
||||
|
local commandname="FIX" |
||||
|
local commandaction="Fix" |
||||
|
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
||||
|
|
||||
|
# Fixes: makes libmariadb2 available #1924 |
||||
|
if [ ! -f "${serverfiles}/libmariadb.so.2" ]; then |
||||
|
ln -s "${serverfiles}/redist/libmariadb.so.2" "${serverfiles}/libmariadb.so.2" |
||||
|
fi |
Loading…
Reference in new issue