summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-08-09 23:33:48 +0200
committerLennart Poettering <lennart@poettering.net>2010-08-09 23:53:49 +0200
commit47342320a097523d93040cdd627e237a420572c5 (patch)
tree463f92f1fb526d26e07a7d2419bb98ed0e4ab3f8
parent76143638fdabee59dcd5db81fe46c900299da425 (diff)
downloadsystemd-47342320a097523d93040cdd627e237a420572c5.tar.gz
main: fix auto restarting of units after a configuration reload
-rw-r--r--fixme2
-rw-r--r--src/service.c8
-rw-r--r--src/service.h2
3 files changed, 6 insertions, 6 deletions
diff --git a/fixme b/fixme
index 373d100fa6..186d3c704a 100644
--- a/fixme
+++ b/fixme
@@ -82,8 +82,6 @@
* don't show file not found msgs for irrelevant units
-* getty doesn't respawn
-
External:
* sysv functions should color when stdout is tty, not stdin
diff --git a/src/service.c b/src/service.c
index d6086ca410..318d8a7dc4 100644
--- a/src/service.c
+++ b/src/service.c
@@ -1500,7 +1500,7 @@ static void service_enter_dead(Service *s, bool success, bool allow_restart) {
s->failure = true;
if (allow_restart &&
- s->allow_restart &&
+ !s->forbid_restart &&
(s->restart == SERVICE_RESTART_ALWAYS ||
(s->restart == SERVICE_RESTART_ON_SUCCESS && !s->failure))) {
@@ -1511,6 +1511,8 @@ static void service_enter_dead(Service *s, bool success, bool allow_restart) {
} else
service_set_state(s, s->failure ? SERVICE_MAINTENANCE : SERVICE_DEAD);
+ s->forbid_restart = false;
+
return;
fail:
@@ -1932,7 +1934,7 @@ static int service_start(Unit *u) {
s->failure = false;
s->main_pid_known = false;
- s->allow_restart = true;
+ s->forbid_restart = false;
service_enter_start_pre(s);
return 0;
@@ -1945,7 +1947,7 @@ static int service_stop(Unit *u) {
/* This is a user request, so don't do restarts on this
* shutdown. */
- s->allow_restart = false;
+ s->forbid_restart = true;
/* Already on it */
if (s->state == SERVICE_STOP ||
diff --git a/src/service.h b/src/service.h
index 3e18d221d7..725e2135f1 100644
--- a/src/service.h
+++ b/src/service.h
@@ -115,7 +115,7 @@ struct Service {
bool failure:1;
bool main_pid_known:1;
bool bus_name_good:1;
- bool allow_restart:1;
+ bool forbid_restart:1;
bool got_socket_fd:1;
bool sysv_has_lsb:1;
bool sysv_enabled:1;