Torrentflux install bug

Hi,
I've tried to install Torrentflux to compare it to Transmission, however the install doesn't work (it says OK, returns status 10).
I've determined that it's because the /usr/tflux/tflux.tar.gz is actually a bzip2 archive. Manually attempting to extract it fails until I use -jxf as the argument.
In 15-2, fixing this involves editing /etc/finc/sysfunc_install_fvdw.finc on line 65, from
to
Probably wouldn't hurt to correct the file name to bz2, or just recompress to gzip as it should be and forget about all this :P
EDIT: It also wasn't obvious that the user/pass for torrentflux is "admin" "admin", as I keep forgetting to click on the help button.
I've tried to install Torrentflux to compare it to Transmission, however the install doesn't work (it says OK, returns status 10).
I've determined that it's because the /usr/tflux/tflux.tar.gz is actually a bzip2 archive. Manually attempting to extract it fails until I use -jxf as the argument.
In 15-2, fixing this involves editing /etc/finc/sysfunc_install_fvdw.finc on line 65, from
- Code: Select all
$copycmd = "/bin/tar -xzf /usr/tflux/tflux.tar.gz -C /share/1000/";
to
- Code: Select all
$copycmd = "/bin/tar -jxf /usr/tflux/tflux.tar.gz -C /share/1000/";
Probably wouldn't hurt to correct the file name to bz2, or just recompress to gzip as it should be and forget about all this :P
EDIT: It also wasn't obvious that the user/pass for torrentflux is "admin" "admin", as I keep forgetting to click on the help button.