Merge "Reload SSH connection before running container image prepare"

This commit is contained in:
Zuul 2018-01-10 07:16:55 +00:00 committed by Gerrit Code Review
commit 0f37163303
3 changed files with 9 additions and 6 deletions

View File

@ -1,10 +1,5 @@
---
- name: Kill SSH
shell: sleep 1; pkill -u {{ ansible_ssh_user }} sshd
async: 3
poll: 2
tags: reload_ssh
when: not tripleo_ci
- include: kill_ssh.yaml
- name: download container images
shell: "bash {{ container_images_download_script }}"

View File

@ -1,3 +1,5 @@
---
- include: kill_ssh.yaml
- name: create local registry environment file
shell: "bash {{ local_docker_registry_env_script }}"

View File

@ -0,0 +1,6 @@
- name: Kill SSH
shell: sleep 1; pkill -u {{ ansible_ssh_user }} sshd
async: 3
poll: 2
tags: reload_ssh
when: not tripleo_ci