diff --git a/cassandra/entrypoint.sh b/cassandra/entrypoint.sh index 25417197d..36d42cd40 100644 --- a/cassandra/entrypoint.sh +++ b/cassandra/entrypoint.sh @@ -12,17 +12,17 @@ export INTERNAL_IP cd /home/container || exit 1 # Print Java version -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0mjava -version\n" +printf "\033[1m\033[33mcontainer@pelican~ \033[0mjava -version\n" java -version # Print Python version if command -v python &> /dev/null then - printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0mpython --version\n" + printf "\033[1m\033[33mcontainer@pelican~ \033[0mpython --version\n" python --version else - printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0mpython3 --version\n" + printf "\033[1m\033[33mcontainer@pelican~ \033[0mpython3 --version\n" python3 --version fi @@ -33,6 +33,6 @@ PARSED=$(echo "${STARTUP}" | sed -e 's/{{/${/g' -e 's/}}/}/g' | eval echo "$(cat # Display the command we're running in the output, and then execute it with the env # from the container itself. -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0m%s\n" "$PARSED" +printf "\033[1m\033[33mcontainer@pelican~ \033[0m%s\n" "$PARSED" # shellcheck disable=SC2086 exec env ${PARSED} diff --git a/dotnet/entrypoint.sh b/dotnet/entrypoint.sh index b9fd77ca4..d072407be 100644 --- a/dotnet/entrypoint.sh +++ b/dotnet/entrypoint.sh @@ -9,7 +9,7 @@ export INTERNAL_IP export DOTNET_ROOT=/usr/share/ # print the dotnet version on startup -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0mdotnet --version\n" +printf "\033[1m\033[33mcontainer@pelican~ \033[0mdotnet --version\n" dotnet --version # Replace Startup Variables diff --git a/erlang/entrypoint.sh b/erlang/entrypoint.sh index 7511c5744..b54a17b5f 100644 --- a/erlang/entrypoint.sh +++ b/erlang/entrypoint.sh @@ -10,7 +10,7 @@ export INTERNAL_IP cd /home/container || exit 1 # Print Erlang's version -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0merl -noshell -eval 'erlang:display(erlang:system_info(system_version))' -eval 'init:stop()'\n" +printf "\033[1m\033[33mcontainer@pelican~ \033[0merl -noshell -eval 'erlang:display(erlang:system_info(system_version))' -eval 'init:stop()'\n" erl -noshell -eval 'erlang:display(erlang:system_info(system_version))' -eval 'init:stop()' # Convert all of the "{{VARIABLE}}" parts of the command into the expected shell @@ -20,6 +20,6 @@ PARSED=$(echo "${STARTUP}" | sed -e 's/{{/${/g' -e 's/}}/}/g' | eval echo "$(cat # Display the command we're running in the output, and then execute it with the env # from the container itself. -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0m%s\n" "$PARSED" +printf "\033[1m\033[33mcontainer@pelican~ \033[0m%s\n" "$PARSED" # shellcheck disable=SC2086 exec env ${PARSED} diff --git a/games/minetest/entrypoint.sh b/games/minetest/entrypoint.sh index 399eb5a20..505b26398 100644 --- a/games/minetest/entrypoint.sh +++ b/games/minetest/entrypoint.sh @@ -12,7 +12,7 @@ export INTERNAL_IP cd /home/container || exit 1 # Print minetest version -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0mminetest --version\n" +printf "\033[1m\033[33mcontainer@pelican~ \033[0mminetest --version\n" minetest --version # Replace Startup Variables diff --git a/go/entrypoint.sh b/go/entrypoint.sh index 7adafec5d..402f6d402 100644 --- a/go/entrypoint.sh +++ b/go/entrypoint.sh @@ -34,7 +34,7 @@ export INTERNAL_IP cd /home/container || exit 1 # Print Go version -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0mgo version\n" +printf "\033[1m\033[33mcontainer@pelican~ \033[0mgo version\n" go version # Convert all of the "{{VARIABLE}}" parts of the command into the expected shell @@ -44,6 +44,6 @@ PARSED=$(echo "${STARTUP}" | sed -e 's/{{/${/g' -e 's/}}/}/g' | eval echo "$(cat # Display the command we're running in the output, and then execute it with the env # from the container itself. -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0m%s\n" "$PARSED" +printf "\033[1m\033[33mcontainer@pelican~ \033[0m%s\n" "$PARSED" # shellcheck disable=SC2086 exec env ${PARSED} diff --git a/java/entrypoint.sh b/java/entrypoint.sh index e92f3d318..76e79e017 100755 --- a/java/entrypoint.sh +++ b/java/entrypoint.sh @@ -34,7 +34,7 @@ export INTERNAL_IP cd /home/container || exit 1 # Print Java version -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0mjava -version\n" +printf "\033[1m\033[33mcontainer@pelican~ \033[0mjava -version\n" java -version # Convert all of the "{{VARIABLE}}" parts of the command into the expected shell @@ -44,6 +44,6 @@ PARSED=$(echo "${STARTUP}" | sed -e 's/{{/${/g' -e 's/}}/}/g' | eval echo "$(cat # Display the command we're running in the output, and then execute it with the env # from the container itself. -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0m%s\n" "$PARSED" +printf "\033[1m\033[33mcontainer@pelican~ \033[0m%s\n" "$PARSED" # shellcheck disable=SC2086 eval ${PARSED} diff --git a/oses/alpine/entrypoint.sh b/oses/alpine/entrypoint.sh index e156de6a7..3118289be 100644 --- a/oses/alpine/entrypoint.sh +++ b/oses/alpine/entrypoint.sh @@ -38,7 +38,7 @@ PARSED=$(echo "${STARTUP}" | sed -e 's/{{/${/g' -e 's/}}/}/g' | eval echo "$(cat # Display the command we're running in the output, and then execute it with the env # from the container itself. -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0m%s\n" "$PARSED" +printf "\033[1m\033[33mcontainer@pelican~ \033[0m%s\n" "$PARSED" # shellcheck disable=SC2086 exec env ${PARSED} diff --git a/voice/teaspeak/entrypoint.sh b/voice/teaspeak/entrypoint.sh index 9b0d21f16..9fa570950 100644 --- a/voice/teaspeak/entrypoint.sh +++ b/voice/teaspeak/entrypoint.sh @@ -19,6 +19,6 @@ PARSED=$(echo "${STARTUP}" | sed -e 's/{{/${/g' -e 's/}}/}/g' | eval echo "$(cat # Display the command we're running in the output, and then execute it with the env # from the container itself. -printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0m%s\n" "$PARSED" +printf "\033[1m\033[33mcontainer@pelican~ \033[0m%s\n" "$PARSED" # shellcheck disable=SC2086 exec env ${PARSED}