mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* mute errors due to failed incoming network connections * fix log entry formatting * Update cleanDanglingImages * Update cleanDanglingImages
35 lines
1.1 KiB
Bash
Executable File
35 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
printf "\n"
|
|
printf "Welcome to\n"
|
|
cat << "ASCII"
|
|
|
|
███████
|
|
█ █ █
|
|
█ █ █ █
|
|
█ █ █ █
|
|
█ █ █ █
|
|
█ █ █ █
|
|
█ █
|
|
███████
|
|
|
|
_____ __ ___ __ __
|
|
(_ | /\ |__) | / \(_
|
|
__) | / \| \ | \__/__)
|
|
ASCII
|
|
printf " v$(cat /usr/lib/startos/VERSION.txt)\n\n"
|
|
printf " %s (%s %s)\n" "$(uname -o)" "$(uname -r)" "$(uname -m)"
|
|
printf " Git Hash: $(cat /usr/lib/startos/GIT_HASH.txt)"
|
|
if [ -n "$(cat /usr/lib/startos/ENVIRONMENT.txt)" ]; then
|
|
printf " ~ $(cat /usr/lib/startos/ENVIRONMENT.txt)\n"
|
|
else
|
|
printf "\n"
|
|
fi
|
|
|
|
printf "\n"
|
|
printf " * Documentation: https://docs.start9.com\n"
|
|
printf " * Management: https://%s.local\n" "$(hostname)"
|
|
printf " * Support: https://start9.com/contact\n"
|
|
printf " * Source Code: https://github.com/Start9Labs/start-os\n"
|
|
printf " * License: MIT\n"
|
|
printf "\n"
|