Remove -t parameter

$images now set via -i and -x parameters

Signed-off-by: Niall T <jammasterj89@gmail.com>
This commit is contained in:
jammasterj89 2019-07-30 11:25:14 +01:00 committed by Niall T
parent 7f29aebd71
commit c53157e184

View file

@ -44,9 +44,8 @@ usage () {
-l FILE optional Log output in FILE
-c CHECK optional Comma delimited list of specific check(s)
-e CHECK optional Comma delimited list of specific check(s) to exclude
-i INCLUDE optional Comma delimited list of patterns within a container name to check
-x EXCLUDE optional Comma delimited list of patterns within a container name to exclude from check
-t TARGET optional Comma delimited list of images name to check
-i INCLUDE optional Comma delimited list of patterns within a container or image name to check
-x EXCLUDE optional Comma delimited list of patterns within a container or image name to exclude from check
EOF
}
@ -63,7 +62,6 @@ do
e) checkexclude="$OPTARG" ;;
i) include="$OPTARG" ;;
x) exclude="$OPTARG" ;;
t) imgList="$OPTARG" ;;
*) usage; exit 1 ;;
esac
done