1. 29 Apr, 2010 3 commits
  2. 08 Apr, 2010 7 commits
  3. 02 Apr, 2010 2 commits
  4. 22 Mar, 2010 7 commits
  5. 26 Feb, 2010 2 commits
  6. 25 Feb, 2010 3 commits
  7. 24 Feb, 2010 13 commits
  8. 22 Jan, 2010 3 commits
    • version 0.6.5 · 9eb09f87
      Daniel Lezcano authored
      Increment to 0.6.5 version.
      Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
    • unmount failure is not fatal · 7df119ee
      Daniel Lezcano authored
      There are several cases where the system can no longer access a mount
      point or a mount point configuration makes the algorithm bogus.
      
      For example, we mount something and then we chroot, the mount information
      will give an unaccessible path and the container won't be able to start
      because this mount point will be unaccessible. But if it's the case, then
      we can just warn and continue running the container.
      
      Another case is the path to a mount point is not accessible because there
      is another mount point on top of it hiding the mount point. So the umount
      will fail and the container won't start.
      
      Easy to reproduce:
      
      mkdir -p /tmp/dir1/dir2
      mount -t tmpfs tmpfs /tmp/dir1/dir2
      mount -t tmpfs tmpfs /tmp/dir1
      
      So can we just ignore the error when unmounting and continue to the list again
      and again until it shrinks.
      
      At the end, we just display the list of the unmounted points.
      Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
    • compilation warning in confile.c · bd288c26
      Michel Normand authored
      Signed-off-by: 's avatarMichel Normand <normand@fr.ibm.com>
      Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>