From 0fcbbfda1f180a394e0984cfac29350156c174da Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 18 Jan 2018 15:31:08 +0100 Subject: [PATCH] Add systemd readiness notification --- Gopkg.lock | 8 +- Gopkg.toml | 4 + dnscrypt-proxy/main.go | 2 + .../github.com/coreos/go-systemd/.travis.yml | 29 +++ .../coreos/go-systemd/CONTRIBUTING.md | 77 +++++++ vendor/github.com/coreos/go-systemd/DCO | 36 ++++ .../github.com/coreos/go-systemd/Jenkinsfile | 38 ++++ vendor/github.com/coreos/go-systemd/LICENSE | 191 ++++++++++++++++++ vendor/github.com/coreos/go-systemd/README.md | 54 +++++ .../coreos/go-systemd/daemon/sdnotify.go | 63 ++++++ .../coreos/go-systemd/daemon/sdnotify_test.go | 79 ++++++++ .../coreos/go-systemd/daemon/watchdog.go | 72 +++++++ .../coreos/go-systemd/daemon/watchdog_test.go | 85 ++++++++ vendor/github.com/coreos/go-systemd/test | 88 ++++++++ 14 files changed, 825 insertions(+), 1 deletion(-) create mode 100644 vendor/github.com/coreos/go-systemd/.travis.yml create mode 100644 vendor/github.com/coreos/go-systemd/CONTRIBUTING.md create mode 100644 vendor/github.com/coreos/go-systemd/DCO create mode 100644 vendor/github.com/coreos/go-systemd/Jenkinsfile create mode 100644 vendor/github.com/coreos/go-systemd/LICENSE create mode 100644 vendor/github.com/coreos/go-systemd/README.md create mode 100644 vendor/github.com/coreos/go-systemd/daemon/sdnotify.go create mode 100644 vendor/github.com/coreos/go-systemd/daemon/sdnotify_test.go create mode 100644 vendor/github.com/coreos/go-systemd/daemon/watchdog.go create mode 100644 vendor/github.com/coreos/go-systemd/daemon/watchdog_test.go create mode 100755 vendor/github.com/coreos/go-systemd/test diff --git a/Gopkg.lock b/Gopkg.lock index d7f7499f..49dc4ad0 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -31,6 +31,12 @@ packages = ["."] revision = "6cf43fdfd7a228cf3003ae23d10ddbf65e85997b" +[[projects]] + name = "github.com/coreos/go-systemd" + packages = ["daemon"] + revision = "d2196463941895ee908e13531a23a39feb9e1243" + version = "v15" + [[projects]] branch = "master" name = "github.com/dchest/safefile" @@ -135,6 +141,6 @@ [solve-meta] analyzer-name = "dep" analyzer-version = 1 - inputs-digest = "37c01e4336c75cb683760092743ea0e2419b43ad0775db39a46795d8a7a865aa" + inputs-digest = "bd47db362365a135ccf6bee5bcfcc4732b9e1aa6911e01c76de008dc3faf3844" solver-name = "gps-cdcl" solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml index 67adb72d..508c8c9a 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -49,3 +49,7 @@ [[constraint]] branch = "master" name = "github.com/kardianos/service" + +[[constraint]] + name = "github.com/coreos/go-systemd" + version = "15.0.0" diff --git a/dnscrypt-proxy/main.go b/dnscrypt-proxy/main.go index 4b99c123..a8276b14 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -10,6 +10,7 @@ import ( "sync" "time" + "github.com/coreos/go-systemd/daemon" "github.com/jedisct1/dlog" "github.com/kardianos/service" "golang.org/x/crypto/curve25519" @@ -156,6 +157,7 @@ func (proxy *Proxy) StartProxy() { liveServers, err := proxy.serversInfo.refresh(proxy) if liveServers > 0 { dlog.Noticef("dnscrypt-proxy %s is ready - live servers: %d", AppVersion, liveServers) + daemon.SdNotify(false, "READY=1") } else if err != nil { dlog.Error(err) dlog.Notice("dnscrypt-proxy is waiting for at least one server to be reachable") diff --git a/vendor/github.com/coreos/go-systemd/.travis.yml b/vendor/github.com/coreos/go-systemd/.travis.yml new file mode 100644 index 00000000..21fb7a01 --- /dev/null +++ b/vendor/github.com/coreos/go-systemd/.travis.yml @@ -0,0 +1,29 @@ +language: shell # We do everything inside Docker and don't want travis fiddling with steps or environment variables + +sudo: required + +services: + - docker + +env: + global: + - GOPATH=/opt + - BUILD_DIR=/opt/src/github.com/coreos/go-systemd + matrix: + - DOCKER_BASE=ubuntu:16.04 + - DOCKER_BASE=debian:stretch + +before_install: + - docker pull ${DOCKER_BASE} + - docker run --privileged -e GOPATH=${GOPATH} --cidfile=/tmp/cidfile ${DOCKER_BASE} /bin/bash -c "apt-get update && apt-get install -y build-essential git golang dbus libsystemd-dev libpam-systemd systemd-container && go get github.com/coreos/pkg/dlopen && go get github.com/godbus/dbus" + - docker commit `cat /tmp/cidfile` go-systemd/container-tests + - rm -f /tmp/cidfile + +install: + - docker run -d --cidfile=/tmp/cidfile --privileged -e GOPATH=${GOPATH} -v ${PWD}:${BUILD_DIR} go-systemd/container-tests /bin/systemd --system + +script: + - docker exec `cat /tmp/cidfile` /bin/bash -c "cd ${BUILD_DIR} && ./test" + +after_script: + - docker kill `cat /tmp/cidfile` diff --git a/vendor/github.com/coreos/go-systemd/CONTRIBUTING.md b/vendor/github.com/coreos/go-systemd/CONTRIBUTING.md new file mode 100644 index 00000000..0551ed53 --- /dev/null +++ b/vendor/github.com/coreos/go-systemd/CONTRIBUTING.md @@ -0,0 +1,77 @@ +# How to Contribute + +CoreOS projects are [Apache 2.0 licensed](LICENSE) and accept contributions via +GitHub pull requests. This document outlines some of the conventions on +development workflow, commit message formatting, contact points and other +resources to make it easier to get your contribution accepted. + +# Certificate of Origin + +By contributing to this project you agree to the Developer Certificate of +Origin (DCO). This document was created by the Linux Kernel community and is a +simple statement that you, as a contributor, have the legal right to make the +contribution. See the [DCO](DCO) file for details. + +# Email and Chat + +The project currently uses the general CoreOS email list and IRC channel: +- Email: [coreos-dev](https://groups.google.com/forum/#!forum/coreos-dev) +- IRC: #[coreos](irc://irc.freenode.org:6667/#coreos) IRC channel on freenode.org + +Please avoid emailing maintainers found in the MAINTAINERS file directly. They +are very busy and read the mailing lists. + +## Getting Started + +- Fork the repository on GitHub +- Read the [README](README.md) for build and test instructions +- Play with the project, submit bugs, submit patches! + +## Contribution Flow + +This is a rough outline of what a contributor's workflow looks like: + +- Create a topic branch from where you want to base your work (usually master). +- Make commits of logical units. +- Make sure your commit messages are in the proper format (see below). +- Push your changes to a topic branch in your fork of the repository. +- Make sure the tests pass, and add any new tests as appropriate. +- Submit a pull request to the original repository. + +Thanks for your contributions! + +### Coding Style + +CoreOS projects written in Go follow a set of style guidelines that we've documented +[here](https://github.com/coreos/docs/tree/master/golang). Please follow them when +working on your contributions. + +### Format of the Commit Message + +We follow a rough convention for commit messages that is designed to answer two +questions: what changed and why. The subject line should feature the what and +the body of the commit should describe the why. + +``` +scripts: add the test-cluster command + +this uses tmux to setup a test cluster that you can easily kill and +start for debugging. + +Fixes #38 +``` + +The format can be described more formally as follows: + +``` +: + + + +