gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
393 B
13 lines
393 B
#!/bin/bash
|
|
# LinuxGSM fix_xnt.sh module
|
|
# Author: Daniel Gibbs
|
|
# Contributors: https://linuxgsm.com/contrib
|
|
# Website: https://linuxgsm.com
|
|
# Description: Install Xonotic Default Config
|
|
|
|
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
# Create the directory if it doesn't exist
|
|
if [ ! -d "${systemdir}/${selfname}/data" ]; then
|
|
mkdir -p "${systemdir}/${selfname}/data"
|
|
fi
|
|
|