mirror of
https://github.com/inspec/inspec
synced 2024-11-27 23:20:33 +00:00
15 lines
192 B
Bash
Executable file
15 lines
192 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Perform necessary inspec setup steps
|
|
# prior to installing package.
|
|
#
|
|
|
|
PROGNAME=`basename $0`
|
|
|
|
error_exit()
|
|
{
|
|
echo "${PROGNAME}: ${1:-"Unknown Error"}" 1>&2
|
|
exit 1
|
|
}
|
|
|
|
exit 0
|