1. 27 Apr, 2015 3 commits
  2. 26 Apr, 2015 3 commits
  3. 25 Apr, 2015 3 commits
  4. 24 Apr, 2015 1 commit
  5. 23 Apr, 2015 5 commits
  6. 22 Apr, 2015 16 commits
  7. 21 Apr, 2015 9 commits
    • Christian Couder's avatar
      test-lib.sh: fix umount calls · 14cd8634
      Christian Couder authored
      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: default avatarChristian Couder <chriscool@tuxfamily.org>
      14cd8634
    • Christian Couder's avatar
      t0030: expect good ipfs mount output · cc6eabf4
      Christian Couder authored
      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: default avatarChristian Couder <chriscool@tuxfamily.org>
      cc6eabf4
    • Christian Couder's avatar
      t0030: encapsulate ipfs mount · a7b02270
      Christian Couder authored
      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: default avatarChristian Couder <chriscool@tuxfamily.org>
      a7b02270
    • Juan Batiz-Benet's avatar
      version bump to 0.3.1 · b1adeef8
      Juan Batiz-Benet authored
      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)
      b1adeef8
    • Juan Batiz-Benet's avatar
      Merge pull request #1111 from ipfs/init-lower-key-size · c7d2d609
      Juan Batiz-Benet authored
      init: lower default rsa key size to 2048 for now
      c7d2d609
    • Juan Batiz-Benet's avatar
      Merge pull request #1110 from ipfs/graceful-exit-sharness · bafcaaeb
      Juan Batiz-Benet authored
      sharness: wait for graceful shutdown
      bafcaaeb
    • Juan Batiz-Benet's avatar
      init: lower default rsa key size to 2048 for now · 16f56e1c
      Juan Batiz-Benet authored
      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)
      16f56e1c
    • Juan Batiz-Benet's avatar
      sharness: only send kill signal once - #1106 · cf797d3d
      Juan Batiz-Benet authored
      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.
      cf797d3d
    • Juan Batiz-Benet's avatar
      sharness: t0030-mount output known breakage · bd9e2c6e
      Juan Batiz-Benet authored
      The test_must_fail check fails on osx. (it does not seem to fail on
      linux). See #1109
      bd9e2c6e