diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2021-06-10 06:41:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2021-06-10 06:41:22 +0000 |
commit | 78d65f8c36d3ccaf6a0e940b10ff87a8fedf51bd (patch) | |
tree | f35a08d7871908e76de1a1c4ac48c21760e04541 | |
parent | 03da9f28e277d9ea63ec419f54568579c3351ec3 (diff) | |
parent | e69631d423aa3277a221064c2d2c69c29e4546ed (diff) |
Merge "Add 2 missing sudo calls"
-rw-r--r-- | jjb/functest/xtestingci.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/functest/xtestingci.yaml b/jjb/functest/xtestingci.yaml index f29b06b67..e7da589a2 100644 --- a/jjb/functest/xtestingci.yaml +++ b/jjb/functest/xtestingci.yaml @@ -8,8 +8,8 @@ chmod +x ./kind sudo mv ./kind /usr/local/bin/kind kind delete clusters xtesting - sudo docker ps -aq |xargs docker stop - sudo docker ps -aq |xargs docker rm + sudo docker ps -aq |xargs sudo docker stop + sudo docker ps -aq |xargs sudo docker rm sudo rm -rf /data/* sudo pip3 install ansible ansible-galaxy install -f collivier.xtesting |