moved DHPath section out section skipped by Certbot
This commit is contained in:
parent
cc940635a8
commit
b62f68de51
129
setup.sh
129
setup.sh
@ -279,72 +279,73 @@ if [ "${useCertbot}" -eq 0 ]; then
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
# dhparam: get location of DH Parameters file
|
|
||||||
while true; do
|
|
||||||
read -p "What is the path to your DH Parameters file? (default: /etc/ssl/certs/dhparam.pem) " inputDHPath
|
|
||||||
case "${inputDHPath}" in
|
|
||||||
'')
|
|
||||||
# verify default path exists
|
|
||||||
inputDHPath="/etc/ssl/certs/dhparam.pem"
|
|
||||||
if [ -f "${inputDHPath}" ]; then
|
|
||||||
DHPath="${inputDHPath}"
|
|
||||||
break
|
|
||||||
else
|
|
||||||
echo -e "\n${warn}The file you specified doesn't exist${norm}"
|
|
||||||
while true; do
|
|
||||||
read -p "Do you want to use this path anyways? " yn
|
|
||||||
case $yn in
|
|
||||||
[Yy]*)
|
|
||||||
DHPath="${inputDHPath}"
|
|
||||||
break
|
|
||||||
;;
|
|
||||||
[Nn]*)
|
|
||||||
break
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
if [ -n "${DHPath}" ]; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
[Xx]*)
|
|
||||||
echo -e "\n${cyan}---exiting---\n${norm}"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
# validate path
|
|
||||||
if [ -f "${inputDHPath}" ]; then
|
|
||||||
DHPath="${inputDHPath}"
|
|
||||||
break
|
|
||||||
else
|
|
||||||
echo -e "\n${warn}The file you specified doesn't exist${norm}"
|
|
||||||
while true; do
|
|
||||||
read -p "Do you want to use this path anyways? " yn
|
|
||||||
case $yn in
|
|
||||||
[Yy]*)
|
|
||||||
DHPath="${inputDHPath}"
|
|
||||||
break
|
|
||||||
;;
|
|
||||||
[Nn]*)
|
|
||||||
break
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
if [ -n "${DHPath}" ]; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# dhparam: get location of DH Parameters file
|
||||||
|
while true; do
|
||||||
|
read -p "What is the path to your DH Parameters file? (default: /etc/ssl/certs/dhparam.pem) " inputDHPath
|
||||||
|
case "${inputDHPath}" in
|
||||||
|
'')
|
||||||
|
# verify default path exists
|
||||||
|
inputDHPath="/etc/ssl/certs/dhparam.pem"
|
||||||
|
if [ -f "${inputDHPath}" ]; then
|
||||||
|
DHPath="${inputDHPath}"
|
||||||
|
break
|
||||||
|
else
|
||||||
|
echo -e "\n${warn}The file you specified doesn't exist${norm}"
|
||||||
|
while true; do
|
||||||
|
read -p "Do you want to use this path anyways? " yn
|
||||||
|
case $yn in
|
||||||
|
[Yy]*)
|
||||||
|
DHPath="${inputDHPath}"
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
[Nn]*)
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
if [ -n "${DHPath}" ]; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
[Xx]*)
|
||||||
|
echo -e "\n${cyan}---exiting---\n${norm}"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
# validate path
|
||||||
|
if [ -f "${inputDHPath}" ]; then
|
||||||
|
DHPath="${inputDHPath}"
|
||||||
|
break
|
||||||
|
else
|
||||||
|
echo -e "\n${warn}The file you specified doesn't exist${norm}"
|
||||||
|
while true; do
|
||||||
|
read -p "Do you want to use this path anyways? " yn
|
||||||
|
case $yn in
|
||||||
|
[Yy]*)
|
||||||
|
DHPath="${inputDHPath}"
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
[Nn]*)
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
if [ -n "${DHPath}" ]; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
# debug section
|
# debug section
|
||||||
echo "Local IP4: $IP4"
|
echo "Local IP4: $IP4"
|
||||||
echo "Using Certbot: $useCertbot"
|
echo "Using Certbot: $useCertbot"
|
||||||
|
Loading…
Reference in New Issue
Block a user