mg
ec7d58377e
Bugfix: mg/ansible#16 Co-authored-by: Michael Grote <38253905+quotengrote@users.noreply.github.com> Reviewed-on: mg/ansible#17 Co-Authored-By: mg <michael.grote@posteo.de> Co-Committed-By: mg <michael.grote@posteo.de>
14 lines
353 B
YAML
14 lines
353 B
YAML
- name: sources.list kopieren
|
|
become: yes
|
|
ansible.builtin.template:
|
|
src: "sources.list"
|
|
dest: "/etc/apt/sources.list"
|
|
backup: yes
|
|
register: copy_src
|
|
when: ansible_distribution == 'Ubuntu'
|
|
|
|
- name: apt_update # noqa 503 503
|
|
become: yes
|
|
ansible.builtin.apt:
|
|
update_cache: yes
|
|
when: copy_src.changed
|