diff --git a/README.md b/README.md index 1f083fc..e05b692 100644 --- a/README.md +++ b/README.md @@ -278,7 +278,7 @@ To reboot **do not** use traditional Linux commands. You must use: ### Important Note: First Boot -On first boot, your Minecraft Server will generate the world. This can take around 10 minutes, so hang tight while this happens, and then connect to your Minecraft Server's IP address from Minecraft Java as soon as it is ready. You can tail the log file if you'd like to see the progress, or sipmly retry connecting via Minecraft Java after a few minutes. +On first boot, your Minecraft Server will generate the world. This can take around 10 minutes, so hang tight while this happens, and then connect to your Minecraft Server's IP address from Minecraft Java as soon as it is ready. You can tail the log file if you'd like to see the progress, or simply retry connecting via Minecraft Java after a few minutes. Post-Install diff --git a/install b/install index 2262d16..d8cf8fb 100755 --- a/install +++ b/install @@ -1219,9 +1219,13 @@ stop) status) user=$(whoami); if [ $user != "'${user}'" ]; then echo "Cannot run as ${user} - expecting '${user}'"; exit; fi if screen -ls | grep -q Pinecraft; then - echo 1 + echo "Minecraft server is Online! Join through: " + hostname -I | awk '{print $1}' + echo "To stop server use '~/minecraft/stop'" + echo "To reboot server use 'sudo ~/minecraft/reboot'" else - echo 0 + echo "Minecraft server is Offline." + echo "To start server use '~/minecraft/server'" fi ;;