Merge "Changed as per the standard convention set to use ".""

This commit is contained in:
Zuul 2018-01-11 09:48:22 +00:00 committed by Gerrit Code Review
commit d8db92328f
4 changed files with 5 additions and 5 deletions

View File

@ -679,7 +679,7 @@ If you didn't run watch in a different terminal, you can run it now::
Generate openrc file::
kolla-kubernetes/tools/build_local_admin_keystonerc.sh ext
source ~/keystonerc_admin
. ~/keystonerc_admin
.. note::

View File

@ -246,9 +246,9 @@ Now we can install Ansible:
.. code-block:: console
easy_install --user pip
printf 'if [ -f ~/.bashrc ]; then\n source ~/.bashrc\nfi\n' >> $HOME/.profile
printf 'if [ -f ~/.bashrc ]; then\n . ~/.bashrc\nfi\n' >> $HOME/.profile
printf 'export PATH=$PATH:$HOME/Library/Python/2.7/bin\n' >> $HOME/.bashrc
source $HOME/.profile
. $HOME/.profile
pip install --user --upgrade ansible
sudo mkdir /etc/ansible
sudo curl -L https://raw.githubusercontent.com/ansible/ansible/devel/examples/ansible.cfg -o /etc/ansible/ansible.cfg

View File

@ -24,7 +24,7 @@ so the only package you install is ``tox`` itself and it is safe to install tox
.. code-block:: console
$virtualenv .venv
$source .venv/bin/activate
$. .venv/bin/activate
$ pip install tox
See `the unit testing section of the Testing wiki page`_ for more information.

View File

@ -4,7 +4,7 @@
# Loading mirrors info for traffic optimization.
#
if [ -f /etc/ci/mirror_info.sh ]; then
source /etc/ci/mirror_info.sh
. /etc/ci/mirror_info.sh
echo "Suggested proxy url: $NODEPOOL_TARBALLS_PROXY"
fi