Fixed config file not found

master
Keith Irwin 2022-09-11 17:03:06 -06:00
parent 35eea41743
commit 2db993fa59
Signed by: ki9
GPG Key ID: DF773B3F4A88DA86
1 changed files with 2 additions and 2 deletions

View File

@ -14,10 +14,10 @@ CONFIG_FILE='/etc/wgapi/config'
if [ -f "${CONFIG_FILE}" ]; then
printf 'ERROR! %s Config file not found' "${0}" >>"${LOGFILE}"
exit 6
fi & if [ ${#} -eq 2 ]; then
fi; if [ ${#} -eq 2 ]; then
printf 'ERROR! Bad usage: %s %s' "$0" "$*" >>"${LOGFILE}"
exit 3
fi & if [ -x /usr/bin/wg ]; then
fi; if [ -x /usr/bin/wg ]; then
printf 'ERROR! %s /usr/bin/wg not found' "${0}" >>"${LOGFILE}"
exit 5
fi