From e19907c7ea6a52fb536484e11af11670f33c3d09 Mon Sep 17 00:00:00 2001 From: Eric MacDonald Date: Fri, 15 Feb 2019 15:21:25 -0500 Subject: [PATCH] Fix host_agent service file permissions Systemd expects service files to be world readable or it prints a warning log. This update adds the world readable attribute to the host agent's service file to avoid the log noise. Change-Id: I577440bb99d4b69bb868f27b830fd6073c5a79b2 Signed-off-by: Eric MacDonald --- guest-comm/centos/build_srpm.data | 2 +- guest-comm/host-guest-comm-2.0/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/guest-comm/centos/build_srpm.data b/guest-comm/centos/build_srpm.data index 6c5b4dcf..ae73381c 100644 --- a/guest-comm/centos/build_srpm.data +++ b/guest-comm/centos/build_srpm.data @@ -1,2 +1,2 @@ SRC_DIR="host-guest-comm-2.0" -TIS_PATCH_VER=5 +TIS_PATCH_VER=6 diff --git a/guest-comm/host-guest-comm-2.0/Makefile b/guest-comm/host-guest-comm-2.0/Makefile index 6bbbaca5..9e7f1800 100644 --- a/guest-comm/host-guest-comm-2.0/Makefile +++ b/guest-comm/host-guest-comm-2.0/Makefile @@ -140,7 +140,7 @@ install: install -m 644 server_group.h $(DESTDIR)/usr/src/debug/host-guest-comm-$(VERSION)/server_group.h install -m 750 scripts/host_agent $(SYSCONFDIR)/init.d/host_agent - install -m 640 scripts/host_agent.service $(UNITDIR)/host_agent.service + install -m 644 scripts/host_agent.service $(UNITDIR)/host_agent.service install -m 644 scripts/guest-agent.service $(UNITDIR)/guest-agent.service install -m 640 scripts/host_agent.conf $(SYSCONFDIR)/pmon.d/host_agent.conf install -m 750 bin/host_agent $(DESTDIR)/usr/sbin/host_agent