fetch: -i is not --no-verify-peer

This commit is contained in:
Franco Fichtner 2017-07-14 08:54:44 +02:00
parent c3164952ac
commit 76b1d624e0
1 changed files with 3 additions and 3 deletions

View File

@ -29,15 +29,15 @@ set -e
OUTFILE=
while getopts aio:qT: OPT; do
while getopts ao:qT: OPT; do
case ${OPT} in
o)
OUTFILE="${OPTARG}"
;;
a|i|q|T)
a|q|T)
;;
*)
echo "Usage: opnsense-fetch [-aiq] [-o file] [-T timeout] url" >&2
echo "Usage: opnsense-fetch [-aq] [-o file] [-T timeout] url" >&2
exit 1
;;
esac