diff options
author | Vincent Colas <vincent.colas@orange.com> | 2018-03-05 12:20:14 +0100 |
---|---|---|
committer | Vincent Colas <vincent.colas@orange.com> | 2018-03-20 23:02:33 +0100 |
commit | 13de8870c542c1cd87d24f1bdde5878c82276c8b (patch) | |
tree | ff7449117c9fa8f8d19d6886a302ca3df317deb6 | |
parent | ef55ef2163dee32905bd10b0a0b3ea0f6a763322 (diff) |
Typo corrections in installation_manual.rst
Modify tca version to be in line with Nexus release, and correct the TCA app preference file code-block to avoid the code-block to end before the end of the file
Issue-ID: DCAEGEN2-378
Change-Id: I5a47cc3e5c17d2f09aeaf8dfba840ed30a526350
Signed-off-by: Vincent Colas <vincent.colas@orange.com>
-rw-r--r-- | docs/sections/installation_manual.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/sections/installation_manual.rst b/docs/sections/installation_manual.rst index 4888233a..91e8ad7e 100644 --- a/docs/sections/installation_manual.rst +++ b/docs/sections/installation_manual.rst @@ -136,7 +136,7 @@ m1.medium size and 50gb cinder volumes. { "artifact": { "name": "dcae-analytics-cdap-tca", - "version": "2.0.1", + "version": "2.0.0", "scope": "user" }, @@ -251,7 +251,7 @@ m1.medium size and 50gb cinder volumes. \"closedLoopEventStatus\": \"ONSET\" }] }] -}" + }" } @@ -274,10 +274,10 @@ m1.medium size and 50gb cinder volumes. .. code-block:: bash #!/bin/sh - TCA_JAR=dcae-analytics-cdap-tca-2.0.1.jar + TCA_JAR=dcae-analytics-cdap-tca-2.0.0.jar rm -f /home/ubuntu/$TCA_JAR cd /home/ubuntu/ - wget https://nexus.onap.org/service/local/repositories/releases/content/org/onap/dcaegen2/analytics/tca/dcae-analytics-cdap-tca/2.0.1/$TCA_JAR + wget https://nexus.onap.org/service/local/repositories/releases/content/org/onap/dcaegen2/analytics/tca/dcae-analytics-cdap-tca/2.0.0/$TCA_JAR if [ $? -eq 0 ]; then if [ -f /home/ubuntu/$TCA_JAR ]; then echo “Restarting TCA CDAP application using $TCA_JAR artifact” |