mirror of
https://gitlab.com/shorewall/code.git
synced 2025-01-03 12:09:14 +01:00
Move version_command() to where it belongs
This commit is contained in:
parent
eac128b5e2
commit
befdbb4a04
@ -1382,6 +1382,55 @@ usage() # $1 = exit status
|
|||||||
exit $1
|
exit $1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
version_command() {
|
||||||
|
local finished
|
||||||
|
finished=0
|
||||||
|
local all
|
||||||
|
all=
|
||||||
|
local product
|
||||||
|
|
||||||
|
while [ $finished -eq 0 -a $# -gt 0 ]; do
|
||||||
|
option=$1
|
||||||
|
case $option in
|
||||||
|
-*)
|
||||||
|
option=${option#-}
|
||||||
|
|
||||||
|
while [ -n "$option" ]; do
|
||||||
|
case $option in
|
||||||
|
-)
|
||||||
|
finished=1
|
||||||
|
option=
|
||||||
|
;;
|
||||||
|
a*)
|
||||||
|
all=Yes
|
||||||
|
option=${option#a}
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
usage 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
finished=1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
[ $# -gt 0 ] && usage 1
|
||||||
|
|
||||||
|
echo $SHOREWALL_VERSION
|
||||||
|
|
||||||
|
if [ -n "$all" ]; then
|
||||||
|
for product in shorewall6 shorewall-lite shorewall6-lite shorewall-init; do
|
||||||
|
if [ -f /usr/share/$product/version ]; then
|
||||||
|
echo "$product: $(cat /usr/share/$product/version)"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# Execution begins here
|
# Execution begins here
|
||||||
#
|
#
|
||||||
@ -1512,55 +1561,6 @@ while [ $finished -eq 0 ]; do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
version_command() {
|
|
||||||
local finished
|
|
||||||
finished=0
|
|
||||||
local all
|
|
||||||
all=
|
|
||||||
local product
|
|
||||||
|
|
||||||
while [ $finished -eq 0 -a $# -gt 0 ]; do
|
|
||||||
option=$1
|
|
||||||
case $option in
|
|
||||||
-*)
|
|
||||||
option=${option#-}
|
|
||||||
|
|
||||||
while [ -n "$option" ]; do
|
|
||||||
case $option in
|
|
||||||
-)
|
|
||||||
finished=1
|
|
||||||
option=
|
|
||||||
;;
|
|
||||||
a*)
|
|
||||||
all=Yes
|
|
||||||
option=${option#a}
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
usage 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
finished=1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
[ $# -gt 0 ] && usage 1
|
|
||||||
|
|
||||||
echo $SHOREWALL_VERSION
|
|
||||||
|
|
||||||
if [ -n "$all" ]; then
|
|
||||||
for product in shorewall6 shorewall-lite shorewall6-lite shorewall-init; do
|
|
||||||
if [ -f /usr/share/$product/version ]; then
|
|
||||||
echo "$product: $(cat /usr/share/$product/version)"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ $# -eq 0 ]; then
|
if [ $# -eq 0 ]; then
|
||||||
usage 1
|
usage 1
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user