1. 27 4月, 2015 4 次提交
  2. 26 4月, 2015 3 次提交
  3. 25 4月, 2015 3 次提交
  4. 24 4月, 2015 1 次提交
  5. 23 4月, 2015 5 次提交
  6. 22 4月, 2015 16 次提交
  7. 21 4月, 2015 8 次提交
    • test-lib.sh: fix umount calls · 14cd8634
      As test directories contain a space, we need to
      properly quote paths, otherwise we get errors like:
      
      ```
      umount: /home/christian/gocode/src/github.com/ipfs/go-ipfs/test/sharness/trash is not mounted (according to mtab)
      umount: /home/christian/gocode/src/github.com/ipfs/go-ipfs/test/sharness/trash is not mounted (according to mtab)
      ```
      
      instead of:
      
      ```
      umount: /home/christian/gocode/src/github.com/ipfs/go-ipfs/test/sharness/trash directory.t0030-mount.sh/ipfs is not mounted (according to mtab)
      umount: /home/christian/gocode/src/github.com/ipfs/go-ipfs/test/sharness/trash directory.t0030-mount.sh/ipns is not mounted (according to mtab)
      ```
      
      License: MIT
      Signed-off-by: 's avatarChristian Couder <chriscool@tuxfamily.org>
      Christian Couder 提交于
    • t0030: expect good ipfs mount output · cc6eabf4
      As the ipfs mount call is now encapsulated in a
      temporary function (see previous commit) its
      output should not be tempered with by
      test_must_fail.
      
      License: MIT
      Signed-off-by: 's avatarChristian Couder <chriscool@tuxfamily.org>
      Christian Couder 提交于
    • t0030: encapsulate ipfs mount · a7b02270
      As described in issue #1109 on OSX some output from
      test_must_fail unfortunately goes into the "output"
      file that we use to test the output from "ipfs mount".
      
      This patch avoids the above by encapsulating the call
      to "ipfs mount" into a temporary function.
      
      License: MIT
      Signed-off-by: 's avatarChristian Couder <chriscool@tuxfamily.org>
      Christian Couder 提交于
    • version bump to 0.3.1 · b1adeef8
      This patch update fixes a few bugs:
      
      * harden shutdown logic by @torarnv
      * daemon locking fixes by @travisperson
      * don't re-add entire dirs by @whyrusleeping
      * tests now wait for graceful shutdown by @jbenet
      * default key size is now 2048 by @jbenet
      
      (experimenting with using semver)
      Juan Batiz-Benet 提交于
    • Merge pull request #1111 from ipfs/init-lower-key-size · c7d2d609
      init: lower default rsa key size to 2048 for now
      Juan Batiz-Benet 提交于
    • Merge pull request #1110 from ipfs/graceful-exit-sharness · bafcaaeb
      sharness: wait for graceful shutdown
      Juan Batiz-Benet 提交于
    • init: lower default rsa key size to 2048 for now · 16f56e1c
      I think we should lower the default rsa key size to 2048 for now -- until we have a proper focus on securing everything. It's always a pain for new users to get hung on 4096 rsa key gen, when we have not even made sure we're using the keys perfectly correctly yet. (And 2048 is still considered secure)
      Juan Batiz-Benet 提交于
    • sharness: only send kill signal once - #1106 · cf797d3d
      sharness should only send the kill signal once, as that is
      what a graceful shutdown should do. in the event that doesn't
      happen, we should send it again, and then kill -9 to prevent it
      lingering and messing with other tests.
      Juan Batiz-Benet 提交于