Browse Source

Merge pull request #13002 from liudf0716/apfree-wifidog

apfree-wifidog: fix bug of cert generating condition and enable misuse
lilik-openwrt-22.03
Rosen Penev 4 years ago
committed by GitHub
parent
commit
3ae4b3f016
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      net/apfree-wifidog/files/wifidogx.init

+ 5
- 5
net/apfree-wifidog/files/wifidogx.init View File

@ -62,7 +62,7 @@ prepare_mqtt_conf() {
prepare_wifidog_conf() {
local cfg=$1
local enable
local disabled
local gateway_id
local gateway_interface
local auth_server_hostname
@ -96,8 +96,8 @@ prepare_wifidog_conf() {
[ -f ${CONFIGFILE} ] && rm -f ${CONFIGFILE}
config_get enable "${cfg}" "disabled" 0
if [ "${enable}" = "0" ]; then
config_get disabled "${cfg}" "disabled" 1
if [ "${disabled}" = "1" ]; then
echo "wifidogx disabled in /etc/config/wifidogx file, please set disabled to 0 to enable it" >&2
return
fi
@ -255,11 +255,11 @@ init_config() {
exit
fi
if [ -s "${APFREE_CERT}" ] && [ -s "${APFREE_KEY}" ]; then
if [ ! -s "${APFREE_CERT}" ] || [ ! -s "${APFREE_KEY}" ]; then
generate_keys
fi
if [ -s ${APFREE_KEY} ] && [ -s ${APFREE_CERT} ]; then
if [ ! -s ${APFREE_KEY} ] || [ ! -s ${APFREE_CERT} ]; then
echo "no cert or key, exit..." >&2
exit
fi


Loading…
Cancel
Save