summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2020-01-16 11:59:39 +0100
committerValentin Rothberg <rothberg@redhat.com>2020-01-16 14:05:39 +0100
commitc3d90179dcd550d2ad6df7a7ea07b143a3f3beab (patch)
tree7a0499cfd20175a42b58371324c2638c1a40d6d6
parent279bf40ab1d8427acda76a4e99fa7c3ba7b19ba6 (diff)
downloadpodman-c3d90179dcd550d2ad6df7a7ea07b143a3f3beab.tar.gz
podman-c3d90179dcd550d2ad6df7a7ea07b143a3f3beab.tar.bz2
podman-c3d90179dcd550d2ad6df7a7ea07b143a3f3beab.zip
make binaries: include service
Include the service into make binaries such that we're it's being build in the CI. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
-rw-r--r--Makefile2
-rw-r--r--pkg/api/server/server.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 62ed1e21f..dabfc65dd 100644
--- a/Makefile
+++ b/Makefile
@@ -322,7 +322,7 @@ system.test-binary: .install.ginkgo
vagrant-check:
BOX=$(BOX) sh ./vagrant.sh
-binaries: varlink_generate podman podman-remote ## Build podman
+binaries: varlink_generate podman podman-remote service ## Build podman
install.catatonit:
./hack/install_catatonit.sh
diff --git a/pkg/api/server/server.go b/pkg/api/server/server.go
index b27b6360d..2bda5ad01 100644
--- a/pkg/api/server/server.go
+++ b/pkg/api/server/server.go
@@ -168,7 +168,7 @@ func (s *APIServer) Serve() error {
case err := <-errChan:
return err
case sig := <-sigChan:
- logrus.Info("APIServer terminated by signal %v", sig)
+ logrus.Infof("APIServer terminated by signal %v", sig)
}
return nil