# SPDX-License-Identifier: MIT - name: 'In ''/etc/apt/sources.list'' enable non-free and non-free-firmware components in all Debian-native repos' ansible.builtin.replace: path: '/etc/apt/sources.list' regexp: '^(.*?)( main contrib(?! non-free non-free-firmware))' replace: '\g<1>\g<2> non-free non-free-firmware' notify: - 'apt-get update'