summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2023-01-07 11:42:47 -0300
committerRoger Gonzalez <roger@rogs.me>2023-01-07 11:42:47 -0300
commit58b49114d70241e7223facfaa118928ccec5b31d (patch)
treeb3f0779d31bec7c03e36c1d6ba1a202f51a19bdd
parent549a55dac6421d17e8759ab1c07c05bf1adec96d (diff)
Added more info to setup.sh
-rwxr-xr-xsetup.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/setup.sh b/setup.sh
index 7fb4cd5..1a551d3 100755
--- a/setup.sh
+++ b/setup.sh
@@ -154,7 +154,16 @@ echo " \__\/ \__\/ \__\/ "
echo "========================================================"
send_success_message "All done!✅ Enjoy YAMS!"
echo "You can check the installation on $install_location"
-if [ ! $run_now == "y" ]; then
+if [ $run_now == "y" ]; then
+ echo "========================================================"
+ host_ip=$(hostname -I | awk '{ print $1 }')
+ echo "Everythins should be running now! To check everything running, go to:"
+ echo "Sonarr: $host_ip:8989/"
+ echo "Radarr: $host_ip:7878/"
+ echo "Bazarr: $host_ip:6767/"
+ echo "Jackett: $host_ip:9117/"
+ echo "Emby: $host_ip:8096/"
+else
echo "========================================================"
echo "Since YAMS is not running yet, to run it just execute:"
echo "docker-compose -f $filename up -d"