This commit is contained in:
2023-11-22 08:23:55 -06:00
parent 7ad7f72fbc
commit 83a1517a50
9 changed files with 436 additions and 3 deletions

28
server_start.sh Normal file
View File

@@ -0,0 +1,28 @@
#!/usr/bin/env bash
#
# shellcheck disable=2043
#
# -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
# ===================================================
# 01. Attempt to load global DayZ values
# ===================================================
echo "Starting, attempting to load globals.sh"
GLOBALS_FILE="$PWD/lib/globals.sh"
if [ -e "$GLOBALS_FILE" ] ; then
chmod +x "$GLOBALS_FILE"
. "$GLOBALS_FILE"
else
die "Could not load: $GLOBALS_FILE"
fi
# ===================================================
# 02. Local script variables
# ===================================================
main() {
:
}
main "$@"