b8c242
From f97c6d921fb6b3d7ba88e064b03d3dd767df9ba1 Mon Sep 17 00:00:00 2001
b8c242
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
b8c242
Date: Tue, 16 Oct 2018 15:07:42 +0200
b8c242
Subject: [PATCH] core: allow services with no commands but SuccessAction set
b8c242
b8c242
(cherry picked from commit 3f00d379fa6221a4570c8cd955afd9b661787db9)
b8c242
b8c242
Related: #1860899
b8c242
---
b8c242
 src/core/service.c | 13 +++++++++----
b8c242
 1 file changed, 9 insertions(+), 4 deletions(-)
b8c242
b8c242
diff --git a/src/core/service.c b/src/core/service.c
b8c242
index 4da1c5accb..7969bbf071 100644
b8c242
--- a/src/core/service.c
b8c242
+++ b/src/core/service.c
b8c242
@@ -556,8 +556,13 @@ static int service_verify(Service *s) {
b8c242
                 }
b8c242
         }
b8c242
 
b8c242
-        if (!s->exec_command[SERVICE_EXEC_START] && !s->exec_command[SERVICE_EXEC_STOP]) {
b8c242
-                log_unit_error(UNIT(s), "Service lacks both ExecStart= and ExecStop= setting. Refusing.");
b8c242
+        if (!s->exec_command[SERVICE_EXEC_START] && !s->exec_command[SERVICE_EXEC_STOP]
b8c242
+            && UNIT(s)->success_action == EMERGENCY_ACTION_NONE) {
b8c242
+                /* FailureAction= only makes sense if one of the start or stop commands is specified.
b8c242
+                 * SuccessAction= will be executed unconditionally if no commands are specified. Hence,
b8c242
+                 * either a command or SuccessAction= are required. */
b8c242
+
b8c242
+                log_unit_error(UNIT(s), "Service has no ExecStart=, ExecStop=, or SuccessAction=. Refusing.");
b8c242
                 return -ENOEXEC;
b8c242
         }
b8c242
 
b8c242
@@ -566,8 +571,8 @@ static int service_verify(Service *s) {
b8c242
                 return -ENOEXEC;
b8c242
         }
b8c242
 
b8c242
-        if (!s->remain_after_exit && !s->exec_command[SERVICE_EXEC_START]) {
b8c242
-                log_unit_error(UNIT(s), "Service has no ExecStart= setting, which is only allowed for RemainAfterExit=yes services. Refusing.");
b8c242
+        if (!s->remain_after_exit && !s->exec_command[SERVICE_EXEC_START] && UNIT(s)->success_action == EMERGENCY_ACTION_NONE) {
b8c242
+                log_unit_error(UNIT(s), "Service has no ExecStart= and no SuccessAction= settings and does not have RemainAfterExit=yes set. Refusing.");
b8c242
                 return -ENOEXEC;
b8c242
         }
b8c242