Commit 332f7112 authored by Simon Cornet's avatar Simon Cornet
Browse files

style: add missing quotes

parent 0ba18a51
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
  ansible.builtin.template:
    src: "dns/resolv.conf.j2"
    dest: "/etc/resolv.conf"
    owner: root
    group: root
    owner: "root"
    group: "root"
    mode: "0644"
  when: ansible_facts['distribution'] in ['Alpine', 'Debian']
  when: "ansible_facts['distribution'] in ['Alpine', 'Debian']"