From 9dca8220926ca7bb1bc7b76ec996328b28765eb5 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 24 Sep 2020 13:47:15 -0400 Subject: [PATCH] *: build paths to my repo Signed-off-by: Vincent Batts --- README.md | 4 ++-- cmd/serve-package/main.go | 2 +- omaha/client/client.go | 4 ++-- omaha/client/client_test.go | 2 +- omaha/client/error.go | 2 +- omaha/client/example_test.go | 3 ++- omaha/client/http.go | 2 +- omaha/client/http_test.go | 2 +- omaha/client/update_engine_events.go | 2 +- 9 files changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 687e888..5f17683 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Go Omaha [![Build Status](https://travis-ci.org/coreos/go-omaha.svg?branch=master)](https://travis-ci.org/coreos/go-omaha) -[![GoDoc](https://godoc.org/github.com/coreos/go-omaha/omaha?status.svg)](https://godoc.org/github.com/coreos/go-omaha/omaha) +[![GoDoc](https://godoc.org/git.thisco.de/vbatts/go-omaha/omaha?status.svg)](https://godoc.org/git.thisco.de/vbatts/go-omaha/omaha) Implementation of the [omaha update protocol](https://github.com/google/omaha) in Go. @@ -26,7 +26,7 @@ These differences include: ## `serve-package` -This project includes a very simple program designed to serve a single Container Linux package on the local host. It is intended to be used as a manual updater for a machine that is not able to use a full-fledged CoreUpdate instance. Binaries are available for each released version on the [releases page](https://github.com/coreos/go-omaha/releases). `serve-package` can also be built from source using the provided Makefile: +This project includes a very simple program designed to serve a single Container Linux package on the local host. It is intended to be used as a manual updater for a machine that is not able to use a full-fledged CoreUpdate instance. Binaries are available for each released version on the [releases page](https://git.thisco.de/vbatts/go-omaha/releases). `serve-package` can also be built from source using the provided Makefile: ```bash make diff --git a/cmd/serve-package/main.go b/cmd/serve-package/main.go index b87d0f1..c652c08 100644 --- a/cmd/serve-package/main.go +++ b/cmd/serve-package/main.go @@ -5,7 +5,7 @@ import ( "fmt" "os" - "github.com/coreos/go-omaha/omaha" + "git.thisco.de/vbatts/go-omaha/omaha" ) func main() { diff --git a/omaha/client/client.go b/omaha/client/client.go index 6639ae6..3831f81 100644 --- a/omaha/client/client.go +++ b/omaha/client/client.go @@ -21,9 +21,9 @@ import ( "net/url" "time" - "github.com/satori/go.uuid" + uuid "github.com/satori/go.uuid" - "github.com/coreos/go-omaha/omaha" + "git.thisco.de/vbatts/go-omaha/omaha" ) const ( diff --git a/omaha/client/client_test.go b/omaha/client/client_test.go index bab5772..acbcfce 100644 --- a/omaha/client/client_test.go +++ b/omaha/client/client_test.go @@ -18,7 +18,7 @@ import ( "reflect" "testing" - "github.com/coreos/go-omaha/omaha" + "git.thisco.de/vbatts/go-omaha/omaha" ) // implements omaha.Updater diff --git a/omaha/client/error.go b/omaha/client/error.go index cf221a2..3422ceb 100644 --- a/omaha/client/error.go +++ b/omaha/client/error.go @@ -22,7 +22,7 @@ import ( "net/http" "time" - "github.com/coreos/go-omaha/omaha" + "git.thisco.de/vbatts/go-omaha/omaha" ) var ( diff --git a/omaha/client/example_test.go b/omaha/client/example_test.go index 8a7a076..999c411 100644 --- a/omaha/client/example_test.go +++ b/omaha/client/example_test.go @@ -17,10 +17,11 @@ package client import ( "fmt" "os" + //"os/signal" "syscall" - "github.com/coreos/go-omaha/omaha" + "git.thisco.de/vbatts/go-omaha/omaha" ) func Example() { diff --git a/omaha/client/http.go b/omaha/client/http.go index 9a634b7..009b072 100644 --- a/omaha/client/http.go +++ b/omaha/client/http.go @@ -22,7 +22,7 @@ import ( "net/http" "time" - "github.com/coreos/go-omaha/omaha" + "git.thisco.de/vbatts/go-omaha/omaha" ) const ( diff --git a/omaha/client/http_test.go b/omaha/client/http_test.go index 9d9c470..bf5267f 100644 --- a/omaha/client/http_test.go +++ b/omaha/client/http_test.go @@ -21,7 +21,7 @@ import ( "strings" "testing" - "github.com/coreos/go-omaha/omaha" + "git.thisco.de/vbatts/go-omaha/omaha" ) const ( diff --git a/omaha/client/update_engine_events.go b/omaha/client/update_engine_events.go index e20a70a..12860e7 100644 --- a/omaha/client/update_engine_events.go +++ b/omaha/client/update_engine_events.go @@ -18,7 +18,7 @@ package client import ( "fmt" - "github.com/coreos/go-omaha/omaha" + "git.thisco.de/vbatts/go-omaha/omaha" ) var (