1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_packages.git synced 2024-08-16 10:19:51 +02:00

file permissions in sources.yml

This commit is contained in:
L3D 2020-08-28 14:10:39 +02:00
parent eb51ce412c
commit 30bb9909d8
No known key found for this signature in database
GPG key ID: 5215C3441797AB2B

View file

@ -7,8 +7,6 @@
- apt-dater-host - apt-dater-host
- apt-transport-https - apt-transport-https
state: present state: present
update_cache: yes
cache_valid_time: 43200
when: when:
- ansible_machine != 'armv6l' and ansible_distribution_release != 'wheezy' - ansible_machine != 'armv6l' and ansible_distribution_release != 'wheezy'
@ -17,6 +15,7 @@
apt_repository: apt_repository:
repo: deb https://debian.ethz.ch/debian/ {{ ansible_distribution_release }} main repo: deb https://debian.ethz.ch/debian/ {{ ansible_distribution_release }} main
state: present state: present
mode: 0644
when: when:
- not base__pkg_non_free_firmware | bool - not base__pkg_non_free_firmware | bool
- not base__pkg_contrib | bool - not base__pkg_contrib | bool
@ -27,6 +26,7 @@
apt_repository: apt_repository:
repo: deb-src https://debian.ethz.ch/debian/ {{ ansible_distribution_release }} main non-free repo: deb-src https://debian.ethz.ch/debian/ {{ ansible_distribution_release }} main non-free
state: present state: present
mode: 0644
when: when:
- base__pkg_non_free_firmware | bool - base__pkg_non_free_firmware | bool
- not base__pkg_contrib | bool - not base__pkg_contrib | bool
@ -37,6 +37,7 @@
apt_repository: apt_repository:
repo: deb-src https://debian.ethz.ch/debian/ {{ ansible_distribution_release }} main contrib non-free repo: deb-src https://debian.ethz.ch/debian/ {{ ansible_distribution_release }} main contrib non-free
state: present state: present
mode: 0644
when: when:
- base__pkg_non_free_firmware | bool - base__pkg_non_free_firmware | bool
- base__pkg_contrib | bool - base__pkg_contrib | bool