Commit 75fb5551 authored by Vitaly Lipatov's avatar Vitaly Lipatov

rpmgp: allow all param as -a

parent 908f3f3c
......@@ -257,6 +257,11 @@ if [ -n "$CHECKONLINE" ] ; then
exit 0
fi
if [ -n "$2" ] && [ "$1" = "all" ] ; then
shift
ALLSYSTEM=1
fi
# Check concrete system
# two params: system, package
if [ -n "$2" ] ; then
......@@ -282,6 +287,7 @@ if [ -n "$ALLSYSTEM" ] ; then
for ((i=0; i < ${#SYSNAME[*]}; i++)) ; do
echo
check_system $i
print_list $NLIST
done
exit 0
fi
......
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