mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-18 21:16:10 +05:00
update README and cosmetics
This commit is contained in:
@@ -5,9 +5,15 @@ TorrServer, stream torrent to http
|
||||
Just download server from releases and exec file\
|
||||
https://github.com/YouROK/TorrServer/releases \
|
||||
After open browser link http://127.0.0.1:8090 \
|
||||
On linux systems you need to set the environment variable before run \
|
||||
On linux systems you may need to set the environment variable before run \
|
||||
***export GODEBUG=madvdontneed=1***
|
||||
|
||||
#### macOS install / configure / uninstall script
|
||||
curl -s https://raw.githubusercontent.com/YouROK/TorrServer/master/installTorrServerMac.sh|sudo bash
|
||||
|
||||
#### Linux on VPS install / configure / uninstall script
|
||||
curl -s https://raw.githubusercontent.com/YouROK/TorrServer/master/installTorrServerLinux.sh|sudo bash
|
||||
|
||||
#### Unofficial TorrServer iocage plugin
|
||||
On FreeBSD (TrueNAS/FreeNAS) you can use this plugin
|
||||
|
||||
|
||||
@@ -499,15 +499,19 @@ while true; do
|
||||
[[ $lang == "en" ]] && read -p " Want to install or configure TorrServer? (Yes|No) Type Delete to uninstall. " ydn </dev/tty || read -p " Хотите установить, обновить или настроить TorrServer? (Да|Нет) Для удаления введите «Удалить» " ydn </dev/tty
|
||||
case $ydn in
|
||||
[YyДд]*)
|
||||
initialCheck;
|
||||
installTorrServer;
|
||||
break;;
|
||||
initialCheck
|
||||
installTorrServer
|
||||
break
|
||||
;;
|
||||
[DdУу]*)
|
||||
uninstall;
|
||||
break;;
|
||||
uninstall
|
||||
break
|
||||
;;
|
||||
[NnНн]*)
|
||||
break;;
|
||||
* ) [[ $lang == "en" ]] && echo " Enter Yes, No or Delete" || echo " Ввведите Да, Нет или Удалить" ;;
|
||||
break
|
||||
;;
|
||||
*) [[ $lang == "en" ]] && echo " Enter Yes, No or Delete" || echo " Ввведите Да, Нет или Удалить"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
|
||||
Reference in New Issue
Block a user