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>
This commit is contained in:
Valentin Rothberg 2020-01-16 11:59:39 +01:00
parent 279bf40ab1
commit c3d90179dc
2 changed files with 2 additions and 2 deletions

View File

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

View File

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