From 54ce4352cb5acc409e55fe057fa2d36b9d21cd7c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 5 Oct 2020 11:23:45 -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."