diff options
author | Derek Higgins <derekh@redhat.com> | 2018-09-25 10:31:30 +0100 |
---|---|---|
committer | Derek Higgins <derekh@redhat.com> | 2018-11-19 16:30:45 +0000 |
commit | c67b46e3507bf3ca916437b0e7f50521d70f6b02 (patch) | |
tree | bedd12626b0db0ea353c3e665e6d31a779610173 /playbooks/ci-workarounds | |
parent | 8bf0d866ae9bdb1cae8a9d8dd4f41dd88b52122e (diff) | |
download | ironic-c67b46e3507bf3ca916437b0e7f50521d70f6b02.tar.gz |
Switch ironic-tempest-...-tinyipa-multinode to zuulv3
And rename to ironic-tempest-dsvm-ipa-wholedisk-direct-tinyipa-multinode
Change-Id: I6ab7bfa0343e0c8df5814d26e62864f3c66cf7b1
Diffstat (limited to 'playbooks/ci-workarounds')
-rw-r--r-- | playbooks/ci-workarounds/set-stack-key.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/playbooks/ci-workarounds/set-stack-key.yaml b/playbooks/ci-workarounds/set-stack-key.yaml new file mode 100644 index 000000000..d2882a442 --- /dev/null +++ b/playbooks/ci-workarounds/set-stack-key.yaml @@ -0,0 +1,13 @@ +- hosts: all + name: Copy ssh keys from too ~stack + tasks: + - shell: + cmd: | + set -e + set -x + + sudo mkdir -p ~stack/.ssh + sudo cp ~root/.ssh/id_rsa.pub ~root/.ssh/id_rsa ~stack/.ssh + sudo chmod 700 ~stack/.ssh + sudo chown -R stack ~stack + executable: /bin/bash |