]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
Don't list containers w/ active console sessions multiple times
authorRainer Weikusat <rweikusat@mobileactivedefense.com>
Mon, 24 Oct 2011 12:47:58 +0000 (14:47 +0200)
committerDaniel Lezcano <daniel.lezcano@free.fr>
Mon, 24 Oct 2011 12:47:58 +0000 (14:47 +0200)
The lxc-ls shell script uses netstat -xa to get a listing of AF_UNIX
sockets it then parses in order to determine the names of presently
running containers. This is wrong because it will list the
listening socket and all sockets created by accepting connections on
that. This causes the script to display the names of containers with
active lxc-console sessions 1 + n times, n being the number of active
console sessions. The patch below fixes this by using netstat -xl
instead which only displays the listening sockets.

Signed-off-by: Rainer Weikusat <rweikusat@mobileactivedefense.com>
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
src/lxc/lxc-ls.in

index 185b36706cada083c5b08c3061201d649c9a7be0..2f9075c9c624ad6195362ba8d81b77db467202d5 100644 (file)
@@ -25,7 +25,7 @@ function get_cgroup()
 
 ls "$@" $lxcpath
 
-active=$(netstat -xa | grep $lxcpath | \
+active=$(netstat -xl | grep $lxcpath | \
        sed -e 's#.*'"$lxcpath/"'\(.*\)/command#\1#');
 
 if test -n "$active"; then