From 5fd1d3c4a2e4928831bce74e5a1898071cd2a4bb Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Mon, 19 Oct 2020 23:34:54 +0000 Subject: [PATCH] schutzbot/deploy: re-enable weak deps Don't differ from defaults just for the sake of speed. We still keep the fastestmirror option enabled as that does not affect the resulting install. --- schutzbot/deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schutzbot/deploy.sh b/schutzbot/deploy.sh index 3fcb8cb0e..be2279f6e 100755 --- a/schutzbot/deploy.sh +++ b/schutzbot/deploy.sh @@ -35,8 +35,8 @@ fi greenprint "Restarting systemd to work around some Fedora issues in cloud images" sudo systemctl restart systemd-journald -greenprint "Enabling fastestmirror and disabling weak dependencies to speed up dnf even more 🏎️" -echo -e "fastestmirror=1\ninstall_weak_deps=0" | sudo tee -a /etc/dnf/dnf.conf +greenprint "Enabling fastestmirror to speed up dnf 🏎️" +echo -e "fastestmirror=1" | sudo tee -a /etc/dnf/dnf.conf greenprint "Adding osbuild team ssh keys" cat schutzbot/team_ssh_keys.txt | tee -a ~/.ssh/authorized_keys > /dev/null