diff options
author | Joey Hess <joeyh@joeyh.name> | 2014-12-16 23:22:46 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2014-12-16 23:22:46 -0400 |
commit | 7dcad535f2db4b1e5f89ae2d59496fd86bba977c (patch) | |
tree | 7bc91205119c531fe29d1352cdf52719ebed11a7 /Remote/List.hs | |
parent | 4556a7ce6c079f27f8f02b945829ad8d41dc5881 (diff) |
Added bittorrent special remote
addurl behavior change: When downloading an url ending in .torrent,
it will download files from bittorrent, instead of the old behavior
of adding the torrent file to the repository.
Added Recommends on aria2 and bittornado | bittorrent.
This commit was sponsored by Asbjørn Sloth Tønnesen.
Diffstat (limited to 'Remote/List.hs')
-rw-r--r-- | Remote/List.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Remote/List.hs b/Remote/List.hs index 1ec2c32b4..a4d18c7c8 100644 --- a/Remote/List.hs +++ b/Remote/List.hs @@ -30,6 +30,7 @@ import qualified Remote.Bup import qualified Remote.Directory import qualified Remote.Rsync import qualified Remote.Web +import qualified Remote.BitTorrent #ifdef WITH_WEBDAV import qualified Remote.WebDAV #endif @@ -52,6 +53,7 @@ remoteTypes = , Remote.Directory.remote , Remote.Rsync.remote , Remote.Web.remote + , Remote.BitTorrent.remote #ifdef WITH_WEBDAV , Remote.WebDAV.remote #endif |