fn_install_retry 298 B

1234567891011121314
  1. #!/bin/bash
  2. # LGSM fn_install_retry function
  3. # Author: Daniel Gibbs
  4. # Website: http://gameservermanagers.com
  5. # Version: 210115
  6. while true; do
  7. read -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