diff options
author | Skip Wonnell <skip@att.com> | 2017-11-01 14:21:31 -0500 |
---|---|---|
committer | Skip Wonnell <skip@att.com> | 2017-11-01 14:40:17 -0500 |
commit | 380e19d353dada1515d82ad349e053da1958f4cb (patch) | |
tree | fd0e6794683cf1213caba9866170fde2608eed1d /platform-logic/installer/src/main/scripts | |
parent | c36a12027b1d95a402787a20c55a87aea5cebec5 (diff) |
Update initialization of VNF_DG_MAPPING table
Update the data to be loaded into the table
Move source location of the data to the sqlData.dump file
Remove old source location (VNF_DG_MAPPING.sql)
Update install.sh to remove call to VNF_DG_MAPPING.sql
Issue-ID: [APPC-295]
Change-Id: I525fb0f717237388d04989fe49eca3e6498b09ef
Signed-off-by: Skip Wonnell <skip@att.com>
Diffstat (limited to 'platform-logic/installer/src/main/scripts')
-rw-r--r-- | platform-logic/installer/src/main/scripts/install.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/platform-logic/installer/src/main/scripts/install.sh b/platform-logic/installer/src/main/scripts/install.sh index 77052ae..a557711 100644 --- a/platform-logic/installer/src/main/scripts/install.sh +++ b/platform-logic/installer/src/main/scripts/install.sh @@ -45,12 +45,3 @@ do $BASEDIR/bin/svclogic.sh activate $module $rpc $version $mode $BASEDIR/config/svclogic.properties done < <(cat $graphlist) done - -MYSQL_USER=${MYSQL_USER:-sdnctl} -MYSQL_PWD=${MYSQL_PWD:-gamma} -MYSQL_DB=${MYSQL_DB:-sdnctl} -MYSQL_HOST=${MYSQL_HOST:-dbhost} - -mysql --user=${MYSQL_USER} --password=${MYSQL_PWD} --host=${MYSQL_HOST} ${MYSQL_DB} <<-END -SOURCE /opt/openecomp/appc/svclogic/config/VNF_DG_MAPPING.sql -END |