17 lines
388 B
YAML
17 lines
388 B
YAML
---
|
|
|
|
- name: apt-listchanges Config (/etc/apt/listchanges.conf)
|
|
ansible.builtin.template:
|
|
src: ../files/listchanges.conf
|
|
dest: /etc/apt/listchanges.conf
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
|
|
- name: Install packages if Debian based
|
|
apt:
|
|
name: "apt-listchanges"
|
|
state: present
|
|
update_cache: true
|
|
become: true
|
|
when: ansible_os_family == 'Debian'
|