*: build paths to my repo

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2020-09-24 13:47:15 -04:00
parent 4b906a3877
commit 9dca822092
9 changed files with 12 additions and 11 deletions

View File

@ -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

View File

@ -5,7 +5,7 @@ import (
"fmt"
"os"
"github.com/coreos/go-omaha/omaha"
"git.thisco.de/vbatts/go-omaha/omaha"
)
func main() {

View File

@ -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 (

View File

@ -18,7 +18,7 @@ import (
"reflect"
"testing"
"github.com/coreos/go-omaha/omaha"
"git.thisco.de/vbatts/go-omaha/omaha"
)
// implements omaha.Updater

View File

@ -22,7 +22,7 @@ import (
"net/http"
"time"
"github.com/coreos/go-omaha/omaha"
"git.thisco.de/vbatts/go-omaha/omaha"
)
var (

View File

@ -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() {

View File

@ -22,7 +22,7 @@ import (
"net/http"
"time"
"github.com/coreos/go-omaha/omaha"
"git.thisco.de/vbatts/go-omaha/omaha"
)
const (

View File

@ -21,7 +21,7 @@ import (
"strings"
"testing"
"github.com/coreos/go-omaha/omaha"
"git.thisco.de/vbatts/go-omaha/omaha"
)
const (

View File

@ -18,7 +18,7 @@ package client
import (
"fmt"
"github.com/coreos/go-omaha/omaha"
"git.thisco.de/vbatts/go-omaha/omaha"
)
var (