[lxc-devel] [lxc/lxc] f69e99: Add long option for -P in documentation

GitHub noreply at github.com
Thu Aug 27 21:52:04 UTC 2015


  Branch: refs/heads/stable-1.0
  Home:   https://github.com/lxc/lxc
  Commit: f69e99f1aa008b61c2dcf6694a8a0af33f07acee
      https://github.com/lxc/lxc/commit/f69e99f1aa008b61c2dcf6694a8a0af33f07acee
  Author: Nicolas Cornu <ncornu at aldebaran.com>
  Date:   2015-08-27 (Thu, 27 Aug 2015)

  Changed paths:
    M doc/ja/lxc-ls.sgml.in
    M doc/lxc-ls.sgml.in

  Log Message:
  -----------
  Add long option for -P in documentation

Signed-off-by: Nicolas Cornu <ncornu at aldebaran.com>


  Commit: 83593a1020c5e1f8c1883e6e02296f075a7ce38e
      https://github.com/lxc/lxc/commit/83593a1020c5e1f8c1883e6e02296f075a7ce38e
  Author: Robert Schiele <rschiele at gmail.com>
  Date:   2015-08-27 (Thu, 27 Aug 2015)

  Changed paths:
    M src/lxc/lxccontainer.c
    M src/lxc/start.c

  Log Message:
  -----------
  check for NULL pointers before calling setenv()

Latest glibc release actually honours calling setenv with a NULL
pointer by causing SIGSEGV but checking pointers before submitting
to any system function is a good idea anyway.

Signed-off-by: Robert Schiele <rschiele at gmail.com>


  Commit: 47e0a09eebba9c2ebb5aa2abff625585b5db1410
      https://github.com/lxc/lxc/commit/47e0a09eebba9c2ebb5aa2abff625585b5db1410
  Author: Nicolas Cornu <ncornu at aldebaran.com>
  Date:   2015-08-27 (Thu, 27 Aug 2015)

  Changed paths:
    M doc/lxc.container.conf.sgml.in

  Log Message:
  -----------
  Add doc for optional, create=dir and create=file in lxc.container.conf man

Signed-off-by: Nicolas Cornu <ncornu at aldebaran.com>


  Commit: f9945dde7346c6967aa07876a7ce474c115120a1
      https://github.com/lxc/lxc/commit/f9945dde7346c6967aa07876a7ce474c115120a1
  Author: Antonio Terceiro <terceiro at debian.org>
  Date:   2015-08-27 (Thu, 27 Aug 2015)

  Changed paths:
    M templates/lxc-debian.in

  Log Message:
  -----------
  lxc-debian: support stretch (Debian 9) images

Signed-off-by: Antonio Terceiro <terceiro at debian.org>
Acked-by: Serge E. Hallyn <serge.hallyn at ubuntu.com>


  Commit: 459b8719590bb2a02bccdf4d2690a32e2d01d229
      https://github.com/lxc/lxc/commit/459b8719590bb2a02bccdf4d2690a32e2d01d229
  Author: David Ward <david.ward at ll.mit.edu>
  Date:   2015-08-27 (Thu, 27 Aug 2015)

  Changed paths:
    M src/lxc/conf.c

  Log Message:
  -----------
  Only mount /proc if needed, even without a rootfs

Use the same code with and without a rootfs to check if mounting
/proc is necessary before doing so. If mounting it is unsuccessful
and there is no rootfs, continue as before.

Signed-off-by: David Ward <david.ward at ll.mit.edu>
Acked-by: Serge E. Hallyn <serge.hallyn at ubuntu.com>


  Commit: 5c4d65db57b2e396957e04d0ab25a7df14a70d03
      https://github.com/lxc/lxc/commit/5c4d65db57b2e396957e04d0ab25a7df14a70d03
  Author: David Ward <david.ward at ll.mit.edu>
  Date:   2015-08-27 (Thu, 27 Aug 2015)

  Changed paths:
    M src/lxc/conf.c

  Log Message:
  -----------
  Fix verification of start hook without a rootfs

Signed-off-by: David Ward <david.ward at ll.mit.edu>
Acked-by: Serge E. Hallyn <serge.hallyn at ubuntu.com>


  Commit: d9615f45fc476602dee7b4b149091087f5689f93
      https://github.com/lxc/lxc/commit/d9615f45fc476602dee7b4b149091087f5689f93
  Author: David Ward <david.ward at ll.mit.edu>
  Date:   2015-08-27 (Thu, 27 Aug 2015)

  Changed paths:
    M src/lxc/conf.c

  Log Message:
  -----------
  Fix /dev symlinks without a rootfs

Signed-off-by: David Ward <david.ward at ll.mit.edu>
Acked-by: Serge E. Hallyn <serge.hallyn at ubuntu.com>


  Commit: 1e9fd6b03438eee2e525a38dc7b2194ec8cbe229
      https://github.com/lxc/lxc/commit/1e9fd6b03438eee2e525a38dc7b2194ec8cbe229
  Author: David Ward <david.ward at ll.mit.edu>
  Date:   2015-08-27 (Thu, 27 Aug 2015)

  Changed paths:
    M src/lxc/conf.c

  Log Message:
  -----------
  Fix automatic mounts without a rootfs

Signed-off-by: David Ward <david.ward at ll.mit.edu>
Acked-by: Serge E. Hallyn <serge.hallyn at ubuntu.com>


  Commit: 5b27808f3ab1242d9a5b943512416f873f56caba
      https://github.com/lxc/lxc/commit/5b27808f3ab1242d9a5b943512416f873f56caba
  Author: David Ward <david.ward at ll.mit.edu>
  Date:   2015-08-27 (Thu, 27 Aug 2015)

  Changed paths:
    M src/lxc/conf.c

  Log Message:
  -----------
  Allow autodev without a rootfs

A container without a rootfs is useful for running a collection of
processes in separate namespaces (to provide separate networking as
an example), while sharing the host filesystem (except for specific
paths that are re-mounted as needed). For multiple processes to run
automatically when such a container is started, it can be launched
using lxc-start, and a separate instance of systemd can manage just
the processes inside the container. (This assumes that the path to
the systemd unit files is re-mounted and only contains the services
that should run inside the container.) For this use case, autodev
should be permitted for a container that does not have a rootfs.

Signed-off-by: David Ward <david.ward at ll.mit.edu>
Acked-by: Serge E. Hallyn <serge.hallyn at ubuntu.com>


  Commit: 81b6f418ebf791b54b99849705bc67535d6e9590
      https://github.com/lxc/lxc/commit/81b6f418ebf791b54b99849705bc67535d6e9590
  Author: David Ward <david.ward at ll.mit.edu>
  Date:   2015-08-27 (Thu, 27 Aug 2015)

  Changed paths:
    M src/lxc/lxccontainer.c

  Log Message:
  -----------
  When creating container, save configuration if rootfs already exists

Commit 6c6892b "fix multithreaded create()" prevented the container
configuration from being saved if the backing store does not need
to be created.

Signed-off-by: David Ward <david.ward at ll.mit.edu>
Acked-by: Serge E. Hallyn <serge.hallyn at ubuntu.com>


  Commit: c99596fd782f7e3e8cd002cad2263a426fe59555
      https://github.com/lxc/lxc/commit/c99596fd782f7e3e8cd002cad2263a426fe59555
  Author: David Ward <david.ward at ll.mit.edu>
  Date:   2015-08-27 (Thu, 27 Aug 2015)

  Changed paths:
    M src/lxc/lxccontainer.c

  Log Message:
  -----------
  Fix container creation without a rootfs

It is not an error to create a container without a template or rootfs.

Signed-off-by: David Ward <david.ward at ll.mit.edu>
Acked-by: Serge E. Hallyn <serge.hallyn at ubuntu.com>


Compare: https://github.com/lxc/lxc/compare/4cf6de230d37...c99596fd782f


More information about the lxc-devel mailing list