fn_install_retry 312 B

1234567891011121314
  1. #!/bin/bash
  2. # LGSM fn_install_retry function
  3. # Author: Daniel Gibbs
  4. # Website: http://gameservermanagers.com
  5. lgsm_version="061115"
  6. while true; do
  7. read -e -i "y" -p "Retry install? [Y/n]" yn
  8. case $yn in
  9. [Yy]* ) fn_install; exit;;
  10. [Nn]* ) echo Exiting; exit;;
  11. * ) echo "Please answer yes or no.";;
  12. esac
  13. done