Add dnf support to update-all-packages
parent
642017d72b
commit
8b50039f98
|
@ -24,7 +24,7 @@ done
|
||||||
|
|
||||||
declare -A RUN=()
|
declare -A RUN=()
|
||||||
|
|
||||||
for command in "pacman" "apt" "flatpak" "gem" "nvim" "asdf" "brew" "pacman";
|
for command in "pacman" "apt" "dnf" "flatpak" "gem" "nvim" "asdf" "brew" "pacman";
|
||||||
do
|
do
|
||||||
echo $command
|
echo $command
|
||||||
if type $command > /dev/null 2>&1
|
if type $command > /dev/null 2>&1
|
||||||
|
@ -76,6 +76,18 @@ then
|
||||||
sudo apt autoremove
|
sudo apt autoremove
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "${RUN[dnf]}" = "1" ]
|
||||||
|
then
|
||||||
|
# Clear out orphans
|
||||||
|
sudo dnf autoremove
|
||||||
|
|
||||||
|
# Update dnf packages
|
||||||
|
sudo dnf update
|
||||||
|
|
||||||
|
# Clear out orphans
|
||||||
|
sudo dnf autoremove
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "${RUN[flatpak]}" = "1" ]
|
if [ "${RUN[flatpak]}" = "1" ]
|
||||||
then
|
then
|
||||||
# Clear out unused flatpak apps
|
# Clear out unused flatpak apps
|
||||||
|
|
Loading…
Reference in New Issue