2015-08-22 22:39:22 +02:00
|
|
|
---
|
|
|
|
- name: Configure cron-apt (config)
|
2022-09-10 17:09:12 +02:00
|
|
|
ansible.builtin.copy: src={{ item.src }} dest={{ item.dest }} mode={{ item.mode }} owner={{ item.owner }} group={{ item.group }}
|
2018-04-02 14:52:51 +02:00
|
|
|
loop:
|
2023-08-23 20:33:22 +02:00
|
|
|
- { src: etc/cron-apt/config, dest: /etc/cron-apt/config, mode: "0644", owner: root, group: root }
|
|
|
|
- { src: etc/cron-apt/3-download, dest: /etc/cron-apt/action.d/3-download, mode: "0644", owner: root, group: root }
|
2015-08-22 22:39:22 +02:00
|
|
|
|
|
|
|
- name: Configure cron-apt (security)
|
2022-09-10 17:09:12 +02:00
|
|
|
ansible.builtin.template: src=security.sources.list.j2 dest=/etc/apt/security.sources.list mode=0644 owner=root group=root
|
2015-08-22 22:39:22 +02:00
|
|
|
|
|
|
|
# vim: set ts=2 sw=2:
|