1 changed files with 14 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||
#!/bin/bash |
|||
# LGSM fn_retryinstall function |
|||
# Author: Daniel Gibbs |
|||
# Website: http://danielgibbs.co.uk |
|||
# Version: 011214 |
|||
|
|||
while true; do |
|||
read -p "Retry install? [y/N]" yn |
|||
case $yn in |
|||
[Yy]* ) fn_install; exit;; |
|||
[Nn]* ) echo Exiting; exit;; |
|||
* ) echo "Please answer yes or no.";; |
|||
esac |
|||
done |
Loading…
Reference in new issue