Browse Source

Replace semicolons by commas in options (#9840)

pull/9781/head
Mykola Ulianytskyi (Nikolay Ulyanitsky) 1 year ago
committed by GitHub
parent
commit
27c2d7e9e2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/kubernetes/preinstall/tasks/0063-networkmanager-dns.yml

2
roles/kubernetes/preinstall/tasks/0063-networkmanager-dns.yml

@ -29,7 +29,7 @@
path: /etc/NetworkManager/conf.d/dns.conf
section: global-dns
option: options
value: "ndots:{{ ndots }};timeout:{{ dns_timeout|default('2') }};attempts:{{ dns_attempts|default('2') }};"
value: "ndots:{{ ndots }},timeout:{{ dns_timeout|default('2') }},attempts:{{ dns_attempts|default('2') }}"
mode: '0600'
backup: yes
notify: Preinstall | update resolvconf for networkmanager
Loading…
Cancel
Save