Commit 2e247eb3 authored by Vitaly Lipatov's avatar Vitaly Lipatov

install: allow return command for dnf

parent dd788cf1
...@@ -190,6 +190,9 @@ epm_ni_install_names() ...@@ -190,6 +190,9 @@ epm_ni_install_names()
yum-rpm) yum-rpm)
sudocmd yum -y $YUMOPTIONS install $@ sudocmd yum -y $YUMOPTIONS install $@
return ;; return ;;
dnf-rpm)
sudocmd dnf -y $YUMOPTIONS install $@
return ;;
urpm-rpm) urpm-rpm)
sudocmd urpmi --auto $URPMOPTIONS $@ sudocmd urpmi --auto $URPMOPTIONS $@
return ;; return ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment