12 lines
353 B
YAML
12 lines
353 B
YAML
---
|
|
- name: "Create /etc/apt/apt.conf.d/99auto-upgrades-disabled"
|
|
copy:
|
|
content: |
|
|
# This file is managed by Ansible. Changes will be overwritten.
|
|
APT::Periodic::Update-Package-Lists "1";
|
|
APT::Periodic::Unattended-Upgrade "0";
|
|
dest: /etc/apt/apt.conf.d/99auto-upgrades-disabled
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|