asdf
This commit is contained in:
28
server_start.sh
Normal file
28
server_start.sh
Normal 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 "$@"
|
||||
Reference in New Issue
Block a user