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.
16 lines
382 B
16 lines
382 B
#!/bin/bash
|
|
# LinuxGSM install_retry.sh module
|
|
# Author: Daniel Gibbs
|
|
# Contributors: https://linuxgsm.com/contrib
|
|
# Website: https://linuxgsm.com
|
|
# Description: Asks for installation retry after failure.
|
|
|
|
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
if fn_prompt_yn "Retry install?" Y; then
|
|
command_install.sh
|
|
core_exit.sh
|
|
else
|
|
exitcode=0
|
|
core_exit.sh
|
|
fi
|
|
|