Fix variable name
This commit is contained in:
parent
2e76b13610
commit
d7222d3897
1 changed files with 2 additions and 2 deletions
|
@ -6,13 +6,13 @@
|
||||||
|
|
||||||
- name: "SSH | Ensure configuration file is present"
|
- name: "SSH | Ensure configuration file is present"
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ ssh_config_name }}"
|
path: "{{ ssh_config_path }}"
|
||||||
state: touch
|
state: touch
|
||||||
mode: "644"
|
mode: "644"
|
||||||
|
|
||||||
- name: "SSH | Insert borgbase configuration"
|
- name: "SSH | Insert borgbase configuration"
|
||||||
ansible.builtin.blockinfile:
|
ansible.builtin.blockinfile:
|
||||||
path: "{{ ssh_config_name }}"
|
path: "{{ ssh_config_path }}"
|
||||||
marker: "### {mark} ANSIBLE MANAGED BLOCK"
|
marker: "### {mark} ANSIBLE MANAGED BLOCK"
|
||||||
block: |
|
block: |
|
||||||
Host *.repo.borgbase.com
|
Host *.repo.borgbase.com
|
||||||
|
|
Loading…
Reference in a new issue