itamae/cookbooks/consul/files/usr/lib/nagios/plugins/check_file
2019-03-03 16:50:49 +08:00

10 lines
70 B
Bash

#!/bin/bash
TARGET=$1
if [ -f ${TARGET} ]; then
exit 1
fi
exit 0