Added cgi-bin scripts to refresh_sd and (not yet finished) delete files.

This commit is contained in:
Markus Birth 2015-09-06 04:10:26 +02:00
parent 8b236da7d7
commit 9e4e34e8da
3 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,5 @@
#!/bin/sh
echo "Status: 200 OK"
echo "Content-Type: text/plain"
echo ""
refresh_sd

View File

@ -0,0 +1,21 @@
#!/bin/sh
FILE="/mnt/sd/${QUERY_STRING}"
if [ -f "$FILE" ]; then
#rm -f ${FILE}
#sync
#refresh_sd
echo "Status: 200 OK"
echo "Content-Type: text/plain"
echo ""
echo "File to delete: $FILE"
echo "File exists!"
else
echo "Status: 404 Not Found"
echo "Content-Type: text/plain"
echo ""
echo "File $FILE not found!"
fi
env

View File

@ -0,0 +1,5 @@
#!/bin/sh
chmod a+x /mnt/sd/.wifisd/cgi-bin/refresh_sd
chmod a+x /mnt/sd/.wifisd/cgi-bin/wifi_delete
ln -s /mnt/sd/.wifisd/cgi-bin/refresh_sd /www/cgi-bin/refresh_sd
ln -s /mnt/sd/.wifisd/cgi-bin/wifi_delete /www/cgi-bin/wifi_delete