qBittorrent (secubox-app-qbittorrent): - Full-featured BitTorrent client with web UI - Container IP: 192.168.255.42:8090 - qbittorrent-nox from Debian repos - API commands: add, list, status WebTorrent (secubox-app-webtorrent): - Browser-based torrent streaming via WebRTC - Container IP: 192.168.255.43:8095 - Node.js server with webtorrent library - Stream video files directly in browser - Beautiful dark theme web UI Both use Debian LXC containers (no Docker/Podman) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
294 B
Bash
Executable File
23 lines
294 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=95
|
|
STOP=10
|
|
USE_PROCD=1
|
|
|
|
start_service() {
|
|
[ "$(uci -q get qbittorrent.main.enabled)" = "1" ] || return 0
|
|
qbittorrentctl start
|
|
}
|
|
|
|
stop_service() {
|
|
qbittorrentctl stop
|
|
}
|
|
|
|
restart() {
|
|
qbittorrentctl restart
|
|
}
|
|
|
|
status() {
|
|
qbittorrentctl status
|
|
}
|