Some extra comments

This commit is contained in:
Bob Mottram 2017-05-15 15:42:02 +01:00
parent 0eee43b1e7
commit b3432a467e
1 changed files with 14 additions and 2 deletions

View File

@ -45,12 +45,21 @@ function install_final {
clear clear
echo '' echo ''
echo $" if [[ $ONION_ONLY == 'no' ]]; then
echo $"
If you wish to verify the server ssh public key at next login it is: If you wish to verify the server ssh public key at next login it is:
$(get_ssh_server_key) $(get_ssh_server_key)
Ensure that ports are forwarded from your internet router Ensure that ports are forwarded from your internet router.
You can find the list of ports within the firewall section of
the administrator control panel.
" "
else
echo $"
If you wish to verify the server ssh public key at next login it is:
$(get_ssh_server_key)
"
fi
echo '' echo ''
if [ -f "/home/$MY_USERNAME/README" ]; then if [ -f "/home/$MY_USERNAME/README" ]; then
@ -71,9 +80,12 @@ Ensure that ports are forwarded from your internet router
shutdown now shutdown now
return return
fi fi
echo $'Turning off logging'
${PROJECT_NAME}-logging off ${PROJECT_NAME}-logging off
echo $'Rebooting the system'
reboot reboot
fi fi
echo $'Turning off logging'
${PROJECT_NAME}-logging off ${PROJECT_NAME}-logging off
} }