Annotation of embedaddon/coova-chilli/www/config.sh.in, revision 1.1
1.1 ! misho 1: #!/bin/sh
! 2:
! 3: if [ -f config-local.sh ]; then
! 4: . ./config-local.sh
! 5: else
! 6: [ -f @ETCCHILLI@/defaults ] && . @ETCCHILLI@/defaults
! 7: [ -f @ETCCHILLI@/config ] && . @ETCCHILLI@/config
! 8: fi
! 9: reg_mode=${reg_mode:-$HS_REG_MODE}
! 10: [ "$reg_mode" = "self" ] && register=1
! 11: [ "$reg_mode" = "tos" ] && tos=1
! 12: hs_openidauth=${hs_openidauth:-$HS_OPENIDAUTH}
! 13: hs_uamsecret=${hs_uamsecret:-$HS_UAMSECRET}
! 14: hs_uamlisten=${hs_uamlisten:-$HS_UAMLISTEN}
! 15: hs_uamport=${hs_uamport:-$HS_UAMPORT}
! 16: hs_uamservice=${hs_uamservice:-$HS_UAMSERVICE}
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>