77 lines
1.1 KiB
Plaintext
77 lines
1.1 KiB
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. /etc/sysenv.conf
|
||
|
|
||
|
|
||
|
if [ "$REQUEST_METHOD" = "GET" ]
|
||
|
then
|
||
|
CGIPARAM=$QUERY_STRING
|
||
|
|
||
|
elif [ "$REQUEST_METHOD" = "POST" ]
|
||
|
then
|
||
|
read CGIPARAM
|
||
|
else
|
||
|
CGIPARAM=$1
|
||
|
fi
|
||
|
|
||
|
|
||
|
CMD_LINE="`echo $CGIPARAM | sed -n "s/&/\n/gp"`"
|
||
|
get_param()
|
||
|
{
|
||
|
echo "${CMD_LINE}" | grep "${1}=" | sed -n "s/\-${1}=//p"
|
||
|
}
|
||
|
|
||
|
#boardconffile=/etc/board.conf
|
||
|
#sensorconffile=/etc/sensor.conf
|
||
|
|
||
|
|
||
|
arg_action="`get_param "action"`"
|
||
|
|
||
|
|
||
|
show_info()
|
||
|
{
|
||
|
. ${BOARD_CONF}
|
||
|
. ${SENSOR_CONF}
|
||
|
# echo 200 OK HTTP 1.1
|
||
|
# echo -e "\r"
|
||
|
echo -e "Content-Type:text/plain\r"
|
||
|
echo -e "\r"
|
||
|
|
||
|
echo -e "var boardtype = \"$boardtype\" ;\r"
|
||
|
echo -e "var sensortype = \"$sensortype\" ;\r"
|
||
|
|
||
|
echo -e "\r"
|
||
|
}
|
||
|
|
||
|
#echo arg_action $arg_action
|
||
|
if [ $arg_action = "get" ]
|
||
|
then
|
||
|
show_info
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
if [ $arg_action = "set" ]
|
||
|
then
|
||
|
|
||
|
###arg_board="`get_param "board"`"
|
||
|
arg_sensor="`get_param "sensor"`"
|
||
|
|
||
|
. ${SENSOR_CONF}
|
||
|
|
||
|
###echo "boardtype=$arg_board" > ${BOARD_CONF}
|
||
|
|
||
|
rm -f ${SENSOR_CONF}
|
||
|
|
||
|
echo "sensortype=$arg_sensor" \
|
||
|
$'\n'"sensordetect=$sensordetect" > ${SENSOR_CONF}
|
||
|
sync
|
||
|
/bin/sensorenv.sh
|
||
|
show_info
|
||
|
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
|
||
|
|
||
|
|