conflict resolution after concurrent edits
This commit is contained in:
commit
e530b3dba2
9 changed files with 11 additions and 11 deletions
|
@ -13,9 +13,9 @@
|
||||||
#- debug: var=f_ssh_keyfile
|
#- debug: var=f_ssh_keyfile
|
||||||
|
|
||||||
- name: include either gate ...
|
- name: include either gate ...
|
||||||
include: mwu-m-fastd-com-g.yml
|
include: fastd-gate.yml
|
||||||
when: fastd_config == 'gate'
|
when: fastd_config == 'gate'
|
||||||
|
|
||||||
- name: ... or meshing-only style
|
- name: ... or meshing-only style
|
||||||
include: mwu-m-fastd-com-o.yml
|
include: fastd-meshonly.yml
|
||||||
when: fastd_config == 'meshing-only'
|
when: fastd_config == 'meshing-only'
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# this file included by mwu-m-fastd-com.yml, which is included in a loop,
|
# this file included by fastd-community.yml, which is included in a loop,
|
||||||
# called seperately for each community
|
# called seperately for each community
|
||||||
# => configure fastd for one community here
|
# => configure fastd for one community here
|
||||||
# hash describing community expected as "mf_com"; also expected: "f_ssh_keyfile"
|
# hash describing community expected as "mf_com"; also expected: "f_ssh_keyfile"
|
||||||
|
@ -12,4 +12,4 @@
|
||||||
mf_com_repo: "/etc/fastd/{{mf_com.abbreviation}}VPN/peers"
|
mf_com_repo: "/etc/fastd/{{mf_com.abbreviation}}VPN/peers"
|
||||||
mf_com_templ: "fastd.conf-gate"
|
mf_com_templ: "fastd.conf-gate"
|
||||||
|
|
||||||
- include: mwu-m-fastd-com-r.yml
|
- include: fastd-config.yml
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
# this file included by mwu-m-fastd-com.yml, which is included in a loop,
|
# this file included by fastd-community.yml, which is included in a loop,
|
||||||
# called seperately for each community
|
# called seperately for each community
|
||||||
# => configure fastd for one community here
|
# => configure fastd for one community here
|
||||||
# hash describing community expected as "mf_com"; also expected: "f_ssh_keyfile"
|
# hash describing community expected as "mf_com"; also expected: "f_ssh_keyfile"
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
mf_com_repo: "{{tmpdir.stdout}}"
|
mf_com_repo: "{{tmpdir.stdout}}"
|
||||||
mf_com_templ: "fastd.conf-meshing"
|
mf_com_templ: "fastd.conf-meshing"
|
||||||
|
|
||||||
- include: mwu-m-fastd-com-r.yml
|
- include: fastd-config.yml
|
||||||
|
|
||||||
- name: git add new public key
|
- name: git add new public key
|
||||||
command: git add servers
|
command: git add servers
|
|
@ -10,7 +10,7 @@
|
||||||
changed_when: False
|
changed_when: False
|
||||||
|
|
||||||
# configure communtity, one by one
|
# configure communtity, one by one
|
||||||
- include: mwu-m-fastd-com.yml mf_com={{mwu_mf_item.value}}
|
- include: fastd-community.yml mf_com={{mwu_mf_item.value}}
|
||||||
with_dict: "{{community_params}}"
|
with_dict: "{{community_params}}"
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: mwu_mf_item
|
loop_var: mwu_mf_item
|
|
@ -9,13 +9,13 @@
|
||||||
|
|
||||||
- block:
|
- block:
|
||||||
# arp and python packages
|
# arp and python packages
|
||||||
- include: mwu-m-pkgs.yml
|
- include: packages.yml
|
||||||
|
|
||||||
# backend scripts
|
# backend scripts
|
||||||
- include: mwu-m-bes.yml
|
- include: backend-scripts.yml
|
||||||
|
|
||||||
# fastd
|
# fastd
|
||||||
- include: mwu-m-fastd.yml
|
- include: fastd.yml
|
||||||
|
|
||||||
when: (ansible_managed_meshing is defined) and (ansible_managed_meshing)
|
when: (ansible_managed_meshing is defined) and (ansible_managed_meshing)
|
||||||
# end block
|
# end block
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
- include: mwu-m-repos.yml
|
- include: repos.yml
|
||||||
|
|
||||||
- name: ensure mandatory packages
|
- name: ensure mandatory packages
|
||||||
apt:
|
apt:
|
Loading…
Reference in a new issue