freebsd-dev/contrib/ntp/scripts/build/check--help
Cy Schubert 052d159a8b MFV r344878:
4.2.8p12 --> 4.2.8p13

MFC after:	immediately
Security:	CVE-2019-8936
		VuXML: c2576e14-36e2-11e9-9eda-206a8a720317
Obtained from:	nwtime.org
2019-03-07 13:36:00 +00:00

23 lines
384 B
Bash
Executable File

#! /bin/sh
# Look at the file specified in $1 to see if it contains 'no --help'.
# If it does:
# - Squawk
# - rename the file to ($1)-
# - exit with a non-zero status.
# otherwise:
# - exit with a 0 status.
if test ! -f $1
then
echo "$0: $1 is not a regular file!" 1>&2
exit 1
fi
if grep -q 'no --help' $1
then
echo "$0: $1 contains 'no --help'!" 1>&2
mv ${1} ${1}-
exit 1
fi