From 8f6a6c445eaeb7356e1db9d10d10b7d3fa42f27e Mon Sep 17 00:00:00 2001 From: "Chinthakayala,Sheshashailavas(sc2914)" Date: Wed, 27 Jun 2018 16:11:44 +0000 Subject: removed dependency on built-editor.min.js and added ability to test DG from dgbuilder and fixed the break node on XML generation and added ability to download formatted DG XML and DG JSON Issue-ID: SDNC-353 Change-Id: I799de5de2c4f61e9b56dbe996d8ac3e3b28061f7 Signed-off-by: Chinthakayala,Sheshashailavas(sc2914) --- dgbuilder/createReleaseDir.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'dgbuilder/createReleaseDir.sh') diff --git a/dgbuilder/createReleaseDir.sh b/dgbuilder/createReleaseDir.sh index 00d185f7..eff8485a 100755 --- a/dgbuilder/createReleaseDir.sh +++ b/dgbuilder/createReleaseDir.sh @@ -21,6 +21,11 @@ dbName="sdnctl" dbUser="sdnctl" dbPassword="gamma" gitLocalRepository="$4" +restConfUrl="http://localhost:8181/restconf/operations/SLI-API:execute-graph" +restConfUser="admin" +restConfPassword="admin" +formatXML="Y" +formatJSON="Y" lastPort=$(find "releases/" -name "customSettings.js" |xargs grep uiPort|cut -d: -f2|sed -e s/,//|sort|tail -1) echo $lastPort|grep uiPort >/dev/null 2>&1 @@ -54,6 +59,7 @@ if [ ! -e "./$customSettingsFile" ] then echo "module.exports = {" >$customSettingsFile echo " 'name' : '$name'," >>$customSettingsFile + echo " 'loginId' :'$loginId'," >>$customSettingsFile echo " 'emailAddress' :'$emailid'," >>$customSettingsFile echo " 'uiPort' :$nextPort," >>$customSettingsFile echo " 'mqttReconnectTime': 15000," >>$customSettingsFile @@ -70,7 +76,12 @@ then echo " 'dbName': '$dbName'," >>$customSettingsFile echo " 'dbUser': '$dbUser'," >>$customSettingsFile echo " 'dbPassword': '$dbPassword'," >>$customSettingsFile - echo " 'gitLocalRepository': '$gitLocalRepository'" >>$customSettingsFile + echo " 'gitLocalRepository': '$gitLocalRepository'," >>$customSettingsFile + echo " 'restConfUrl': '$restConfUrl'," >>$customSettingsFile + echo " 'restConfUser': '$restConfUser'," >>$customSettingsFile + echo " 'restConfPassword': '$restConfPassword'," >>$customSettingsFile + echo " 'formatXML': '$formatXML'," >>$customSettingsFile + echo " 'formatJSON': '$formatJSON'" >>$customSettingsFile echo " }" >>$customSettingsFile fi #echo "Created custom settings file $customSettingsFile" -- cgit 1.2.3-korg