initial commit
ci/woodpecker/push/lint Pipeline was successful

This commit is contained in:
2026-04-30 22:22:14 -04:00
commit e8f348bc36
15 changed files with 214 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
# To prevent repository packages from triggering the installation of Snap,
# this file forbids snapd from being installed by APT.
# For more information: https://linuxmint-user-guide.readthedocs.io/en/latest/snap.html
Package: snapd
Pin: release a=*
Pin-Priority: -10
+12
View File
@@ -0,0 +1,12 @@
- name: Remove snapd
ansible.builtin.apt:
name: snapd
state: absent
autoremove: true
purge: true
- name: Copy nosnap apt preferences
ansible.builtin.copy:
src: nosnap.pref
dest: /etc/apt/preferences.d/nosnap.pref
mode: "0644"