socket: when the socket is supposed to stop, don't accept any connections anymore

This commit is contained in:
Lennart Poettering 2010-07-13 00:27:27 +02:00
parent a974d58e83
commit ba3e67a785
4 changed files with 22 additions and 0 deletions

View File

@ -568,6 +568,13 @@ static void automount_enter_runnning(Automount *a) {
dbus_error_init(&error);
/* We don't take mount requests anymore if we are supposed to
* shut down anyway */
if (a->meta.job && a->meta.job->type == JOB_STOP) {
automount_send_ready(a, -EHOSTDOWN);
return;
}
mkdir_p(a->where, a->directory_mode);
/* Before we do anything, let's see if somebody is playing games with us? */

View File

@ -304,6 +304,10 @@ static void path_enter_running(Path *p) {
assert(p);
dbus_error_init(&error);
/* Don't start job if we are supposed to go down */
if (p->meta.job && p->meta.job->type == JOB_STOP)
return;
if ((r = manager_add_job(p->meta.manager, JOB_START, p->unit, JOB_REPLACE, true, &error, NULL)) < 0)
goto fail;

View File

@ -1030,6 +1030,13 @@ static void socket_enter_running(Socket *s, int cfd) {
assert(s);
dbus_error_init(&error);
/* We don't take connections anymore if we are supposed to
* shut down anyway */
if (s->meta.job && s->meta.job->type == JOB_STOP) {
close_nointr_nofail(cfd);
return;
}
if (cfd < 0) {
if ((r = manager_add_job(s->meta.manager, JOB_START, UNIT(s->service), JOB_REPLACE, true, &error, NULL)) < 0)
goto fail;

View File

@ -268,6 +268,10 @@ static void timer_enter_running(Timer *t) {
assert(t);
dbus_error_init(&error);
/* Don't start job if we are supposed to go down */
if (t->meta.job && t->meta.job->type == JOB_STOP)
return;
if ((r = manager_add_job(t->meta.manager, JOB_START, t->unit, JOB_REPLACE, true, &error, NULL)) < 0)
goto fail;