1. 07 Oct, 2009 12 commits
  2. 19 Aug, 2009 1 commit
  3. 18 Aug, 2009 3 commits
  4. 26 Jul, 2009 3 commits
  5. 24 Jul, 2009 6 commits
  6. 22 Jul, 2009 3 commits
  7. 20 Jul, 2009 2 commits
    • isolate the shmfs for the container · 958f5c9e
      Daniel Lezcano authored
      The /dev/shm is not isolated for application container, so mount it in
      the container.
      Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
    • fix closed fd when they are inherited · af795875
      Daniel Lezcano authored
      This patch fix a problem with the commit d983b93c
      When the lxc daemonize, it closes fd 0, 1 and 2. But these ones are coming from
      inherited fd and they are already in the inherited list of fd. When lxc creates
      some file descriptors, they have the number of the previous inherited file
      descriptor, so they are closed when we close all the inherited file descriptors.
      
      In order to fix that, the lxc_close_inherited_fd function has been implemented
      to close an inherited fd and remove it from the list.
      Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
  8. 16 Jul, 2009 3 commits
  9. 15 Jul, 2009 4 commits
  10. 13 Jul, 2009 2 commits
  11. 10 Jul, 2009 1 commit
    • create the lxc directory with lxc-setcap · 74741dcc
      Daniel Lezcano authored
      There are several cases:
       * we run the lxc-create as root, the @path@/var/lib/lxc will be created
       * we run the lxc-create as non-root, the creation of the directory will
         fail with "permission denied", so we should call lxc-setcap before
       * we run lxc-setcap (always as root), we create the directory and set
         the permission for everyone.
      Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>