From 7bef08638233135a1ee01e52520ebcc34d8a1e0b Mon Sep 17 00:00:00 2001 From: Nyako Date: Tue, 9 Jun 2026 15:41:35 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20seedbox-install.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- seedbox-install.sh | 54 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 45 insertions(+), 9 deletions(-) diff --git a/seedbox-install.sh b/seedbox-install.sh index e7bc9a0..6828106 100644 --- a/seedbox-install.sh +++ b/seedbox-install.sh @@ -1,12 +1,19 @@ echo "deb [trusted=yes] https://flood-apt-repo.pages.dev/ devel main" | sudo tee /etc/apt/sources.list.d/flood.list +curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash sudo apt update sudo apt install -y flood sudo apt install -y rtorrent SERVICE_USER="download" FLOOD_PORT="8098" -FLOOD_HOST="0.0.0.0" +EXPLORER_PORT="8099" +SERVER_HOST="0.0.0.0" + sudo useradd --create-home --shell /bin/false "$SERVICE_USER" +sudo mkdir -p /home/$SERVICE_USER/downloads +sudo mkdir -p /home/$SERVICE_USER/watch +sudo mkdir -p /home/$SERVICE_USER/.config/filebrowser +sudo chown -R $SERVICE_USER:$SERVICE_USER /home/$SERVICE_USER sudo tee /etc/systemd/system/flood@.service > /dev/null < /dev/null <:${FLOOD_PORT}" \ No newline at end of file +echo "http://:${FLOOD_PORT}" +echo "Explorer run in:" +echo "http://:${EXPLORER_PORT}" +echo "Login: admin | Password: admin" \ No newline at end of file