summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2017-10-02Update git submodulesFatih Degirmenci1-0/+0
* Update docs/submodules/releng-xci from branch 'master' - Merge "Update .gitignore for documentation" - Update .gitignore for documentation Change-Id: I39a8b8a874345f90cd60f34ca10422b20f66e32b Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
2017-10-02Update git submodulesJose Lausuch1-0/+0
* Update docs/submodules/releng from branch 'master' - Merge "Keep Docker builds from thrashing on same server" - Keep Docker builds from thrashing on same server There is a possiblity of multiple docker builds of a docker repo being scheduled on the same host: 1) Patch is merged 2) Docker build is triggered 3) New patch is merged before the Docker build/push finishes triggering a second build 4) First build fails as second build starts by cleaning image from first build Reintroducing the check for builds in progress, but specific to the Docker repo, should allow mulitiple Docker builds on a node to run, while keeping multiple builds on a per-repo basis from thrashing each other. JIRA: RELENG-315 Change-Id: I74c01850a036c831b93a8cd5fa8522337abb9ff4 Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
2017-10-02Update git submodulesMarkos Chandras1-0/+0
* Update docs/submodules/releng-xci from branch 'master' - Merge "Add documentation for user guide and sandbox" - Add documentation for user guide and sandbox This change adds the user guide and sandbox information. The documentation is created by using the information we have on Wiki and README.rst. Wiki pages and README.rst will be removed once all the documentation is moved to docs.opnfv.org. Parts of the README.rst such as more advanced ways to use the sandbox will be placed in developer guide and it is accessible by a link placed in user guide. Change-Id: I7214a53d7ab39125d2164c5b3468b1ba18933b31 Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
2017-10-01Update git submodulesMarkos Chandras1-0/+0
* Update docs/submodules/releng-xci from branch 'master' - xci: file: ansible-role-requirements: Bump SHA for rabbitmq-server The rabbitmq-server contains some fixes for SUSE so lets just bump this role instead of switching the entire OSA pin SHA so close to the Euphrates release. Change-Id: Ic034ed4bd9e290cadc5336d781b0e24036d5cd46 Signed-off-by: Markos Chandras <mchandras@suse.de>
2017-10-01Update git submodulesRoss Brattain1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Merge "Fix src/dst ip update in ixia configuration" - Fix src/dst ip update in ixia configuration Change-Id: I03976c182e164a512a5ef48ad20928f27451c3f6 Signed-off-by: Deepak S <deepak.s@linux.intel.com>
2017-10-01Update git submodulesRoss Brattain1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Merge "Adding example testcase to enable multiport support for http" - Adding example testcase to enable multiport support for http Change-Id: I780aa3ea6b04df08baffb5ee5beff66bdc37f37e Signed-off-by: Deepak S <deepak.s@linux.intel.com>
2017-10-01Update git submodulesRoss Brattain1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Merge "NSB: cancel all queue join threads" - NSB: cancel all queue join threads In some cases we are blocking in base.Runner join() because the queues are not empty call cancel_join_thread to prevent the Queue from blocking the Process exit https://docs.python.org/3.3/library/multiprocessing.html#all-platforms Joining processes that use queues Bear in mind that a process that has put items in a queue will wait before terminating until all the buffered items are fed by the "feeder" thread to the underlying pipe. (The child process can call the cancel_join_thread() method of the queue to avoid this behaviour.) This means that whenever you use a queue you need to make sure that all items which have been put on the queue will eventually be removed before the process is joined. Otherwise you cannot be sure that processes which have put items on the queue will terminate. Remember also that non-daemonic processes will be joined automatically. Warning As mentioned above, if a child process has put items on a queue (and it has not used JoinableQueue.cancel_join_thread), then that process will not terminate until all buffered items have been flushed to the pipe. This means that if you try joining that process you may get a deadlock unless you are sure that all items which have been put on the queue have been consumed. Similarly, if the child process is non-daemonic then the parent process may hang on exit when it tries to join all its non-daemonic children. cancel_join_thread() Prevent join_thread() from blocking. In particular, this prevents the background thread from being joined automatically when the process exits – see join_thread(). A better name for this method might be allow_exit_without_flush(). It is likely to cause enqueued data to lost, and you almost certainly will not need to use it. It is really only there if you need the current process to exit immediately without waiting to flush enqueued data to the underlying pipe, and you don’t care about lost data. Change-Id: I61f11a3b01109d96b7a5445c60f1e171401157fc Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
2017-10-01Update git submodulesRoss Brattain1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Merge "code inspection fixes: test_pktgen" - code inspection fixes: test_pktgen Change-Id: I05cb069984b7674924cfcb1ed023048c0aa0c444 Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
2017-10-01Update git submodulesRoss Brattain1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Merge "duration runner: add teardown and cancel all queue join threads" - duration runner: add teardown and cancel all queue join threads calculate timeout once catch exceptions in benchmark.teardown() In some cases we are blocking in base.Runner join() because the queues are not empty call cancel_join_thread to prevent the Queue from blocking the Process exit https://docs.python.org/3.3/library/multiprocessing.html#all-platforms Joining processes that use queues Bear in mind that a process that has put items in a queue will wait before terminating until all the buffered items are fed by the "feeder" thread to the underlying pipe. (The child process can call the cancel_join_thread() method of the queue to avoid this behaviour.) This means that whenever you use a queue you need to make sure that all items which have been put on the queue will eventually be removed before the process is joined. Otherwise you cannot be sure that processes which have put items on the queue will terminate. Remember also that non-daemonic processes will be joined automatically. Warning As mentioned above, if a child process has put items on a queue (and it has not used JoinableQueue.cancel_join_thread), then that process will not terminate until all buffered items have been flushed to the pipe. This means that if you try joining that process you may get a deadlock unless you are sure that all items which have been put on the queue have been consumed. Similarly, if the child process is non-daemonic then the parent process may hang on exit when it tries to join all its non-daemonic children. cancel_join_thread() Prevent join_thread() from blocking. In particular, this prevents the background thread from being joined automatically when the process exits – see join_thread(). A better name for this method might be allow_exit_without_flush(). It is likely to cause enqueued data to lost, and you almost certainly will not need to use it. It is really only there if you need the current process to exit immediately without waiting to flush enqueued data to the underlying pipe, and you don’t care about lost data. Change-Id: If7b904a060b9ed68b7def78c851deefca4e0de5d Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
2017-10-01Update git submodulesRoss Brattain1-0/+0
* Update docs/submodules/yardstick from branch 'master' - cancel all queue join threads In some cases we are blocking in base.Runner join() because the queues are not empty call cancel_join_thread to prevent the Queue from blocking the Process exit https://docs.python.org/3.3/library/multiprocessing.html#all-platforms Joining processes that use queues Bear in mind that a process that has put items in a queue will wait before terminating until all the buffered items are fed by the "feeder" thread to the underlying pipe. (The child process can call the cancel_join_thread() method of the queue to avoid this behaviour.) This means that whenever you use a queue you need to make sure that all items which have been put on the queue will eventually be removed before the process is joined. Otherwise you cannot be sure that processes which have put items on the queue will terminate. Remember also that non-daemonic processes will be joined automatically. Warning As mentioned above, if a child process has put items on a queue (and it has not used JoinableQueue.cancel_join_thread), then that process will not terminate until all buffered items have been flushed to the pipe. This means that if you try joining that process you may get a deadlock unless you are sure that all items which have been put on the queue have been consumed. Similarly, if the child process is non-daemonic then the parent process may hang on exit when it tries to join all its non-daemonic children. cancel_join_thread() Prevent join_thread() from blocking. In particular, this prevents the background thread from being joined automatically when the process exits – see join_thread(). A better name for this method might be allow_exit_without_flush(). It is likely to cause enqueued data to lost, and you almost certainly will not need to use it. It is really only there if you need the current process to exit immediately without waiting to flush enqueued data to the underlying pipe, and you don’t care about lost data. Change-Id: I345c722a752bddf9f0824a11cdf52ae9f04669af Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
2017-10-01Update git submodulesMorgan Richomme1-0/+0
* Update docs/submodules/functest from branch 'master' - Merge "remove icmp rules from secgroups" - remove icmp rules from secgroups Change-Id: I8f7d2170eee9777be6455d38eaff703338b155fa Signed-off-by: Michael Pauls <michael.pauls@fokus.fraunhofer.de>
2017-10-01Update git submodulesJack Morgan1-0/+0
* Update docs/submodules/pharos from branch 'master' - Merge "PDF: generate_config: Add IDF parsing support" - PDF: generate_config: Add IDF parsing support For a given 'podN.yaml' file, check whether a file named 'idf-podN.yaml' exists in the same directory, and if it does, pass its contents under the 'idf' dict key to the j2 template. This assumes the contents of IDF yaml have a root 'idf' key. Change-Id: I6c6f1b9f28c38989f8a6ed4a389c9a1da423d76d Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
2017-10-01Update git submodulesCédric Ollivier1-0/+0
* Update docs/submodules/functest from branch 'master' - Remove tempest_custom from testcases configs Change-Id: I1237eaada5257a8c01753837a5820d840b51bff1 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
2017-09-30Update git submodulesIlia Abashin1-0/+0
* Update docs/submodules/releng from branch 'master' - Added "calipso" scenario to apex.yml Change-Id: I1e4237fd9716e92eec7633006c54240284f312c6 Signed-off-by: Ilia Abashin <abashinos@gmail.com>
2017-09-30Update git submodulesBin Hu1-0/+0
* Update docs/submodules/ipv6 from branch 'master' - Update Release Notes for Baseline Change-Id: Ic58171a5216de99aab9d6feb73bc436493276117 Signed-off-by: Bin Hu <bh526r@att.com>
2017-09-30Update git submodulesAkhil Batra1-0/+0
* Update docs/submodules/qtip from branch 'master' - Merge "Nomination of committer promotion for Akhil Batra" - Nomination of committer promotion for Akhil Batra Akhil is one of the active QTIP contributors in Euphrates release[1] He has contributed a lot in qtip-api and qtip-web[2]. It would be a great help to the project to have him as a committer. Current committers please vote +1/-1 for this nomination[3] [1] http://stackalytics.com/?project_type=opnfv-group&metric=commits&module=qtip&release=pike [2] https://git.opnfv.org/cgit/qtip/log/?qt=author&q=akhil.batra@research.iiit.ac.in [3] https://wiki.opnfv.org/display/DEV/Committer+Promotions Change-Id: I1157d6ed2ee1694c184c8f9630a66a2b4266b038 Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
2017-09-30Update git submodulesFeng Pan1-0/+0
* Update docs/submodules/apex from branch 'master' - Merge "Adds Calipso scenario" - Adds Calipso scenario Change-Id: Icc8a23e49c9ccc011481f6b97599d4f75873ebb1 Signed-off-by: Tim Rozet <trozet@redhat.com>
2017-09-30Update git submodulesLinda Wang1-0/+0
* Update docs/submodules/functest from branch 'master' - Fix userdata issue for vping and orchestra 1. When creating VM, the type of the param userdata should be str, to conform with that in snaps [1]. 2. Remove the infinite loop for vping in userdata 3. Fix the criteria for vping_userdata and vping_ssh [1]: https://git.opnfv.org/snaps/tree/snaps/openstack/utils/nova_utils.py#n92 Change-Id: I262a7ebb93ec90bb6f8f3acb5d564f210abcfc4b Signed-off-by: Linda Wang <wangwulin@huawei.com>
2017-09-30Update git submodulesLorand Jakab1-0/+0
* Update docs/submodules/fds from branch 'master' - LISP specific DVR documentation Change-Id: I4d8807f104c4aab923a68d0ae401bf580b663159 Signed-off-by: Lorand Jakab <lojakab@cisco.com>
2017-09-30Update git submodulesJustin chi1-0/+0
* Update docs/submodules/compass4nfv from branch 'master' - Merge "Add default value for offline deploy switch" - Add default value for offline deploy switch JIRA: COMPASS-563 The switch controls offline deploy missing default value which cause passing a empty value into ansible and lead to condition check error Change-Id: I0af4df0556dcbe30dacc743456728e8bdee698e8 Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
2017-09-30Update git submodulesYujun Zhang1-0/+0
* Update docs/submodules/qtip from branch 'master' - Merge "Download ramspeed from new url" - Download ramspeed from new url The original one has expired Change-Id: I0e362daf0308c5f0915bf1f652f3ab7d14373e91 Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
2017-09-30Update git submodulesYujun Zhang1-0/+0
* Update docs/submodules/qtip from branch 'master' - Merge "Revert "Enable test result pushing in periodic job"" - Revert "Enable test result pushing in periodic job" This reverts commit 90ff55b51817c23d5070765435c69b585bd184fd. Change-Id: I4dccc70869956e1f852230bc867538a5365903dd Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
2017-09-30Update git submodulesRoss Brattain1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Merge "dpdk: pciutils and lspci is required for dpdk-devbind.py" - dpdk: pciutils and lspci is required for dpdk-devbind.py Change-Id: I8529f33d849fc659b557e1d19761c0765ebda57e Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
2017-09-30Update git submodulesRoss Brattain1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Merge "replace ansible modules" - replace ansible modules Change-Id: Ia7c1ce781075142910a6c618a9a23f34a710dfe9 Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
2017-09-30Update git submodulesRoss Brattain1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Merge "Adapt getting the image architecture to mcp" - Adapt getting the image architecture to mcp The part which gets the image architecture still uses the old fuel command. Adapted the script to use the mcp command. JIRA: ARMBAND-285 Change-Id: Iddce77c3a856ea11f9994861151db89a402e735e Signed-off-by: Cristina Pauna <cristina.pauna@enea.com>
2017-09-30Update git submodulesJing Lu1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Merge "bugfix: tc054 default value is wrong" - bugfix: tc054 default value is wrong management route ip is not common in most SUTs, so it should be removed. also huawei pod1 ipmi info should updated so this test case can be added into ci later Change-Id: I3a29c59c473ee7087d4d61753ffc955b061571fb Signed-off-by: rexlee8776 <limingjiang@huawei.com>
2017-09-30Update git submoduleshongbo tian1-0/+0
* Update docs/submodules/dovetail from branch 'master' - Merge "Update user guide with the local DB operations" - Update user guide with the local DB operations If users want to store results or upload results to CVP web portal, they need to build local DB adn testapi service. Should add more introduction about the local DB and testapi in the user guide. JIRA: DOVETAIL-504 Change-Id: I6493169b54104af8d7207d28fad93afedeae0b1b Signed-off-by: xudan <xudan16@huawei.com>
2017-09-30Update git submodulesSerena Feng1-0/+0
* Update docs/submodules/releng from branch 'master' - Merge changes from topic 'qtip' * changes: Fix status reporting page Specify TESTAPI_URL in releng jobs - Fix status reporting page - use data in last 10 days instead of 1 day - hide installers without any data - remove redundant qtip reporting Change-Id: If73a439572b6a1cf09c7d34f643fb14be82196ca Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn> - Specify TESTAPI_URL in releng jobs Change-Id: Ied35e58137fb8040779fe038626facd684a935dd Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
2017-09-30Update git submodulesSerena Feng1-0/+0
* Update docs/submodules/releng from branch 'master' - Merge "Add timeout and timestamp for long duration tasks" - Add timeout and timestamp for long duration tasks Change-Id: Ib4b07e23a81718e759ed43ff7fa2882735804afc Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
2017-09-30Update git submodulesYifei Xue1-0/+0
* Update docs/submodules/compass4nfv from branch 'master' - SFC scenario release notes and bug fix for SFC switch JIRA: COMPASS-562 Because of the inventory file modification, the sfc switch cannot be enabled. Add a sperate sfc role to fix this bug. Change-Id: If583d10ebbe78d0abe9078add24beb5f506dbda8 Signed-off-by: Yifei Xue <xueyifei@huawei.com>
2017-09-30Update git submodulesJun Li1-0/+0
* Update docs/submodules/releng from branch 'master' - Merge "[Yardstick]Enable using the CACERT file in all compass branches" - [Yardstick]Enable using the CACERT file in all compass branches Change-Id: Ia699a23d292ea2c18f309022352f83a22041626a Signed-off-by: JingLu5 <lvjing5@huawei.com>
2017-09-30Update git submodulesJing Lu1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Merge "Remove checkno.png and checkyes.png due to license issue" - Remove checkno.png and checkyes.png due to license issue JIRA: YARDSTICK-817 Since checkno.png and checkyes.png is not Apache-2 license based. so we need to remove them. Change-Id: I40dd303fb54a3736ca969ac1c186d2cd23408436 Signed-off-by: chenjiankun <chenjiankun1@huawei.com>
2017-09-30Update git submodulesYujun Zhang1-0/+0
* Update docs/submodules/qtip from branch 'master' - Fix criteria data It does not make sense to use current score as criteria. Set to 2048 for now. Although the baseline is not well calibrated, it is better than given a floating criteria. Change-Id: Iae972b585422cdde95f8b7027081c56cc9608643 Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
2017-09-30Update git submodulesSerena Feng1-0/+0
* Update docs/submodules/releng from branch 'master' - Merge "Move daisy jobs of master branch to zte-pod3" - Move daisy jobs of master branch to zte-pod3 Zte-pod2 is a little busy. Change-Id: I7628a1a966552c5caf1706a2ac8c47952a11c095 Signed-off-by: Alex Yang <yangyang1@zte.com.cn>
2017-09-30Update git submodulesSerena Feng1-0/+0
* Update docs/submodules/releng from branch 'master' - Merge "Enable Daisy Euphrates merge jobs" - Enable Daisy Euphrates merge jobs Change-Id: Iaa278fa1d0aa3faa8735bc45159031d04d997a6f Signed-off-by: Alex Yang <yangyang1@zte.com.cn>
2017-09-30Update git submodulesSerena Feng1-0/+0
* Update docs/submodules/releng from branch 'master' - Merge "Modify the timed trigger on zte-pod1" - Modify the timed trigger on zte-pod1 - disable timed trigger for danube job - enable timed trigger for master job Change-Id: I89ec92b368cc0e37ba1be5c49c12feda93dec33c Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
2017-09-30Update git submodulesTim Rozet1-0/+0
* Update docs/submodules/apex from branch 'master' - Fixes nova migration Nova migration was failing in rally sanity test. Looking at the keys nova is configured with, the newlines in the private key were being converted to spaces in hieradata, thus making the key invalid. This patch corrects the yaml so it is multiline data. Also, corrects the parameter being set to the right THT parameter and adds sshd service to the control/compute roles which is required for migration to work. JIRA: APEX-525 Change-Id: Ic57db5c0b27df2e1f584f3c1a379e067291d892d Signed-off-by: Tim Rozet <trozet@redhat.com>
2017-09-30Update git submodulesYujun Zhang1-0/+0
* Update docs/submodules/qtip from branch 'master' - Merge "Disable tty in CI scripts to remove color in ansible output" - Disable tty in CI scripts to remove color in ansible output This will make the console log more readable Change-Id: Ia577d243d52449f580d34002e2052fa024e0f20d Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
2017-09-30Update git submodulesBertrand Souville1-0/+0
* Update docs/submodules/promise from branch 'master' - Added support for Keystone v3 JIRA: PROMISE-80 Functest test script only Change-Id: Id5d75383586d4e79d106767b1aeb7dc5bc588724 Signed-off-by: Bertrand Souville <souville@docomolab-euro.com>
2017-09-30Update git submodulesDeepak S1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Auto create ixia config based on the traffic profile Change-Id: I031cc7f24f0c0816eb577a4d1606a714f68a5f83 Signed-off-by: Deepak S <deepak.s@linux.intel.com> Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
2017-09-29Update git submodulesRoss Brattain1-0/+0
* Update docs/submodules/yardstick from branch 'master' - Merge "NSB: ignore VNF node if there is no VNF model" - NSB: ignore VNF node if there is no VNF model Change-Id: I571289c744441a6114c6d45ac6cbd7cfc0dafef2 Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
2017-09-29Update git submodulesTim Rozet1-0/+0
* Update docs/submodules/apex from branch 'master' - Merge "Increase overcloud qcow2 size by 1500mb" - Increase overcloud qcow2 size by 1500mb We are seeing build failures with 1200mb qcow2 size expansion, increasing to 1500mb. Change-Id: Ib177525559c7905c78fe5931c172fce01846b4c3 Signed-off-by: Feng Pan <fpan@redhat.com>
2017-09-29Update git submodulesSharada Shiddibhavi1-0/+0
* Update docs/submodules/barometer from branch 'master' - Changing directory in CSV testcases for Barometer This patch contains modifications to the path for CSV directories Change-Id: Ia74a6aba47fc51d0d8783df34eebcfc94e3f011d Signed-off-by: Sharada Shiddibhavi <sharada.shiddibhavi@intel.com>
2017-09-29Update git submodulesAric Gardner1-0/+0
* Update docs/submodules/releng from branch 'master' - Merge "Add mcp.rsa in the yardstick container for fuel" - Add mcp.rsa in the yardstick container for fuel For Fuel, the mcp.rsa key is needed in the container to be able to connect to the POD nodes. The key is set in the global installer parameters and passed to the container. Also the SSH_KEY enviroment variable is set with the path of the key. Change-Id: I1888414abc9f6c2d8ac741f2d6f04f5e7a37912b Signed-off-by: Cristina Pauna <cristina.pauna@enea.com>
2017-09-29Update git submodulesManuel Buil1-0/+0
* Update docs/submodules/sfc from branch 'master' - Sort config.yml correctly and correct vnfd names JIRA: SFC-116 It is confusing that our test-1 is in the second position of config.yaml and that it uses test2-vnfd instead of test-vnfd Change-Id: Iffd22f295630bce0ce854d4876c1478c56690cfa Signed-off-by: Manuel Buil <mbuil@suse.com>
2017-09-29Update git submodulestomsou1-0/+0
* Update docs/submodules/apex from branch 'master' - Update zrpcd version for Carbon/ Nitrogen JIRA: APEX-508 Compile zrpcd --with-thrift-version=4 to support carbon/nitrogen Note that version number stands for the thrift vpnservice.thrift model to use with ODL and not the thrift package version. Change-Id: I3ab13d0b62f56747249bfdee1c0766cd43de935a Signed-off-by: tomsou <soth@intracom-telecom.com>
2017-09-29Update git submodulesMarkos Chandras1-0/+0
* Update docs/submodules/releng-xci from branch 'master' - Merge "Check if /etc/ssl/certs exists before creating it" - Check if /etc/ssl/certs exists before creating it In CentOS and Suse, /etc/ssl/certs is a symbolic link to /etc/ssl/pki/tls/certs. The Ansible module "file" will fail if it is asked to create a directory which is already a symbolic link. This patch will check if /etc/ssl/certs exists before trying to create it. The same check is done both on the host and the opnfv guest VM. Also, /etc/certs is only writable by root, so we need a "become: true" clause to be able to modify it in localhost (but not in opnvf VM). Change-Id: Iab6c3c162548f84ad6082829e4a7c2ab63d2cfa0 Signed-off-by: Tapio Tallgren <tapio.tallgren@nokia.com>
2017-09-29Update git submodulesJose Lausuch1-0/+0
* Update docs/submodules/releng from branch 'master' - Merge "[Functest] Remove former way to execute run_tests" - [Functest] Remove former way to execute run_tests It was used in Danube and there are no more Functest jobs that are runnign stable/danube branch. Change-Id: If297487767e8e8ead39aa4a10f58c6554be197b0 Signed-off-by: Jose Lausuch <jalausuch@suse.com>
2017-09-29Update git submodulesJun Li1-0/+0
* Update docs/submodules/releng from branch 'master' - Merge "Use dovetail docker image opnfv/dovetail:cvp.0.7.0" - Use dovetail docker image opnfv/dovetail:cvp.0.7.0 Change-Id: I45c7e637182ecb8d73a51fea895a4eefc6a1a0e6 Signed-off-by: xudan <xudan16@huawei.com>
2017-09-29Update git submodulesJose Lausuch1-0/+0
* Update docs/submodules/releng from branch 'master' - [Functest] Remove former way to execute prepare_env It was used in Danube and there are no more Functest jobs that are runnign stable/danube branch. Change-Id: I8e8b1f769b76ad511af6086b7a21dd9ae94404f0 Signed-off-by: Jose Lausuch <jalausuch@suse.com>