From: Daan De Meyer Date: Wed, 12 Apr 2023 09:56:00 +0000 (+0200) Subject: notify: Add EXIT_STATUS field X-Git-Tag: v254-rc1~742^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=623a00020f;p=thirdparty%2Fsystemd.git notify: Add EXIT_STATUS field Whenever one of our tools or daemons exits, let's send the exit status via sd-notify in the EXIT_STATUS field. --- diff --git a/man/sd_notify.xml b/man/sd_notify.xml index 39bddc9d15e..f93542e329b 100644 --- a/man/sd_notify.xml +++ b/man/sd_notify.xml @@ -170,6 +170,13 @@ BUSERROR=org.freedesktop.DBus.Error.TimedOut + + EXIT_STATUS=… + + If a service exits, the return value of its main() function. + + + MAINPID=… diff --git a/src/shared/main-func.h b/src/shared/main-func.h index 3dc49922821..3f6b6a849d2 100644 --- a/src/shared/main-func.h +++ b/src/shared/main-func.h @@ -21,6 +21,7 @@ r = impl; \ if (r < 0) \ (void) sd_notifyf(0, "ERRNO=%i", -r); \ + (void) sd_notifyf(0, "EXIT_STATUS=%i", ret); \ ask_password_agent_close(); \ polkit_agent_close(); \ pager_close(); \