From 28e0f09a270e6b35cdb62ebd434ee52bf9622329 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 6 Nov 2024 14:31:44 -0600 Subject: [PATCH] better docs Signed-off-by: Jeff Carr --- indexHtml.go | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/indexHtml.go b/indexHtml.go index 40a30b5..08c2014 100644 --- a/indexHtml.go +++ b/indexHtml.go @@ -33,15 +33,8 @@ func indexBodyStart(w http.ResponseWriter) { // fmt.Fprintln(w, " fmt.Fprintln(w, "") fmt.Fprintln(w, "
") - fmt.Fprintln(w, "There are debian packages for most of these:
") + fmt.Fprintln(w, "There are debian packages for most of these on mirrors.wit.com
") fmt.Fprintln(w, "
") - fmt.Fprintln(w, "echo deb http://mirrors.wit.com/wit/ sid main > /etc/apt/sources.list.d/wit.list
") - fmt.Fprintln(w, "apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4A854AEAF7E0E16D
") - fmt.Fprintln(w, "apt update
") - 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, "
") fmt.Fprintln(w, "
") fmt.Fprintln(w, "
") @@ -164,6 +157,14 @@ func indexDivEnd(w http.ResponseWriter) { } func indexBodyEnd(w http.ResponseWriter) { + fmt.Fprintln(w, "
") + fmt.Fprintln(w, "echo deb http://mirrors.wit.com/wit/ sid main > /etc/apt/sources.list.d/wit.list
") + fmt.Fprintln(w, "apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4A854AEAF7E0E16D
") + fmt.Fprintln(w, "apt update
") + 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 (runs wit.com)
") fmt.Fprintln(w, " ") fmt.Fprintln(w, " ") }