This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tsg-tsg-os-buildimage/ansible/roles/tsg-os-provision/files/script/guard.sh

13 lines
212 B
Bash

#!/bin/bash -x
config_path=/data/tsg-os-provision/provision.yml
if [ ! -f "$config_path" ];then
echo "$config_path is not exists"
exit 1
else
echo "$config_path is exists"
exit 0
fi
#exit 1