From 6ce3600fc301736edda6c3db7294d6994c190190 Mon Sep 17 00:00:00 2001 From: "Ian Y. Choi" Date: Thu, 27 Apr 2017 00:29:27 +0900 Subject: [PATCH] [upstream] Use git.openstack.org and nano - git.openstack.org is an official git repository in OpenStack. - some trainees might not be familiar with vi editor environment. Let's specify nano for beginners but mention that the preference is up to students. Change-Id: Ieeb09a3fe9a9ffba27987a3dc5b5aeb45786501a --- doc/upstream-training/source/slides/code-devstack.rst | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/doc/upstream-training/source/slides/code-devstack.rst b/doc/upstream-training/source/slides/code-devstack.rst index 42749b22..c41eb17c 100644 --- a/doc/upstream-training/source/slides/code-devstack.rst +++ b/doc/upstream-training/source/slides/code-devstack.rst @@ -29,7 +29,7 @@ DevStack Clone and Setup .. code-block:: console - git clone https://github.com/openstack-dev/devstack + git clone https://git.openstack.org/openstack-dev/devstack - Make any local configurations changes (set passwords, IP addresses, etc.) @@ -37,7 +37,12 @@ DevStack Clone and Setup cd ./devstack cp ./samples/local.conf . - vi ./local.conf + nano ./local.conf + +.. note:: + + - Students can use a different editor instead of nano with their own + preferences (e.g. vi, emacs, or whatever they want). - Run DevStack