Removed args to index.cgi check

master
Keith Irwin 2022-09-15 13:48:28 -06:00
parent f995add94f
commit 613d1f831f
Signed by: ki9
GPG Key ID: DF773B3F4A88DA86
1 changed files with 1 additions and 4 deletions

View File

@ -6,10 +6,7 @@
# 4: Missing config file
CONFIG_FILE='/etc/wgapi/config'
if ! [ ${#} -eq 0 ]; then
printf 'ERROR! Bad input: %s %s\n' "${0}" "${*}" >>"${LOGFILE}"
exit 3
fi & if [ -f "${CONFIG_FILE}" ]; then
if [ -f "${CONFIG_FILE}" ]; then
printf 'ERROR! %s could not find %s!\n' "${0}" "${CONFIG_FILE}" >>"${LOGFILE}"
exit 4
fi; source "${CONFIG_FILE}"