Is it possibile to skip a package weak dependencies during a kickstart installation of Fedora?
Emily Wong
I know how to skip the installation of weak dependencies with dnf when installing a package (either by modifying dnf.conf or directly in the command line). I was wondering: is it possible to skip a package weak dependencies during a kickstart installation?
1 Answer
1. Command line parameter
dnf --setopt=install_weak_deps=False newPackageName2. Permanent setting in the dnf config file
sudo vi /etc/dnf/dnf.confadd a line
install_weak_deps=False 1