From 05f6fe40f028cecdcfd97b4911a686caf535d4ae Mon Sep 17 00:00:00 2001 From: vrubelroman Date: Tue, 28 Oct 2025 00:24:17 +0300 Subject: [PATCH] fix: Add user prompt for qBittorrent credentials setup - Prompt user to configure qBittorrent credentials after installation - Display clear instructions for setting admin/vrubel07 - Wait for user confirmation before starting Docker services - Ensures correct credentials for all dependent services --- start_ubuntu.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/start_ubuntu.sh b/start_ubuntu.sh index aa3e482..0399e35 100755 --- a/start_ubuntu.sh +++ b/start_ubuntu.sh @@ -109,6 +109,28 @@ sudo systemctl enable qbittorrent sudo systemctl restart qbittorrent log_success "qBittorrent запущен и настроен на автозапуск" + +# Проверка: нужна ли настройка пароля в qBittorrent +sleep 3 +echo "" +log_warning "⚠️ ВАЖНО: Настройка qBittorrent" +echo "" +echo "🔐 qBittorrent может использовать временные credentials." +echo "Для корректной работы всех сервисов необходимо установить:" +echo "" +echo " 1. Откройте: http://localhost:8082" +echo " 2. Войдите (используйте admin/admin если это первый запуск)" +echo " 3. Перейдите в: Tools → Options → Web UI" +echo " 4. Установите:" +echo " • Username: admin" +echo " • Password: vrubel07" +echo " 5. Нажмите 'Save' внизу страницы" +echo "" +echo "📝 Эти credentials необходимы для корректной работы всех сервисов" +echo "" +echo -n "Нажмите Enter когда закончите настройку qBittorrent..." +read + log_info "Веб-интерфейс: http://localhost:8082" log_info "Логин: admin / vrubel07"