Bugfix: mg/ansible#16 (#17)
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>
This commit is contained in:
parent
bd247d0b94
commit
ec7d58377e
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
### Beschreibung
|
### Beschreibung
|
||||||
- Diese Rolle ersetzt die `/etc/apt/sources.list` mit einer Datei in der ein Apt-Cacher-NG gesetzt ist.
|
- Diese Rolle ersetzt die `/etc/apt/sources.list` mit einer Datei in der ein Apt-Cacher-NG gesetzt ist.
|
||||||
|
|
||||||
Rolle prüft mit `when: ansible_os_family == 'Ubuntu'` ob das Ziel auch Ubuntu ist.
|
Rolle prüft mit `when: ansible_distribution == 'Ubuntu'` ob das Ziel auch Ubuntu ist.
|
||||||
|
|
||||||
- [x] Ubuntu (>=18.04)
|
- [x] Ubuntu (>=18.04)
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
dest: "/etc/apt/sources.list"
|
dest: "/etc/apt/sources.list"
|
||||||
backup: yes
|
backup: yes
|
||||||
register: copy_src
|
register: copy_src
|
||||||
when: ansible_os_family == 'Ubuntu'
|
when: ansible_distribution == 'Ubuntu'
|
||||||
|
|
||||||
- name: apt_update # noqa 503 503
|
- name: apt_update # noqa 503 503
|
||||||
become: yes
|
become: yes
|
||||||
|
|
Loading…
Reference in a new issue