From 593bf1741ebef34db8c2b4d824528ce5bb2752e1 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:41:55 -0400 Subject: [PATCH] Add non-free to main sources.list The main file is the only one handled by the Ansible role, so don't add this to another file that would have to then be managed too. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index caec342..95f6c17 100755 --- a/install.sh +++ b/install.sh @@ -367,7 +367,7 @@ echo "done." echo -n "Adding non-free repository (firmware, etc.)... " mkdir -p ${target}/etc/apt/sources.list.d/ >&2 -echo "deb ${debmirror} ${debrelease} contrib non-free" | tee -a ${target}/etc/apt/sources.list.d/non-free.list >&2 +echo "deb ${debmirror} ${debrelease} contrib non-free" | tee -a ${target}/etc/apt/sources.list >&2 chroot ${target} apt update >&2 echo "done."