The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxc/pull/1806
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === To match names beginning with the letters `f` or `b` one can use `[fb].*` or `(f|b).*`, but not `[f|b].*`, which would match strings beginning with `f`, `|`, or `b`.
From d6737d01cb87bd9c2d2d4d55c5e0ee6706262391 Mon Sep 17 00:00:00 2001 From: Christian von Roques <roq...@mti.ag> Date: Tue, 12 Sep 2017 12:31:23 +0200 Subject: [PATCH] fix regex-typo in lxc-monitor.sgml.in To match names beginning with the letters `f` or `b` one can use `[fb].*` or `(f|b).*`, but not `[f|b].*`, which would match strings beginning with `f`, `|`, or `b`. --- doc/lxc-monitor.sgml.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/lxc-monitor.sgml.in b/doc/lxc-monitor.sgml.in index e57314e58..b6b31cfe1 100644 --- a/doc/lxc-monitor.sgml.in +++ b/doc/lxc-monitor.sgml.in @@ -121,7 +121,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA </varlistentry> <varlistentry> - <term>lxc-monitor -n '[f|b].*'</term> + <term>lxc-monitor -n '[fb].*'</term> <listitem> <para> will monitor the different states for container with the
_______________________________________________ lxc-devel mailing list lxc-devel@lists.linuxcontainers.org http://lists.linuxcontainers.org/listinfo/lxc-devel