Commit c8a81fed authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm: add --norepack option

parent 4d2de7bc
...@@ -98,6 +98,7 @@ noremove= ...@@ -98,6 +98,7 @@ noremove=
dryrun= dryrun=
force= force=
repack= repack=
norepack=
install= install=
inscript= inscript=
scripts= scripts=
...@@ -466,6 +467,9 @@ check_option() ...@@ -466,6 +467,9 @@ check_option()
--repack) # HELPOPT: repack rpm package(s) before install --repack) # HELPOPT: repack rpm package(s) before install
repack="--repack" repack="--repack"
;; ;;
--norepack) # HELPOPT: don't repack rpm package(s) if it is by default before install
repack="--norepack"
;;
--install) # HELPOPT: install packed rpm package(s) --install) # HELPOPT: install packed rpm package(s)
install="--install" install="--install"
;; ;;
......
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