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.
17 lines
497 B
17 lines
497 B
#!/bin/bash
|
|
# LGSM fn_check_tmux function
|
|
# Author: Daniel Gibbs
|
|
# Website: http://danielgibbs.co.uk
|
|
# Version: 210115
|
|
|
|
# Checks if tmux is installed as too many users do not RTFM or know how to use Google.
|
|
|
|
if [ -z $(command -v tmux) ]; then
|
|
fn_printfailnl "Tmux not installed"
|
|
sleep 1
|
|
fn_scriptlog "Tmux is not installed"
|
|
echo " * Tmux is required to run this server."
|
|
# Suitable passive agressive message
|
|
echo " * Please see 'Prerequisites' section of installation instructions."
|
|
exit
|
|
fi
|