mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-24 22:46:06 -03:30
Fix typo in variable name: ssh_bastion_confing__name -> ssh_bastion_config_name (#13046)
This commit is contained in:
committed by
GitHub
parent
d80983875c
commit
ba55ece670
@@ -1,2 +1,2 @@
|
||||
---
|
||||
ssh_bastion_confing__name: ssh-bastion.conf
|
||||
ssh_bastion_config_name: ssh-bastion.conf
|
||||
|
||||
@@ -8,8 +8,8 @@
|
||||
tasks:
|
||||
- name: Copy config to remote host
|
||||
copy:
|
||||
src: "{{ playbook_dir }}/{{ ssh_bastion_confing__name }}"
|
||||
dest: "{{ ssh_bastion_confing__name }}"
|
||||
src: "{{ playbook_dir }}/{{ ssh_bastion_config_name }}"
|
||||
dest: "{{ ssh_bastion_config_name }}"
|
||||
owner: "{{ ansible_user }}"
|
||||
group: "{{ ansible_user }}"
|
||||
mode: "0644"
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
delegate_to: localhost
|
||||
connection: local
|
||||
template:
|
||||
src: "{{ ssh_bastion_confing__name }}.j2"
|
||||
dest: "{{ playbook_dir }}/{{ ssh_bastion_confing__name }}"
|
||||
src: "{{ ssh_bastion_config_name }}.j2"
|
||||
dest: "{{ playbook_dir }}/{{ ssh_bastion_config_name }}"
|
||||
mode: "0640"
|
||||
|
||||
Reference in New Issue
Block a user