From 709fb0c38c9add73913b3c025d589552b11dc0e5 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Sat, 12 Oct 2024 11:43:52 -0300 Subject: [PATCH] Added SABnzbd to the install script --- docs.org | 11 ++++++----- install.sh | 3 ++- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/docs.org b/docs.org index 5c4d0ec..6bb5a1a 100644 --- a/docs.org +++ b/docs.org @@ -117,7 +117,7 @@ check_dependencies() { send_success_message "docker compose exists ✅ " else echo -e $(printf "\e[31m ⚠️ docker compose not found! ⚠️\e[0m") - read -p "Do you want YAMS to install Docker Compose? IT ONLY WORKS ON DEBIAN AND UBUNTU! [y/N]: " install_docker + read -p "Do you want YAMS to install Docker Compose? IT ONLY WORKS ON DEBIAN AND UBUNTU! (y/N) [Default = n]: " install_docker install_docker=${install_docker:-"n"} if [ "$install_docker" == "y" ]; then @@ -128,7 +128,7 @@ check_dependencies() { fi else echo -e $(printf "\e[31m ⚠️ docker not found! ⚠️\e[0m") - read -p "Do you want YAMS to install Docker and Docker Compose? IT ONLY WORKS ON DEBIAN AND UBUNTU! [y/N]: " install_docker + read -p "Do you want YAMS to install Docker and Docker Compose? IT ONLY WORKS ON DEBIAN AND UBUNTU! (y/N) [Default = n]: " install_docker install_docker=${install_docker:-"n"} if [ "$install_docker" == "y" ]; then @@ -153,7 +153,8 @@ running_services_location() { host_ip=$(hostname -I | awk '{ print $1 }') services=( - "qBittorrent:8080" + "qBittorrent:8081" + "SABnzbd:8081" "Radarr:7878" "Sonarr:8989" "Lidarr:8686" @@ -248,7 +249,7 @@ fi read -p "Please, input your media directory [/srv/media]: " media_directory media_directory=${media_directory:-"/srv/media"} -read -p "Are you sure your media directory is \"$media_directory\"? [y/N]: " media_directory_correct +read -p "Are you sure your media directory is \"$media_directory\"? (y/N) [Default = n]: " media_directory_correct media_directory_correct=${media_directory_correct:-"n"} if [ ! -d "$media_directory" ]; then @@ -303,7 +304,7 @@ fi echo -e "\nTime to set up the VPN." echo "You can check the supported VPN list here: https://yams.media/advanced/vpn." -read -p "Do you want to configure a VPN? [Y/n]: " setup_vpn +read -p "Do you want to configure a VPN? (Y/n) [Default = y]: " setup_vpn setup_vpn=${setup_vpn:-"y"} if [ "$setup_vpn" == "y" ]; then diff --git a/install.sh b/install.sh index 09e4968..6346d88 100644 --- a/install.sh +++ b/install.sh @@ -65,7 +65,8 @@ running_services_location() { host_ip=$(hostname -I | awk '{ print $1 }') services=( - "qBittorrent:8080" + "qBittorrent:8081" + "SABnzbd:8081" "Radarr:7878" "Sonarr:8989" "Lidarr:8686"