summaryrefslogtreecommitdiff
path: root/std.yml
diff options
context:
space:
mode:
Diffstat (limited to 'std.yml')
-rw-r--r--std.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/std.yml b/std.yml
index 08724a9..a69b6bb 100644
--- a/std.yml
+++ b/std.yml
@@ -116,10 +116,17 @@
name: ifupdown
state: absent
- - name: "enable the non-free-firmware component on bookworm"
+ - name: "enable the non-free-firmware component"
when: debian_release != "bullseye"
apt_repository:
- repo: "deb http://deb.debian.org/debian {{ debian_release}} non-free-firmware"
+ repo: "deb http://deb.debian.org/debian {{ debian_release }} non-free-firmware"
+ state: present
+ update_cache: yes
+
+ - name: "enable the non-free component"
+ when: debian_release == "bullseye"
+ apt_repository:
+ repo: "deb http://deb.debian.org/debian {{ debian_release }} non-free"
state: present
update_cache: yes