Add test for ConfigureRemotingForAnsible.ps1.

This commit is contained in:
Matt Clay 2017-01-06 10:35:12 -08:00
parent 89f232ad8a
commit 50b11cd8e3

View file

@ -0,0 +1,9 @@
#!/bin/sh
FILE='examples/scripts/ConfigureRemotingForAnsible.ps1'
if [ ! -f "${FILE}" ] || [ -h "${FILE}" ]; then
echo 'The file "ConfigureRemotingForAnsible.ps1" is missing or is not a regular file.'
echo 'It is required by external automated processes and should not be moved or renamed.'
exit 1
fi