RtControl 显示每个 torrent 的完成时间为“永不”

RtControl 显示每个 torrent 的完成时间为“永不”

我正在尝试使用 RtControl 自动删除超过一定时间的种子。但是,我的命令不起作用,当我尝试其中一个rtcontrol -q -o completed \*rtcontrol -q -o loaded \*两个时,每个种子都显示“从不”,即使它们都已完成,如 所确认的rtcontrol is_complete=yes。我正在使用 ruTorrent 来管理 rTorrent,这可能是问题所在吗?

答案1

您需要包含标准配置(以便您拥有完成的事件处理程序),并修复任何现有项目的时间,根据文档

#
# PyroScope SETTINGS
#

# Set "pyro.extended" to 1 to activate rTorrent-PS features!
# LEAVE THIS AT 0 IF YOU RUN A VANILLA rTorrent!
system.method.insert = pyro.extended, value|const, 0

# Set "pyro.bin_dir" to the "bin" directory where you installed the pyrocore tools!
# Make sure you end it with a "/"; if this is left empty, then the shell's path is searched.
system.method.insert = pyro.bin_dir, string|const,

# Remove the ".default" if you want to change something (else your
# changes get over-written on update).
system.method.insert = pyro.rc_dialect, string|const|simple, "execute_capture=bash,-c,\"test $1 = 0.8.6 && echo -n 0.8.6 || echo -n 0.8.9\",dialect,$system.client_version="
system.method.insert = pyro.rtorrent_rc, string|const|private, "$cat=~/.pyroscope/rtorrent-,\"$pyro.rc_dialect=\",.rc.default"
import = $pyro.rtorrent_rc=

# TORQUE: Daemon watchdog schedule
# Must be activated by touching the "~/.pyroscope/run/pyrotorque" file!
# Set the second argument to "-v" or "-q" to change log verbosity.
schedule = pyro_watchdog,30,300,"pyro.watchdog=~/.pyroscope,"

相关内容