Blame SOURCES/tigervnc-systemd-service.patch

acbd46
From 40f104ffe1e36df9613f8d316f616fb2b089cc86 Mon Sep 17 00:00:00 2001
acbd46
From: Jan Grulich <jgrulich@redhat.com>
acbd46
Date: Tue, 29 Sep 2020 13:37:16 +0200
acbd46
Subject: [PATCH] Use /run instead of /var/run which is just a symlink
acbd46
acbd46
---
acbd46
 unix/vncserver/selinux/vncsession.fc | 2 +-
acbd46
 unix/vncserver/vncserver@.service.in | 2 +-
acbd46
 unix/vncserver/vncsession.c          | 2 +-
acbd46
 3 files changed, 3 insertions(+), 3 deletions(-)
acbd46
acbd46
diff --git a/unix/vncserver/selinux/vncsession.fc b/unix/vncserver/selinux/vncsession.fc
acbd46
index 121cdd237..ae768baa4 100644
acbd46
--- a/unix/vncserver/selinux/vncsession.fc
acbd46
+++ b/unix/vncserver/selinux/vncsession.fc
acbd46
@@ -23,4 +23,4 @@ HOME_ROOT/\.vnc(/.*)?      gen_context(system_u:object_r:xdm_home_t,s0)
acbd46
 /usr/sbin/vncsession			--	gen_context(system_u:object_r:vnc_session_exec_t,s0)
acbd46
 /usr/libexec/vncsession-start		--	gen_context(system_u:object_r:vnc_session_exec_t,s0)
acbd46
 
acbd46
-/var/run/vncsession-:[0-9]*\.pid	--      gen_context(system_u:object_r:vnc_session_var_run_t,s0)
acbd46
+/run/vncsession-:[0-9]*\.pid	--      gen_context(system_u:object_r:vnc_session_var_run_t,s0)
acbd46
diff --git a/unix/vncserver/vncserver@.service.in b/unix/vncserver/vncserver@.service.in
acbd46
index 584ecf4b1..5624dff76 100644
acbd46
--- a/unix/vncserver/vncserver@.service.in
acbd46
+++ b/unix/vncserver/vncserver@.service.in
acbd46
@@ -36,7 +36,7 @@ After=syslog.target network.target
acbd46
 [Service]
acbd46
 Type=forking
acbd46
 ExecStart=@CMAKE_INSTALL_FULL_LIBEXECDIR@/vncsession-start %i
acbd46
-PIDFile=/var/run/vncsession-%i.pid
acbd46
+PIDFile=/run/vncsession-%i.pid
acbd46
 SELinuxContext=system_u:system_r:vnc_session_t:s0
acbd46
 
acbd46
 [Install]
acbd46
diff --git a/unix/vncserver/vncsession.c b/unix/vncserver/vncsession.c
acbd46
index 3e0c98f0f..2b47f5f55 100644
acbd46
--- a/unix/vncserver/vncsession.c
acbd46
+++ b/unix/vncserver/vncsession.c
acbd46
@@ -543,7 +543,7 @@ main(int argc, char **argv)
acbd46
     }
acbd46
 
acbd46
     snprintf(pid_file, sizeof(pid_file),
acbd46
-             "/var/run/vncsession-%s.pid", display);
acbd46
+             "/run/vncsession-%s.pid", display);
acbd46
     f = fopen(pid_file, "w");
acbd46
     if (f == NULL) {
acbd46
         syslog(LOG_ERR, "Failure creating pid file \"%s\": %s",