diff --git a/back/dashboard.cgi b/back/dashboard.cgi index a462ea1..567f9d7 100755 --- a/back/dashboard.cgi +++ b/back/dashboard.cgi @@ -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}"