Puged "entertainment" from the script

This commit is contained in:
Roger Gonzalez 2023-01-07 14:05:59 -03:00
parent eac038b9ed
commit ec67f9b772
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6

View File

@ -66,7 +66,7 @@ check_dependencides "docker-compose"
# ============================================================================================
# Gathering information
# ============================================================================================
read -p "Where do you want to instal the docker-compose file? [/opt/yams] : " install_location
read -p "Where do you want to install the docker-compose file? [/opt/yams]: " install_location
# Checking if the install_location exists
install_location=${install_location:-/opt/yams}
@ -88,7 +88,7 @@ fi
read -p "Please, input your media folder: " media_folder
# Checking that the entertainment folder exists
# Checking that the media folder exists
realpath $media_folder &>/dev/null || send_error_message "There was an error with your media folder! The directory \"$media_folder\" does not exist!"
@ -98,7 +98,7 @@ read -p "Are you sure your media folder is $media_folder? [y/N]: " media_folder_
media_folder_correct=${media_folder_correct:-"n"}
if [ $media_folder_correct == "n" ]; then
send_error_message "Entertainment folder is not correct. Please, fix it and run the script again"
send_error_message "Media folder is not correct. Please, fix it and run the script again"
fi
echo "Configuring the docker-compose file for the user \"$username\" on \"$install_location\"..."