From ff0ba37e95cd20e78f237738c6e25484c40e06ae Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Tue, 27 Aug 2013 20:01:15 -0400 Subject: [PATCH] Write to /dev/vdb, not /dev/null User guide had two lines that were writing data to /dev/null. From context, it seems clear the writes should be happening to /dev/vdb instead. Change-Id: I7e9e42bd7d688a78aea25cc9fa5865c411c7f154 --- .../src/section_dashboard_launch_instances_from_volume.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/docbkx/openstack-user/src/section_dashboard_launch_instances_from_volume.xml b/doc/src/docbkx/openstack-user/src/section_dashboard_launch_instances_from_volume.xml index 66641a97d1..9ab8d2acbb 100644 --- a/doc/src/docbkx/openstack-user/src/section_dashboard_launch_instances_from_volume.xml +++ b/doc/src/docbkx/openstack-user/src/section_dashboard_launch_instances_from_volume.xml @@ -78,7 +78,7 @@ For a raw image: - $ cat IMAGE >/dev/null + $ cat IMAGE >/dev/vdb Alternatively, use dd. @@ -88,7 +88,7 @@ For a *.tar.bz2 image: - $ tar xfjO IMAGE >/dev/null + $ tar xfjO IMAGE >/dev/vdb