@cryptotaxi247 / kubo / commits / 362fc0271

godep: make sure to vendor iptb

Henry committed Apr 28, 2015 at 12:35 UTC 362fc02713014b3db64e1080998fb39e86373545
3 files changed +11 -8
Godeps/Godeps.json
+4 -4
@@ -23,10 +23,6 @@
23 "ImportPath": "github.com/ActiveState/tail",
24 "Rev": "068b72961a6bc5b4a82cf4fc14ccc724c0cfa73a"
25 },
26 - {
27 - "ImportPath":"github.com/whyrusleeping/iptb",
28 - "Rev": "7f5790b9a136aca057bc8f1dc711e204c6343504"
29 - },
26 {
27 "ImportPath": "github.com/Sirupsen/logrus",
28 "Comment": "v0.7.1",
@@ -258,6 +254,10 @@
254 "ImportPath": "github.com/whyrusleeping/go-metrics",
255 "Rev": "1cd8009604ec2238b5a71305a0ecd974066e0e16"
256 },
257 + {
258 + "ImportPath": "github.com/whyrusleeping/iptb",
259 + "Rev": "7f5790b9a136aca057bc8f1dc711e204c6343504"
260 + },
261 {
262 "ImportPath": "golang.org/x/crypto/blowfish",
263 "Rev": "b7d6bf2c61544745a02f83dec90393985fc3a065"
Godeps/_workspace/src/github.com/whyrusleeping/iptb/README.md
+4 -4
@@ -6,17 +6,17 @@ different bootstrapping patterns. iptb makes testing networks in ipfs
6 easy!
7
8 ### Commands:
9 -- init
9 +- init
10 - creates and initializes 'n' repos
11 - Options:
12 - -n=[number of nodes]
13 - -f : force overwriting of existing nodes
14 - -bootstrap : select bootstrapping style for cluster choices: star, none
15 -- start
15 +- start
16 - starts up all testbed nodes
17 - Options:
18 - -wait : wait until daemons are fully initialized
19 -- stop
19 +- stop
20 - kills all testbed nodes
21 - restart
22 - kills and then restarts all testbed nodes
@@ -28,7 +28,7 @@ easy!
28
29 ### Configuration
30 By default, iptb uses `$HOME/testbed` to store created nodes. This path is
31 -configurable via the environment variables `IPTB_ROOT`.
31 +configurable via the environment variables `IPTB_ROOT`.
32
33
34
util/sadhack/godep.go
+3
@@ -3,3 +3,6 @@ package util
3 // FIXME: we need the go-random/random utility for our sharness test wich depends on go-humanize
4 // Godep will drop it if we dont use it in ipfs. There should be a better way to do this.
5 import _ "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/dustin/go-humanize"
6 +
7 +// similar to the above, only used in the tests makefile
8 +import _ "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/whyrusleeping/iptb"