install_complete.sh 525 B

12345678910111213141516171819
  1. #!/bin/bash
  2. # LinuxGSM install_complete.sh function
  3. # Author: Daniel Gibbs
  4. # Website: https://linuxgsm.com
  5. # Description: Prints installation completion message and hints.
  6. local modulename="INSTALL"
  7. local commandaction="Install"
  8. local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
  9. echo -e ""
  10. echo -e "================================="
  11. echo -e "Install Complete!"
  12. fn_script_log_info "Install Complete!"
  13. echo -e ""
  14. echo -e "To start server type:"
  15. echo -e "./${selfname} start"
  16. echo -e ""
  17. core_exit.sh