read -e -i "y" -p "Do you want to have the default resources downloaded? (Server is inoperable without resources!) [y/N]" yn
case$yn in
[Yy]* ) fn_install_resources && break;;
[Nn]* ) break;;
* )echo"Please answer yes or no.";;
esac
done
else
fn_print_warning_nl "./${selfname} auto-install does not download the default resources. If you require them use ./${selfname} install"
fi
fn_print_header
fn_print_information_nl "Server is inoperable by default without resources, you can install default ones by running the command install-default-resources"