From: Christian Brauner Date: Wed, 30 Aug 2017 14:45:45 +0000 (+0200) Subject: configure: remove slash from cgroup pattern X-Git-Tag: lxc-2.1.0~7^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1771%2Fhead;p=thirdparty%2Flxc.git configure: remove slash from cgroup pattern This is the cause of the unnecessary extraneous slashes when creating cgroups. Our lxc.system.conf page also clearly shows "lxc/%n" as example, not "/lxc%n". Signed-off-by: Christian Brauner --- diff --git a/configure.ac b/configure.ac index cbdedb69e..8343525c9 100644 --- a/configure.ac +++ b/configure.ac @@ -558,7 +558,7 @@ AC_ARG_WITH([cgroup-pattern], [AC_HELP_STRING( [--with-cgroup-pattern=pattern], [pattern for container cgroups] - )], [], [with_cgroup_pattern=['/lxc/%n']]) + )], [], [with_cgroup_pattern=['lxc/%n']]) # Container log path. By default, use $lxcpath. AC_MSG_CHECKING([Whether to place logfiles in container config path])