Blame SOURCES/rhbz847285.patch

f43afa
From 1436fd6092bf724e8bc80c53c7bc3c71ff9835cc Mon Sep 17 00:00:00 2001
f43afa
From: Dave Brolley <brolley@redhat.com>
f43afa
Date: Wed, 12 Feb 2014 16:03:51 -0500
f43afa
Subject: [PATCH] RHBZ 847285: Don't allow 'systemctl reload'.
f43afa
f43afa
'reload' is not supported by the stap-server script. The
f43afa
ExecReload line in stap-server.service was calling
f43afa
'stap-server restart' which stops the server and starts a
f43afa
new one. This behavior is not expected or tolerated by systemd
f43afa
which promptly sends SIGKILL to the new server.
f43afa
f43afa
We cannot supported 'reload' in systemctl. Note that 'restart'
f43afa
is supported and works properly.
f43afa
---
f43afa
 stap-server.service | 1 -
f43afa
 1 file changed, 1 deletion(-)
f43afa
f43afa
diff --git a/stap-server.service b/stap-server.service
f43afa
index 000ee74..76e2196 100644
f43afa
--- a/stap-server.service
f43afa
+++ b/stap-server.service
f43afa
@@ -8,7 +8,6 @@ After=network.target avahi-daemon.service
f43afa
 Type=oneshot
f43afa
 User=stap-server
f43afa
 ExecStart=/usr/bin/stap-server start
f43afa
-ExecReload=/usr/bin/stap-server restart
f43afa
 ExecStop=/usr/bin/stap-server stop
f43afa
 RemainAfterExit=yes 
f43afa
  
f43afa
-- 
f43afa
1.8.3.1
f43afa