messages.sh 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #!/bin/bash
  2. function welcome_message() {
  3. echo
  4. echo ' _ _ _ _ ____ ____ '
  5. echo ' | | | | ___ ___| |_(_) __ _ / ___| _ \ '
  6. echo ' | |_| |/ _ \/ __| __| |/ _` | | | |_) | '
  7. echo ' | _ | __/\__ \ |_| | (_| | |___| __/ '
  8. echo ' |_| |_|\___||___/\__|_|\__,_|\____|_| '
  9. echo ""
  10. echo " Hestia Control Panel Upgrade Script"
  11. echo " Version: $version "
  12. echo "==================================================="
  13. echo ""
  14. echo "Existing files will be backed up to the following location:"
  15. echo "$HESTIA_BACKUP/"
  16. echo ""
  17. echo "This process may take a few moments, please wait..."
  18. echo ""
  19. }
  20. function upgrade_complete() {
  21. echo ""
  22. echo " Upgrade complete! Please report any bugs or issues to"
  23. echo " https://github.com/hestiacp/hestiacp/issues"
  24. echo ""
  25. echo " We hope that you enjoy this release of Hestia Control Panel,"
  26. echo " enjoy your day!"
  27. echo ""
  28. echo " Sincerely,"
  29. echo " The Hestia Control Panel development team"
  30. echo ""
  31. echo " www.hestiacp.com"
  32. echo " Made with love & pride by the open-source community around the world."
  33. echo ""
  34. echo ""
  35. }