You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ni...@apache.org on 2021/04/30 07:13:23 UTC

[ignite] branch ignite-ducktape updated: IGNITE-14520 fix SSL certs generation

This is an automated email from the ASF dual-hosted git repository.

nizhikov pushed a commit to branch ignite-ducktape
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/ignite-ducktape by this push:
     new f23241b  IGNITE-14520 fix SSL certs generation
f23241b is described below

commit f23241bff74915c9d52b744d43748bb8dc0fce6f
Author: Nikolay <ni...@apache.org>
AuthorDate: Fri Apr 30 10:12:53 2021 +0300

    IGNITE-14520 fix SSL certs generation
---
 modules/ducktests/tests/ignitetest/services/utils/ignite_spec.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/modules/ducktests/tests/ignitetest/services/utils/ignite_spec.py b/modules/ducktests/tests/ignitetest/services/utils/ignite_spec.py
index c4ac4b0..292bb5e 100644
--- a/modules/ducktests/tests/ignitetest/services/utils/ignite_spec.py
+++ b/modules/ducktests/tests/ignitetest/services/utils/ignite_spec.py
@@ -186,7 +186,9 @@ class IgniteSpec(metaclass=ABCMeta):
 
         script_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", "..", "..", "certs")
 
-        self._runcmd(f"{script_dir}/mkcerts.sh {local_dir}")
+        self._runcmd(f"cp {script_dir}/* {local_dir}")
+        self._runcmd(f"chmod a+x {local_dir}/*.sh")
+        self._runcmd(f"{local_dir}/mkcerts.sh")
 
         return local_dir