firmware/src/packages/fff/fff-web/files/www/ssl/cgi-bin/settings

17 lines
245 B
Plaintext
Executable File

#!/usr/bin/haserl
<%
echo -en "content-type: text/plain\r\n\r\n"
. /lib/functions.sh
case "$GET_func" in
get_settings)
uci export -qn system
uci export -qn simple-tc
;;
*)
echo "(E) settings: Invalid command: '$GET_func'"
;;
esac
%>