godep: make sure to vendor iptb

This commit is contained in:
Henry 2015-04-28 12:35:06 +02:00
parent 5fff7742f3
commit 362fc02713
3 changed files with 11 additions and 8 deletions

8
Godeps/Godeps.json generated
View File

@ -23,10 +23,6 @@
"ImportPath": "github.com/ActiveState/tail",
"Rev": "068b72961a6bc5b4a82cf4fc14ccc724c0cfa73a"
},
{
"ImportPath":"github.com/whyrusleeping/iptb",
"Rev": "7f5790b9a136aca057bc8f1dc711e204c6343504"
},
{
"ImportPath": "github.com/Sirupsen/logrus",
"Comment": "v0.7.1",
@ -258,6 +254,10 @@
"ImportPath": "github.com/whyrusleeping/go-metrics",
"Rev": "1cd8009604ec2238b5a71305a0ecd974066e0e16"
},
{
"ImportPath": "github.com/whyrusleeping/iptb",
"Rev": "7f5790b9a136aca057bc8f1dc711e204c6343504"
},
{
"ImportPath": "golang.org/x/crypto/blowfish",
"Rev": "b7d6bf2c61544745a02f83dec90393985fc3a065"

View File

@ -6,17 +6,17 @@ different bootstrapping patterns. iptb makes testing networks in ipfs
easy!
### Commands:
- init
- init
- creates and initializes 'n' repos
- Options:
- -n=[number of nodes]
- -f : force overwriting of existing nodes
- -bootstrap : select bootstrapping style for cluster choices: star, none
- start
- start
- starts up all testbed nodes
- Options:
- -wait : wait until daemons are fully initialized
- stop
- stop
- kills all testbed nodes
- restart
- kills and then restarts all testbed nodes
@ -28,7 +28,7 @@ easy!
### Configuration
By default, iptb uses `$HOME/testbed` to store created nodes. This path is
configurable via the environment variables `IPTB_ROOT`.
configurable via the environment variables `IPTB_ROOT`.

View File

@ -3,3 +3,6 @@ package util
// FIXME: we need the go-random/random utility for our sharness test wich depends on go-humanize
// Godep will drop it if we dont use it in ipfs. There should be a better way to do this.
import _ "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/dustin/go-humanize"
// similar to the above, only used in the tests makefile
import _ "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/whyrusleeping/iptb"