/lastoutage dumps everything
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
0e3fc9cb80
commit
52fc6a840d
12
main.go
12
main.go
|
@ -7,6 +7,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"go.wit.com/log"
|
"go.wit.com/log"
|
||||||
|
"go.wit.com/lib/gui/shell"
|
||||||
)
|
)
|
||||||
|
|
||||||
// var accessf, clientf *os.File
|
// var accessf, clientf *os.File
|
||||||
|
@ -31,11 +32,18 @@ func okHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
// requrl := parts[0]
|
// requrl := parts[0]
|
||||||
|
|
||||||
if tmp == "/powersource" {
|
if tmp == "/powersource" {
|
||||||
fmt.Fprintln(w, "Utility Power")
|
fmt.Fprintln(w, "TODO: fix this")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if tmp == "/lastoutage" {
|
if tmp == "/lastoutage" {
|
||||||
fmt.Fprintln(w, "Blackout at 2024/09/25 20:21:57 for 33 sec.")
|
// r := shell.Output("", []string{"ls", "-l", "/"})
|
||||||
|
r := shell.Output("", []string{"pwrstat", "-status"})
|
||||||
|
|
||||||
|
// log.Info("ls -l / START")
|
||||||
|
// log.Info("ls -l / =", r.Stdout())
|
||||||
|
// log.Info("ls -l / END")
|
||||||
|
|
||||||
|
fmt.Fprintln(w, r.Stdout())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
fmt.Fprintln(w, "UNKNOWN URL:", tmp)
|
fmt.Fprintln(w, "UNKNOWN URL:", tmp)
|
||||||
|
|
Loading…
Reference in New Issue