1. 06 Nov, 2015 7 commits
  2. 14 Oct, 2015 1 commit
  3. 07 Oct, 2015 9 commits
  4. 29 Sep, 2015 10 commits
  5. 25 Sep, 2015 2 commits
  6. 21 Sep, 2015 9 commits
  7. 15 Sep, 2015 2 commits
    • coverity: fix mount_entry_create_dir_file · f9419eab
      Serge Hallyn authored
      First, fix use of uninitialized variable 'ret'.  Then, actually use
      the value it returned in its caller.
      Signed-off-by: 's avatarSerge Hallyn <serge.hallyn@ubuntu.com>
    • Tear down network devices during container halt · c95ff1a5
      Major Hayden authored
      On very busy systems, some virtual network devices won't be destroyed after a
      container halts.  This patch uses the lxc_delete_network() method to ensure
      that network devices attached to the container are destroyed when the
      container halts.
      
      Without the patch, some virtual network devices are left over on the system
      and must be removed with `ip link del <device>`.  This caused containers
      with lxc.network.veth.pair to not be able to start.  For containers using
      randomly generated virtual network device names, the old devices will hang
      around on the bridge with their original MAC address.
      Signed-off-by: 's avatarMajor Hayden <major@mhtx.net>