summaryrefslogtreecommitdiffstats
path: root/deliveries/src
AgeCommit message (Expand)AuthorFilesLines
2018-12-24Logging improvementskurczews2-3/+81
2018-12-04Add simulator to docker-compose.ymlkurczews1-5/+14
2018-12-04Merge "Change template properties for AAI"Ofir Sonsino2-4/+2
2018-11-14Change template properties for AAIbiniek2-4/+2
2018-11-05Move logback config from WARkurczews5-7/+721
2018-10-18Update portal.properties configurationSonsino, Ofir (os0695)1-0/+1
2018-10-05Added missing prefixWojciech Sliwka1-1/+1
2018-09-19Improve localize scriptskurczews9-32/+37
2018-09-12Remove docker volume with sql schemaskurczews2-8/+0
2018-09-10Use correct trust storeJakub Zieba3-4/+6
2018-08-29VID Internal HTTPSPiotr Darosz2-2/+26
2018-08-22Fix missing table when running dockerkurczews1-1/+1
2018-08-06Improve docker installationkurczews1-13/+25
2018-04-17Memory usage growing fixSonsino, Ofir (os0695)2-2/+1
2018-04-17Memory usage growing fixSonsino, Ofir (os0695)1-0/+2
2018-04-17Update SDC Model namespaceSonsino, Ofir (os0695)1-1/+1
2018-04-10Update DockerfileSonsino, Ofir (os0695)1-8/+8
2018-04-09Update DockerfileSonsino, Ofir (os0695)1-4/+4
2018-01-31org.onap migrationOfir Sonsino1-1/+1
2017-08-09[VID] fixing system properties templateAmichai Hemli1-0/+4
2017-07-22add missing information to see VID in PortalKrzysztof Kwiecien2-2/+6
2017-07-21 change VID_UEB_URL_LIST from VM name based toKrzysztof Kwiecien1-1/+1
2017-05-08[VID-6] Strip carriage returns from scriptsjimmydot9-198/+198
2017-05-07[VID-6] Initial rebase pushjimmydot12-315/+317
2017-03-07[OS-144] Changing default ASDC hostJimmy Forsyth1-1/+1
2017-02-17[OS-144] Changing pom per msoJimmy Forsyth1-2/+2
2017-02-07actually adding the files to the initial commitDR695H12-0/+315
"ginstall install" install_dirs="/usr/bin /usr/local/bin /bin /sbin $bin_dirs" install_prog=NO install_found=NO for i in $install_names; do for j in $install_dirs; do if test -x "$j/$i"; then if test -n "`$j/$i --version 2>/dev/null | grep utils`"; then install_found=YES install_prog="$j/$i" break 2 fi fi done done f_insttool="$install_prog" fi if test "$f_insttool" = NO; then if test "$install_found" = YES; then echo "GNU version of install is required!" else echo "not found!"; fi echo exit 2 fi echo "using $f_insttool"; # ---------------------------------------------------------- cat > .makeconfig <<EOF RM = rm -f VERSION = `cat VERSION` INSTALL = $f_prefix INSTTOOL = $f_insttool DOXYDOCS = .. export TMAKEPATH EOF for i in Makefile.in ; do SRC=$i DST=`echo $i|sed 's%\(.*\).in$%\1%'` TIME=`date` cat > $DST <<EOF # # This file was generated from `basename $i` on $TIME # EOF cat .makeconfig $SRC >> $DST echo " Created $DST from $SRC..." done