Index: modules/arch/unix/mod_systemd.c =================================================================== --- modules/arch/unix/mod_systemd.c (revision 1840316) +++ modules/arch/unix/mod_systemd.c (working copy) @@ -75,6 +75,12 @@ if (!ap_extended_status) { /* Nothing useful to report with ExtendedStatus disabled. */ + rv = sd_notifyf(0, "READY=1\n" + "STATUS=ExtendedStatus is disabled."); + if (rv < 0) { + ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, APLOGNO() + "sd_notifyf returned an error %d", rv); + } return DECLINED; }