Stop adding lines multiple times

This commit is contained in:
Anthony Rose 2021-05-25 22:47:24 +01:00
parent 6c22cfb726
commit 29408ed21d

View file

@ -51,10 +51,12 @@
become: true become: true
ansible.builtin.lineinfile: ansible.builtin.lineinfile:
path: /etc/apt/apt.conf.d/10periodic path: /etc/apt/apt.conf.d/10periodic
regex: "APT::Periodic::Update-Package-Lists "
line: "APT::Periodic::Update-Package-Lists \"1\";" line: "APT::Periodic::Update-Package-Lists \"1\";"
create: yes create: yes
- name: Enable automatic install of updates - name: Enable automatic install of updates
become: true become: true
ansible.builtin.lineinfile: ansible.builtin.lineinfile:
path: /etc/apt/apt.conf.d/10periodic path: /etc/apt/apt.conf.d/10periodic
regex: "APT::Periodic::Unattended-Upgrade "
line: "APT::Periodic::Unattended-Upgrade \"1\";" line: "APT::Periodic::Unattended-Upgrade \"1\";"