Skip to content

Commit

Permalink
Corrected torrent servers to torrent clients
Browse files Browse the repository at this point in the history
  • Loading branch information
zejjnt authored and Tearran committed Dec 29, 2024
1 parent fb0d08a commit 3a3c630
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions tools/json/config.software.json
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,8 @@
"sub": [
{
"id": "DOW001",
"description": "qBittorrent BitTorrent server ",
"about": "This operation will install qBittorrent BitTorrent server",
"description": "qBittorrent BitTorrent client ",
"about": "This operation will install qBittorrent BitTorrent client",
"command": [
"module_qbittorrent install"
],
Expand All @@ -440,7 +440,7 @@
{
"id": "DOW002",
"description": "qBittorrent remove",
"about": "This operation will remove qBittorrent BitTorrent server",
"about": "This operation will remove qBittorrent BitTorrent client",
"command": [
"module_qbittorrent remove"
],
Expand All @@ -461,8 +461,8 @@
},
{
"id": "DEL001",
"description": "Deluge BitTorrent server",
"about": "This operation will install BitTorrent server",
"description": "Deluge BitTorrent client",
"about": "This operation will install BitTorrent client",
"command": [
"module_deluge install"
],
Expand All @@ -473,7 +473,7 @@
{
"id": "DEL002",
"description": "Deluge remove",
"about": "This operation will remove Deluge BitTorrent server",
"about": "This operation will remove Deluge BitTorrent client",
"command": [
"module_deluge remove"
],
Expand All @@ -484,7 +484,7 @@
{
"id": "DEL003",
"description": "Deluge purge with data folder",
"about": "This operation will remove Deluge BitTorrent server data folder",
"about": "This operation will remove Deluge BitTorrent client data folder",
"command": [
"module_deluge purge"
],
Expand All @@ -494,8 +494,8 @@
},
{
"id": "TRA001",
"description": "Transmission BitTorrent server",
"about": "This operation will install Transmission BitTorrent server",
"description": "Transmission BitTorrent client",
"about": "This operation will install Transmission BitTorrent client",
"command": [
"module_transmission install"
],
Expand All @@ -506,7 +506,7 @@
{
"id": "TRA002",
"description": "Transmission remove",
"about": "This operation will remove Transmission BitTorrent server",
"about": "This operation will remove Transmission BitTorrent client",
"command": [
"module_transmission remove"
],
Expand All @@ -517,7 +517,7 @@
{
"id": "TRA003",
"description": "Transmission purge with data folder",
"about": "This operation will remove Transmission BitTorrent server data folder",
"about": "This operation will remove Transmission BitTorrent client data folder",
"command": [
"module_transmission purge"
],
Expand Down
4 changes: 2 additions & 2 deletions tools/modules/software/module_transmission.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ function module_transmission () {
"${commands[0]}")
pkg_installed docker-ce || module_docker install
[[ -d "$TRANSMISSION_BASE" ]] || mkdir -p "$TRANSMISSION_BASE" || { echo "Couldn't create storage directory: $TRANSMISSION_BASE"; exit 1; }
TRANSMISSION_USER=$($DIALOG --title "Enter username for Transmission server" --inputbox "\nHit enter for defaults" 9 50 "armbian" 3>&1 1>&2 2>&3)
TRANSMISSION_PASS=$($DIALOG --title "Enter password for Transmission server" --inputbox "\nHit enter for defaults" 9 50 "armbian" 3>&1 1>&2 2>&3)
TRANSMISSION_USER=$($DIALOG --title "Enter username for Transmission client" --inputbox "\nHit enter for defaults" 9 50 "armbian" 3>&1 1>&2 2>&3)
TRANSMISSION_PASS=$($DIALOG --title "Enter password for Transmission client" --inputbox "\nHit enter for defaults" 9 50 "armbian" 3>&1 1>&2 2>&3)
docker run -d \
--name=transmission \
--net=lsio \
Expand Down

0 comments on commit 3a3c630

Please sign in to comment.