Can make DNF cache system wide instead of per user?

sudo tee /etc/profile.d/custom.sh << "EOF"
dnf() {
sudo dnf "${@}"
}
EOF
. /etc/profile
5 Likes