feat(repo): Initial commit

This commit is contained in:
2025-04-03 02:36:50 +02:00
commit 1d1734f7ec
15 changed files with 311 additions and 0 deletions

View File

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