diff --git a/functions/fn_retryinstall b/functions/fn_retryinstall new file mode 100644 index 000000000..5eb78f55d --- /dev/null +++ b/functions/fn_retryinstall @@ -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 \ No newline at end of file