From 69d3b79e03e0ba4c9679bcb5279b226b9606e1ff Mon Sep 17 00:00:00 2001 From: bhargavaregalla Date: Tue, 17 May 2016 09:34:26 +0100 Subject: [PATCH] Wrong container name in devstack "All-In-One Single LXC Container" manual. Wrong container name in devstack "All-In-One Single LXC Container" manual. Link: http://docs.openstack.org/developer/devstack/guides/lxc.html After creating "devstack" container with below command sudo lxc-create -n devstack -t ubuntu -f devstack-lxc.conf -- --packages=bsdmainutils,git The name should be 'devstack' instead of 'p2' in the below command ssh ubuntu@$(sudo lxc-info -n p2 | awk '/IP/ { print $2 }')). Change-Id: I7a84b97b03b2dd4338f1d946b7eafb8ec6e3767d Closes-bug: #1582248 --- doc/source/guides/lxc.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/guides/lxc.rst b/doc/source/guides/lxc.rst index a719d605aa..9549ed2974 100644 --- a/doc/source/guides/lxc.rst +++ b/doc/source/guides/lxc.rst @@ -88,7 +88,7 @@ You can login using the username ``ubuntu`` and password ``ubuntu``. You can also ssh into your container. On your host, run ``sudo lxc-info -n devstack`` to get the IP address (e.g. -``ssh ubuntu@$(sudo lxc-info -n p2 | awk '/IP/ { print $2 }')``). +``ssh ubuntu@$(sudo lxc-info -n devstack | awk '/IP/ { print $2 }')``). Run Devstack -------------