17 lines
296 B
Go
17 lines
296 B
Go
package main
|
|
|
|
import (
|
|
"go.wit.com/lib/gui/shell"
|
|
"go.wit.com/log"
|
|
)
|
|
|
|
func (d *DropletT) Start() {
|
|
log.Info("a new virtual machine is running")
|
|
}
|
|
|
|
func (h *HyperT) RestartDaemon() {
|
|
url := "http://" + h.Hostname + ":2520/kill"
|
|
s := shell.Wget(url)
|
|
log.Info("EVENT RestartDaemon", url, s)
|
|
}
|