summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-06 14:18:25 -0600
committerJeff Carr <[email protected]>2024-11-06 14:18:25 -0600
commit6e4c5102c4fe313348af65baa5523778f755fa99 (patch)
tree6c68f7344b36a1f3e362ee91575fb5eb50410dcc
parent6ed4a6924c0a45afe8e54a797c1d0ade3471020c (diff)
more notes
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--args.go2
-rw-r--r--indexHtml.go5
2 files changed, 5 insertions, 2 deletions
diff --git a/args.go b/args.go
index b15d6ac..8d56458 100644
--- a/args.go
+++ b/args.go
@@ -18,7 +18,7 @@ type args struct {
}
func (args) Version() string {
- return "virtigo " + Version
+ return "gowebd " + Version
}
func init() {
diff --git a/indexHtml.go b/indexHtml.go
index c96d92c..519c541 100644
--- a/indexHtml.go
+++ b/indexHtml.go
@@ -38,7 +38,10 @@ func indexBodyStart(w http.ResponseWriter) {
fmt.Fprintln(w, "echo deb http://mirrors.wit.com/wit/ sid main > /etc/apt/sources.list.d/wit.list <br>")
fmt.Fprintln(w, "apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4A854AEAF7E0E16D <br>")
fmt.Fprintln(w, "apt update<br>")
- fmt.Fprintln(w, "apt install go-clone<br>")
+ fmt.Fprintln(w, "apt install go-clone # replicates the old 'go get' behavior")
+ fmt.Fprintln(w, "apt install go-deb # make a debian package from a golang project")
+ fmt.Fprintln(w, "apt install networkquality # debian package of apple's command line speedtest tool")
+ fmt.Fprintln(w, "apt install virtigo # virt-manager from the command line")
fmt.Fprintln(w, " <br>")
fmt.Fprintln(w, " <div class=\"container\">")
fmt.Fprintln(w, " <div class=\"row\">")