1. 29 Aug, 2017 1 commit
  2. 28 Aug, 2017 2 commits
    • Merge pull request #1763 from brauner/2017-08-28/lxc_2.1_upgrade_script · b7ab9e86
      Stéphane Graber authored
      lxc-update-config: handle legacy networks
    • lxc-update-config: handle legacy networks · 37694da4
      Christian Brauner authored
      Older instances of liblxc allowed to specify networks like this:
      
      lxc.network.type = veth
      lxc.network.flags = up
      lxc.network.link = lxdbr0
      lxc.network.name= eth0
      
      lxc.network.type = veth
      lxc.network.flags = up
      lxc.network.link = lxdbr0
      lxc.network.name = eth1
      
      Each occurrence of "lxc.network.type" indicated the definition of a new
      network. This syntax is not allowed in newer liblxc instances. Instead, network
      must carry an index. So in new liblxc these two networks would be translated to:
      
      lxc.net.0.type = veth
      lxc.net.0.flags = up
      lxc.net.0.link = lxdbr0
      lxc.net.0.name= eth0
      
      lxc.net.1.type = veth
      lxc.net.1.flags = up
      lxc.net.1.link = lxdbr0
      lxc.net.1.name = eth1
      
      The update script did not handle this case correctly. It should now.
      Signed-off-by: 's avatarChristian Brauner <christian.brauner@ubuntu.com>
  3. 25 Aug, 2017 15 commits
  4. 24 Aug, 2017 5 commits
  5. 22 Aug, 2017 6 commits
  6. 21 Aug, 2017 7 commits
  7. 20 Aug, 2017 1 commit
  8. 19 Aug, 2017 1 commit
  9. 15 Aug, 2017 2 commits