]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
Version lxc-0.4.0
authordlezcano <dlezcano>
Fri, 24 Oct 2008 21:33:51 +0000 (21:33 +0000)
committerdlezcano <dlezcano>
Fri, 24 Oct 2008 21:33:51 +0000 (21:33 +0000)
ChangeLog

index 96188e408d14529a7d46095f7d4f3d122c132110..4b7728043cbd3ac0b6650c9e05e777016cfc582c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,68 @@
+2008-10-24 22:24  dlezcano
+
+       * lxc.spec.in, src/lxc/Makefile.am: Added file capabilities to
+         lxc-restart
+
+2008-10-24 22:14  dlezcano
+
+       * configure.in, lxc.spec.in, src/lxc/Makefile.am,
+         src/lxc/destroy.c: Give the ability to non-root user to play with
+         the containers. This feature relies on the file capabilities,
+         when the lxc commands are installed, the sys/net admin
+         capabilities are given to these files. These capabilities are not
+         available for the application running inside the container.
+
+2008-10-24 22:11  dlezcano
+
+       * src/lxc/execute.c: Exit instead of returning in the child
+         processes, otherwise the execution path of the child will be
+         wrong in case of error.
+
+2008-10-23 15:09  legoater
+
+       * src/lxc/restart.c: removed opentty now useless and fixed pid of
+         root process for restart
+
+2008-10-23 09:21  legoater
+
+       * configure.in: fix missing src/lxc/lxc-checkconfig
+
+2008-10-20 13:45  dlezcano
+
+       * src/lxc/: Makefile.am, lxc-checkconfig.in: This new command is a
+         helper to check if the needed functionalities are compiled the
+         kernel. It relies on /proc/config.gz, if it is not compiled, the
+         command will simply fail.  If a feature is missing but not
+         mandatory, "disabled" keyword will appear in yellow, if it is
+         mandatory, it will appear in "red", otherwise the key word
+         "enabled" will appear in green.
+
+2008-10-18 23:07  dlezcano
+
+       * src/lxc/: destroy.c, lxc.h, lxc_monitor.c, lxc_wait.c, monitor.c,
+         monitor.h: These modifications improve the monitoring support of
+         the container. Now several readers can attend the events from one
+         or several containers.  The syntax of the command has been
+         enhanced to interpret regular expressions.  If you want to
+         monitor foo, lxc-monitor -n foo is the right command. If you want
+         to monitor foo and bar, you should specify lxc-monitor -n
+         "foo|bar", if you want to monitor all containers with the name
+         beginning with 'foo', you have to specify lxc-monitor -n "foo.*".
+         More complex regexp can be specified in accordance with the POSIX
+         definitions, man regex (7).
+
+2008-10-15 09:30  dlezcano
+
+       * README: Updated with the cgroup section and fixed some typos
+
+2008-10-09 20:46  dlezcano
+
+       * lxc.spec.in: Updated changelog for version 0.3.0
+
+2008-10-09 20:39  dlezcano
+
+       * ChangeLog: Updated changelog
+
 2008-10-08 16:15  dlezcano
 
        * src/lxc/lxc_conf.c: Removed useless readlink before chrooting