Some extra comments
This commit is contained in:
parent
0eee43b1e7
commit
b3432a467e
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue