You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/sanity/code-smell/configure-remoting-ps1.sh

10 lines
315 B
Bash

#!/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