forked from hummypkg/webif
64b73ee14b
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@273 2a923420-c742-0410-a762-8d5b09965624
32 lines
484 B
Plaintext
Executable File
32 lines
484 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/var/mongoose/lib/setup
|
|
require pkg.class chunked
|
|
|
|
puts "Content-Type: text/html"
|
|
puts "Transfer-Encoding: chunked"
|
|
puts ""
|
|
|
|
cgi_input
|
|
#cgi_dump
|
|
|
|
set cmd [cgi_get cmd update]
|
|
|
|
set bcmd "|/mod/var/mongoose/lib/opkg $cmd"
|
|
set fd [open $bcmd r]
|
|
while {[gets $fd line] >= 0} {
|
|
chunk "$line\r\n"
|
|
}
|
|
close $fd
|
|
|
|
if {$cmd eq "update"} {
|
|
chunk "Updating package meta information\r\n"
|
|
pkg fetchmeta
|
|
chunk "Done.\r\n"
|
|
}
|
|
|
|
chunk ""
|
|
puts "\r\n"
|
|
|