1. 07 Nov, 2014 1 commit
  2. 06 Nov, 2014 1 commit
    • lxc-debian: Fix default mirrors · 5d20559c
      Gu1 authored
      Fix a typo in the lines inserted in the default sources.list.
      Change the default mirror to http.debian.net which is (supposedly) more
      accurate and better than cdn.debian.net for a generic configuration.
      Use security.debian.org directly for the {release}/updates repository.
      Signed-off-by: 's avatarGu1 <gu1@aeroxteam.fr>
      Acked-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
  3. 05 Nov, 2014 1 commit
  4. 02 Nov, 2014 1 commit
  5. 31 Oct, 2014 1 commit
  6. 29 Oct, 2014 1 commit
  7. 27 Oct, 2014 9 commits
  8. 22 Oct, 2014 4 commits
  9. 20 Oct, 2014 4 commits
  10. 17 Oct, 2014 4 commits
  11. 15 Oct, 2014 11 commits
  12. 13 Oct, 2014 1 commit
  13. 09 Oct, 2014 1 commit
    • fix lxc.mount.auto clearing · d9192f5d
      Serge Hallyn authored
      the way config_mount was structured, sending 'lxc.mount.auto = '
      ended up actually clearing all lxc.mount.entrys.  Fix that by
      moving the check for an empty value to after the subkey checks.
      Then, actually do the clearing of auto_mounts in config_mount_auto.
      
      The 'strlen(subkey)' check being removed was bogus - the subkey
      either known to be 'lxc.mount.entry', else subkey would have been
      NULL (and forced a return in the block above).
      
      This would have been clearer if the config_mount() and helper
      fns were structured like the rest of confile.c.  It's tempting
      to switch it over, but there are subtleties in there so it's
      not something to do without a lot of thought and testing.
      Signed-off-by: 's avatarSerge Hallyn <serge.hallyn@ubuntu.com>