diff options
author | Roger Gonzalez <roger@rogs.me> | 2023-01-10 17:52:05 -0300 |
---|---|---|
committer | Roger Gonzalez <roger@rogs.me> | 2023-01-10 17:52:05 -0300 |
commit | 277a4bf138f7e4b3241b9d921e1d12774bb54ff5 (patch) | |
tree | d39d37c135bbe90fe4e6606d196a7bfebad4c232 /install.sh | |
parent | 01e40119d825f89d6fce252f23f9614a6b8d8d75 (diff) |
Improved formatting on the script messages
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -105,7 +105,7 @@ realpath $media_folder &>/dev/null || send_error_message "There was an error wit media_folder=$(realpath $media_folder) -read -p "Are you sure your media folder is $media_folder? Maye sure your user has permissions on this folder! [y/N]: " media_folder_correct +read -p "Are you sure your media folder is $media_folder? [y/N]: " media_folder_correct media_folder_correct=${media_folder_correct:-"n"} if [ $media_folder_correct == "n" ]; then @@ -180,8 +180,12 @@ send_success_message "All done!✅ Enjoy YAMS!" echo "You can check the installation on $install_location" echo "========================================================" echo "Everythins should be running now! To check everything running, go to:" +echo running_services_location +echo +echo echo "You might need to wait for a couple of minutes while everything gets up and running" +echo echo "All the services location are also saved in ~/yams_services.txt" running_services_location > ~/yams_services.txt echo "========================================================" |