Compare commits

..

2 commits

Author SHA1 Message Date
816be5a37d
dnf/plugins,crb
Some checks failed
/ arch (push) Successful in 3m9s
/ alpine (push) Successful in 1m56s
/ fedora (push) Failing after 23s
/ debian (push) Failing after 10m16s
/ opensuse (push) Successful in 4m34s
/ ubuntu (push) Successful in 13m37s
/ alma (push) Successful in 7m44s
/ rocky (push) Successful in 8m35s
2024-09-09 23:49:37 +02:00
830288f0d2
epel/update 2024-09-09 23:45:03 +02:00

View file

@ -770,6 +770,7 @@ spcd_f_pkg() {
spcd_os_sed "${file}" \ spcd_os_sed "${file}" \
"|^enabled=1|enabled=0|" "|^enabled=1|enabled=0|"
fi fi
spcd_f_pm_pkg_update
;; ;;
*) ;; *) ;;
esac esac
@ -1265,6 +1266,11 @@ spcd_f_pm_pkg_install() {
else else
case "${SPCD_PM}" in case "${SPCD_PM}" in
"${SPCD_PM_APT}") spcd_f_pm_pkg_install "apt-utils" ;; "${SPCD_PM_APT}") spcd_f_pm_pkg_install "apt-utils" ;;
"${SPCD_PM_DNF}")
spcd_f_pm_pkg_install "dnf-plugins-core"
dnf config-manager --enable "crb"
spcd_f_pm_pkg_update
;;
*) ;; *) ;;
esac esac
fi fi