Commit e60b51e4 authored by nanahira's avatar nanahira

fix bug self-link

parent 5b69379d
...@@ -97,6 +97,17 @@ ...@@ -97,6 +97,17 @@
with_items: '{{ connections }}' with_items: '{{ connections }}'
when: "not noUpdateLinks and (not onlyUpdateLink or item.name == onlyUpdateLink) and item.protocol != 'null'" when: "not noUpdateLinks and (not onlyUpdateLink or item.name == onlyUpdateLink) and item.protocol != 'null'"
# end # end
- name: disable bug self-link
become: true
ignore_errors: true
systemd:
name: 'wg-quick@{{item}}'
state: stopped
enabled: false
masked: true
with_items:
- mc-{{inventory_hostname_short}}
- mci{{inventory_hostname_short}}
- name: services conf - name: services conf
copy: copy:
content: '{{dockerServices | to_yaml}}' content: '{{dockerServices | to_yaml}}'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment