From: Ivana Hutarova Varekova Date: Tue, 21 May 2013 13:10:16 +0000 (+0200) Subject: v0.40.rc1 X-Git-Tag: v0.41~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6ee3bd734622085e07add29e7251032c35616db;p=thirdparty%2Flibcgroup.git v0.40.rc1 I am releasing v0.40.rc1. The major changes are template stuff and new logging. List of all patches: Ivana Hutarova Varekova (12): cgrules.conf: no documentation inside config file cgroup_change_cgroup_flags: create template control group on the fly cgconfigparser: add template tag to cgconfigparser cgconfig.conf: parse template tag and fill relevant structures config.h: create function for init/reload cgconfig template cache api: add function for creating template control groups cgrulesengd: cache templates cgroup_change_cgroup_flags: use templates if they are in rules update documentation to reflect the changes regarding templates api.c: cgroup_create_template_group templates crashing templates have to be coppied in proper way to template_table structure remove useless include from log.h John Fastabend (1): libcg: scan running tasks at start time to classify existing pids Peter Schiffer (15): Removed cgroup_dbg from cgrulesengd Reworked libcgroup logging Enabled default logging Reworked logging configuration Added parsing of CGROUP_LOGLEVEL Recognize DEBUG level of CGROUP_LOGLEVEL variable in daemon Fixed cgrulesengd to log libcgroup log messages to syslog Changed log level of various messages Added new errors/warnings Enabled logging in cgconfigparser Added new logging to the tools Added a test for the new logging Added CGROUP_LOGLEVEL to man pages + fixed the style of 'FILES' section where appropriate. Update default logging for cgrulesengd Make cg_mkdir_p() function compatible with read-only fs Robert Milasan (1): fix defaultcgroup detection (better description) Roberto Polli (1): support indented comments in cgconfigparser Signed-off-by: Ivana Hutarova Varekova --- diff --git a/configure.in b/configure.in index 8284c1b6..0fdf1f33 100644 --- a/configure.in +++ b/configure.in @@ -15,7 +15,7 @@ AC_PREREQ(2.61) # In following section update all occurences of version, including soname -AC_INIT([libcgroup], 0.39.rc1) +AC_INIT([libcgroup], 0.40.rc1) AM_INIT_AUTOMAKE([foreign dist-bzip2]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) @@ -23,7 +23,7 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) # set library version, soname is libcgroup.so.MAJOR AC_SUBST(LIBRARY_VERSION_MAJOR, 1) AC_SUBST(LIBRARY_VERSION_MINOR, 0) -AC_SUBST(LIBRARY_VERSION_RELEASE, 39) +AC_SUBST(LIBRARY_VERSION_RELEASE, 40) # we do not want static libraries AC_DISABLE_STATIC