Ok new question.
I'm running a shell script provided by my web host that asks for input, but the problem is that it buffers and doesn't accept my input, nor does it print the question, and it does this right before it's supposed to ask.
I had to look into the script itself to figure this out.
echo
echo "To use Let's Encrypt you must agree to their Subscriber Agreement,"
echo "which is linked from:"
echo
echo " https://letsencrypt.org/repository/"
echo
echo -n "Do you accept the Let's Encrypt Subscriber Agreement (y/n)? "
read yes
case $yes in
y|Y|yes|YES|Yes|yup)
break 2
;;
*)
echo "OK, tls-setup.sh will be aborted."
return 30
esac
My first assumption is that something is wrong with the settings in my WinSCP.
They also said if I run a custom daemon, which I do, it might not work.
Thoughts?