Eduardo Olivares 9dfaabe613 Fix tox-linters job
Change-Id: Iacaa24d6b40dae62dd79e3c02a389022f0d097d5
2023-01-24 12:31:01 +01:00

38 lines
1.0 KiB
YAML

---
- delegate_to: localhost
block:
- name: ensure '{{ tobiko_ssh_config_path | dirname }}' exists
file:
path: '{{ tobiko_ssh_config_path | dirname }}'
state: directory
- name: get ssh_config content'
shell:
cmd: vagrant ssh-config
chdir: '{{ devstack_plugin_tobiko_src_dir }}'
register: get_ssh_config
changed_when: false
- debug: var=get_ssh_config
- name: write ssh_config to file '{{ tobiko_ssh_config_path }}'
copy:
content: |
{{ get_ssh_config.stdout }}
dest: '{{ tobiko_ssh_config_path }}'
- name: write ssh_config file path to {{ tobiko_config_path }}
ini_file:
path: '{{ tobiko_config_path }}'
section: ssh
option: config_files
value: '{{ tobiko_ssh_config_path }}'
- name: write SSH proxy jump host to {{ tobiko_config_path }}
ini_file:
path: '{{ tobiko_config_path }}'
section: ssh
option: proxy_jump
value: devstack-primary