#!/bin/sh
set -o nounset
set -o errexit

: ${MOCK_CHEF_EXIT_CODE:=0}

if [ "-v" = "$1" ]; then
    echo "Chef: 11.10.4"
    exit 0
fi

exit "${MOCK_CHEF_EXIT_CODE}"
