first commit

This commit is contained in:
Benoît HUBERT ( Home )
2025-06-10 16:12:38 +02:00
commit 5608e4d62e
10 changed files with 186 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/perl
use strict;
use warnings;
# Stop sharing
if( $ENV{ "TR_TORRENT_ID" } )
{
print "/usr/bin/transmission-remote -t ".$ENV{ "TR_TORRENT_ID" }." -r\n";
system("/usr/bin/transmission-remote", "-t", $ENV{ "TR_TORRENT_ID" }, "-r" );
}