| Summary: | net-p2p/transmission-1.92 doesn't delete torrent files | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Tiago Marques <bugs> |
| Component: | Current packages | Assignee: | Peter Volkov (RETIRED) <pva> |
| Status: | RESOLVED INVALID | ||
| Severity: | normal | CC: | net-p2p |
| Priority: | High | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Tiago Marques
2010-09-16 16:13:58 UTC
Hm, until we've started to investigate this issue, are you able to reproduce the problem with transmission-2.04-r1? I didn't tested since it was masked. I will try it and let you know ASAP. Tiago 2.04-r1 is stable on x86 and amd64. Do you experience same problem with it? Just noticed that it is a configuration setting in settings.json
I had set the "trash-original-torrent-files" as false by mistake. "false" is the default setting, which is kind of wrong if you're using the watch dir feature, like I was.
I have found that most of the time I can't get the init script to stop the service(I have lots of downloads).
I am also using a custom init script since the one provided doesn't let me run as a non-root user without OpenRC.
The init script not stopping should be fixed, I use this, with all configs in settings.json, since the conf.d file doesn't allow near as much customization:
#!/sbin/runscript
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/files/transmission-daemon.initd.2,v 1.1 2009/06/20 12:55:37 ssuominen Exp $
opts="start stop"
description="Transmission is a fast, easy and free bittorrent client"
description_start="Start transmission-daemon server and web interface"
description_stop="Stop transmission-daemon server and web interface"
depend() {
need net
}
start() {
ebegin "Starting transmission daemon"
su files -c "transmission-daemon";
eend $?
}
stop() {
ebegin "Stopping transmission daemon"
killall transmission-daemon
while [ "`ps ax | grep transmission-daemon | grep -v grep | wc -l`" -ne "0" ]; do
sleep 0.5;
done
eend $?
}
As for this bug, it can be fixed. Want me to open one up for the init script stop?
Best regards
(In reply to comment #4) > As for this bug, it can be fixed. Want me to open one up for the init script > stop? I'll bump to transmission-2.10 today. If init script will still fail there, please, open new bug. Closing this one as INVALID since this is configuration problem. Thank you for you feedback, Tiago :) You're welcome. No need to bump, I'll try out 2.10 in ~x86 and you should probably leave it there until it is confirmed stable by more people. Best regards (In reply to comment #6) > No need to bump, I'll try out 2.10 in ~x86 Yea, but I've just added it to the tree. This is kind of slang - version bump == add new version of the package to the tree :) ok :) |