Compare commits
No commits in common. "9d72355caf1814afe82896a75277f51c57ed296f" and "7d41abd543121c7c5f153acc2a5ed6828af50cb1" have entirely different histories.
9d72355caf
...
7d41abd543
5
Makefile
5
Makefile
|
@ -1,6 +1,3 @@
|
||||||
build:
|
|
||||||
go build
|
|
||||||
|
|
||||||
farm001:
|
farm001:
|
||||||
./go-nsupdate \
|
./go-nsupdate \
|
||||||
--tsig-algorithm=hmac-sha512 \
|
--tsig-algorithm=hmac-sha512 \
|
||||||
|
@ -53,5 +50,5 @@ make-keys:
|
||||||
sudo tsig-keygen -a hmac-sha512 hpdevone.lab.wit.org
|
sudo tsig-keygen -a hmac-sha512 hpdevone.lab.wit.org
|
||||||
|
|
||||||
push:
|
push:
|
||||||
-git commit -a
|
git commit -a
|
||||||
git push wit jcarr
|
git push wit jcarr
|
||||||
|
|
4
main.go
4
main.go
|
@ -91,8 +91,8 @@ func main() {
|
||||||
log.Printf("wait...")
|
log.Printf("wait...")
|
||||||
|
|
||||||
if err := update.Done(); err != nil {
|
if err := update.Done(); err != nil {
|
||||||
log.Printf("update failed: %v", err)
|
log.Printf("update done: %v", err)
|
||||||
} else {
|
} else {
|
||||||
log.Printf("update worked")
|
log.Printf("update done")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue