summaryrefslogtreecommitdiff
path: root/Remote/List.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-01-08 16:14:37 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-01-08 16:14:41 -0400
commit2d172abd2411cfbd592a97ce989950c018fa07e9 (patch)
tree999f8ffb71a110c1d14c84e12127f8ba688de558 /Remote/List.hs
parent42a548b2bf84dfda9f7995c6654991cb6a4591ef (diff)
Added tahoe special remote.
Known problems: 1. Tries to tahoe start when daemon is already running. 2. If multiple tahoe remotes are set up on the same computer, they will have the same node.url configured by default, and this confuses tahoe commands. This commit was sponsored by LeastAuthority.com
Diffstat (limited to 'Remote/List.hs')
-rw-r--r--Remote/List.hs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Remote/List.hs b/Remote/List.hs
index cc7019850..31a9209b1 100644
--- a/Remote/List.hs
+++ b/Remote/List.hs
@@ -34,6 +34,9 @@ import qualified Remote.Web
#ifdef WITH_WEBDAV
import qualified Remote.WebDAV
#endif
+#ifdef WITH_TAHOE
+import qualified Remote.Tahoe
+#endif
import qualified Remote.Glacier
import qualified Remote.Hook
import qualified Remote.External
@@ -52,6 +55,9 @@ remoteTypes =
#ifdef WITH_WEBDAV
, Remote.WebDAV.remote
#endif
+#ifdef WITH_TAHOE
+ , Remote.Tahoe.remote
+#endif
, Remote.Glacier.remote
, Remote.Hook.remote
, Remote.External.remote