Removal of mysql codebock from common_prerequisites.rst

Usage of code-block:: mysql causes an error with newer
sphinx installations. This change modifies the mysql to
none to avoid these errors.

Change-Id: Ie5d79e4f26373d2901405aace3c79bc5b3a48d36
Signed-off-by: csatari <gergely.csatari@nokia.com>
This commit is contained in:
csatari 2017-03-31 14:16:28 +02:00
parent 5bc6c84b39
commit dc48d5bc5c
1 changed files with 3 additions and 3 deletions

View File

@ -15,13 +15,13 @@ you must create a database, service credentials, and API endpoints.
* Create the ``{{cookiecutter.codename}}`` database:
.. code-block:: mysql
.. code-block:: none
CREATE DATABASE {{cookiecutter.codename}};
* Grant proper access to the ``{{cookiecutter.codename}}`` database:
.. code-block:: mysql
.. code-block:: none
GRANT ALL PRIVILEGES ON {{cookiecutter.codename}}.* TO '{{cookiecutter.codename}}'@'localhost' \
IDENTIFIED BY '{{cookiecutter.codename|upper}}_DBPASS';
@ -32,7 +32,7 @@ you must create a database, service credentials, and API endpoints.
* Exit the database access client.
.. code-block:: mysql
.. code-block:: none
exit;