Activity log for bug #1832182

Date Who What changed Old value New value Message
2019-06-10 07:31:32 RedScourge bug added bug
2019-06-10 07:31:32 RedScourge attachment added diff of /usr/sbin/apache2ctl after correcting issue https://bugs.launchpad.net/bugs/1832182/+attachment/5269883/+files/apache2ctl_diff.txt
2019-06-10 08:19:48 Ubuntu Foundations Team Bug Bot tags bionic systemd xenial bionic patch systemd xenial
2019-06-10 08:19:57 Ubuntu Foundations Team Bug Bot bug added subscriber Ubuntu Review Team
2019-06-11 19:25:22 Andreas Hasenack bug watch added https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927302
2019-06-11 19:25:39 Andreas Hasenack bug task added apache2 (Debian)
2019-06-11 19:32:11 Andreas Hasenack apache2 (Ubuntu): status New Triaged
2019-06-11 19:40:57 Andreas Hasenack tags bionic patch systemd xenial bionic patch server-next systemd xenial
2019-06-11 20:56:05 Andreas Hasenack apache2 (Ubuntu): importance Undecided Low
2019-06-11 20:56:14 Andreas Hasenack bug added subscriber Ubuntu Server
2019-06-11 22:27:05 Bug Watch Updater apache2 (Debian): status Unknown New
2019-09-03 20:49:12 RedScourge attachment removed diff of /usr/sbin/apache2ctl after correcting issue https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1832182/+attachment/5269883/+files/apache2ctl_diff.txt
2019-09-03 20:52:35 RedScourge attachment added actual diff -u output of before+after editing /usr/sbin/apachectl from apache2 version 2.4.18-2ubuntu3.12 in 16.04 LTS https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1832182/+attachment/5286568/+files/apachectl_patch.diff
2019-09-04 19:24:25 Bryce Harrington apache2 (Ubuntu): importance Low High
2019-11-05 15:26:16 faisal apache2 (Ubuntu): status Triaged Fix Committed
2019-11-26 21:50:40 faisal apache2 (Ubuntu): status Fix Committed Fix Released
2019-11-27 18:16:20 Bryce Harrington apache2 (Ubuntu): status Fix Released Triaged
2020-02-29 14:16:29 faisal affects apache2 (Ubuntu) apache2 (Juju Charms Collection)
2020-02-29 22:23:49 Haw Loeung affects apache2 (Juju Charms Collection) apache2 (Ubuntu)
2020-07-22 22:07:51 Haw Loeung apache2 (Debian): importance Unknown High
2020-08-14 03:09:33 Bug Watch Updater apache2 (Debian): importance High Unknown
2020-09-28 19:41:44 Bryce Harrington description When starting or restarting Apache via the /usr/sbin/apache2ctl script, systemd becomes unaware of the state of Apache, causing "systemctl status apache2.service" to report "Active: inactive (dead)". Below I describe the issue and a fix; attached is the output of the diff command after I fixed it on my own 18.04 LTS system. Description of issue and impact: Despite this issue, Apache itself generally runs fine, so this is not an absolutely critical issue, however as both "systemctl status apache2.service" and "service apache2 status" become unable to detect its running state, and as some people may be scripting Apache service checks using those commands, they may experience server outages when they migrate from 14.04 LTS to 16.04 LTS or 18.04 LTS, so this could potentially have serious consequences. I suspect this caused or at least contributed to at least one outage of a web server I am responsible for, as the web file backup script was unable to restart the apache process after stopping it. This issue affects Ubuntu 16.04 LTS when using "apache2ctl start" or "apache2ctl graceful", and Ubuntu 18.04 LTS just when using "apache2ctl graceful". Fix: The fix is made somewhat obvious due to the fact that the issue was fixed for "apache2ctl start" in 18.04 LTS , by replacing the regular call which resolves to "/usr/sbin/apache2 -k start" with a check for presence of systemd, followed by invoking "systemctl start apache2.service" if that check is affirmative, or falling back to the old start command if that check is negative. Attached is a diff of the file before and after I copied the fixed invocation from the "star"t subsection to the "graceful" subsection in 18.04 LTS. A fix for 16.04 LTS would require copying that block both into the "start" and "graceful" subsections. Additional information: lsb_release -rd : Description: Ubuntu 18.04.2 LTS Release: 18.04 apt-cache policy apache2: apache2: Installed: 2.4.29-1ubuntu4.6 Candidate: 2.4.29-1ubuntu4.6 When starting or restarting Apache via the /usr/sbin/apache2ctl script, systemd becomes unaware of the state of Apache, causing "systemctl status apache2.service" to report "Active: inactive (dead)". Below I describe the issue and a fix; attached is the output of the diff command after I fixed it on my own 18.04 LTS system. [Impact] Description of issue and impact: Despite this issue, Apache itself generally runs fine, so this is not an absolutely critical issue, however as both "systemctl status apache2.service" and "service apache2 status" become unable to detect its running state, and as some people may be scripting Apache service checks using those commands, they may experience server outages when they migrate from 14.04 LTS to 16.04 LTS or 18.04 LTS, so this could potentially have serious consequences. I suspect this caused or at least contributed to at least one outage of a web server I am responsible for, as the web file backup script was unable to restart the apache process after stopping it. This issue affects Ubuntu 16.04 LTS when using "apache2ctl start" or "apache2ctl graceful", and Ubuntu 18.04 LTS just when using "apache2ctl graceful". [Test Case] root@server:/usr/local/sbin# apache2ctl stop root@server:/usr/local/sbin# apache2ctl graceful httpd not running, trying to start root@server:/usr/local/sbin# systemctl status apache2.service ? apache2.service - The Apache HTTP Server Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled) Drop-In: /lib/systemd/system/apache2.service.d +-apache2-systemd.conf Active: inactive (dead) since Mon 2019-06-10 01:04:13 MDT; 17s ago Process: 27370 ExecStop=/usr/sbin/apachectl stop (code=exited, status=0/SUCCESS) Process: 11462 ExecReload=/usr/sbin/apachectl graceful (code=exited, status=0/SUCCESS) Main PID: 1849 (code=exited, status=0/SUCCESS) Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server systemd[1]: Started The Apache HTTP Server. Jun 09 06:25:04 server systemd[1]: Reloading The Apache HTTP Server. Jun 09 06:25:04 server systemd[1]: Reloaded The Apache HTTP Server. Jun 10 01:04:13 server apachectl[27370]: httpd (no pid file) not running Output after customizing the apache2ctl script and restarting it: root@server:/usr/local/sbin# apache2ctl_custom graceful Invoking 'systemctl start apache2'. Use 'systemctl status apache2' for more info. root@server:/usr/local/sbin# systemctl status apache2.service ? apache2.service - The Apache HTTP Server Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled) Drop-In: /lib/systemd/system/apache2.service.d +-apache2-systemd.conf Active: active (running) since Mon 2019-06-10 01:04:50 MDT; 4s ago Process: 27370 ExecStop=/usr/sbin/apachectl stop (code=exited, status=0/SUCCESS) Process: 11462 ExecReload=/usr/sbin/apachectl graceful (code=exited, status=0/SUCCESS) Process: 27432 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS) Main PID: 27444 (apache2) Tasks: 6 (limit: 2318) CGroup: /system.slice/apache2.service +-27444 /usr/sbin/apache2 -k start +-27448 /usr/sbin/apache2 -k start +-27449 /usr/sbin/apache2 -k start +-27451 /usr/sbin/apache2 -k start +-27454 /usr/sbin/apache2 -k start +-27455 /usr/sbin/apache2 -k start Jun 10 01:04:50 server systemd[1]: Starting The Apache HTTP Server... Jun 10 01:04:50 server systemd[1]: Started The Apache HTTP Server. [Fix] The fix is made somewhat obvious due to the fact that the issue was fixed for "apache2ctl start" in 18.04 LTS , by replacing the regular call which resolves to "/usr/sbin/apache2 -k start" with a check for presence of systemd, followed by invoking "systemctl start apache2.service" if that check is affirmative, or falling back to the old start command if that check is negative. Attached is a diff of the file before and after I copied the fixed invocation from the "star"t subsection to the "graceful" subsection in 18.04 LTS. A fix for 16.04 LTS would require copying that block both into the "start" and "graceful" subsections. [Additional information] lsb_release -rd : Description: Ubuntu 18.04.2 LTS Release: 18.04 apt-cache policy apache2: apache2:   Installed: 2.4.29-1ubuntu4.6   Candidate: 2.4.29-1ubuntu4.6
2020-09-28 19:41:59 Bryce Harrington nominated for series Ubuntu Groovy
2020-09-28 19:41:59 Bryce Harrington bug task added apache2 (Ubuntu Groovy)
2020-09-28 19:41:59 Bryce Harrington nominated for series Ubuntu Focal
2020-09-28 19:41:59 Bryce Harrington bug task added apache2 (Ubuntu Focal)
2020-09-28 19:42:05 Bryce Harrington apache2 (Ubuntu Focal): status New Triaged
2020-09-28 19:42:07 Bryce Harrington apache2 (Ubuntu Focal): importance Undecided High
2020-09-28 19:48:59 Bryce Harrington nominated for series Ubuntu Bionic
2020-09-28 19:48:59 Bryce Harrington bug task added apache2 (Ubuntu Bionic)
2020-09-28 19:48:59 Bryce Harrington nominated for series Ubuntu Xenial
2020-09-28 19:48:59 Bryce Harrington bug task added apache2 (Ubuntu Xenial)
2020-09-28 19:49:05 Bryce Harrington apache2 (Ubuntu Bionic): status New Triaged
2020-09-28 19:49:07 Bryce Harrington apache2 (Ubuntu Xenial): status New Triaged
2020-09-28 19:49:09 Bryce Harrington apache2 (Ubuntu Bionic): importance Undecided High
2020-09-28 19:49:12 Bryce Harrington apache2 (Ubuntu Xenial): importance Undecided High
2020-09-30 00:22:42 Bryce Harrington apache2 (Ubuntu Groovy): assignee Bryce Harrington (bryce)
2020-10-05 23:16:51 Bryce Harrington description When starting or restarting Apache via the /usr/sbin/apache2ctl script, systemd becomes unaware of the state of Apache, causing "systemctl status apache2.service" to report "Active: inactive (dead)". Below I describe the issue and a fix; attached is the output of the diff command after I fixed it on my own 18.04 LTS system. [Impact] Description of issue and impact: Despite this issue, Apache itself generally runs fine, so this is not an absolutely critical issue, however as both "systemctl status apache2.service" and "service apache2 status" become unable to detect its running state, and as some people may be scripting Apache service checks using those commands, they may experience server outages when they migrate from 14.04 LTS to 16.04 LTS or 18.04 LTS, so this could potentially have serious consequences. I suspect this caused or at least contributed to at least one outage of a web server I am responsible for, as the web file backup script was unable to restart the apache process after stopping it. This issue affects Ubuntu 16.04 LTS when using "apache2ctl start" or "apache2ctl graceful", and Ubuntu 18.04 LTS just when using "apache2ctl graceful". [Test Case] root@server:/usr/local/sbin# apache2ctl stop root@server:/usr/local/sbin# apache2ctl graceful httpd not running, trying to start root@server:/usr/local/sbin# systemctl status apache2.service ? apache2.service - The Apache HTTP Server Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled) Drop-In: /lib/systemd/system/apache2.service.d +-apache2-systemd.conf Active: inactive (dead) since Mon 2019-06-10 01:04:13 MDT; 17s ago Process: 27370 ExecStop=/usr/sbin/apachectl stop (code=exited, status=0/SUCCESS) Process: 11462 ExecReload=/usr/sbin/apachectl graceful (code=exited, status=0/SUCCESS) Main PID: 1849 (code=exited, status=0/SUCCESS) Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server systemd[1]: Started The Apache HTTP Server. Jun 09 06:25:04 server systemd[1]: Reloading The Apache HTTP Server. Jun 09 06:25:04 server systemd[1]: Reloaded The Apache HTTP Server. Jun 10 01:04:13 server apachectl[27370]: httpd (no pid file) not running Output after customizing the apache2ctl script and restarting it: root@server:/usr/local/sbin# apache2ctl_custom graceful Invoking 'systemctl start apache2'. Use 'systemctl status apache2' for more info. root@server:/usr/local/sbin# systemctl status apache2.service ? apache2.service - The Apache HTTP Server Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled) Drop-In: /lib/systemd/system/apache2.service.d +-apache2-systemd.conf Active: active (running) since Mon 2019-06-10 01:04:50 MDT; 4s ago Process: 27370 ExecStop=/usr/sbin/apachectl stop (code=exited, status=0/SUCCESS) Process: 11462 ExecReload=/usr/sbin/apachectl graceful (code=exited, status=0/SUCCESS) Process: 27432 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS) Main PID: 27444 (apache2) Tasks: 6 (limit: 2318) CGroup: /system.slice/apache2.service +-27444 /usr/sbin/apache2 -k start +-27448 /usr/sbin/apache2 -k start +-27449 /usr/sbin/apache2 -k start +-27451 /usr/sbin/apache2 -k start +-27454 /usr/sbin/apache2 -k start +-27455 /usr/sbin/apache2 -k start Jun 10 01:04:50 server systemd[1]: Starting The Apache HTTP Server... Jun 10 01:04:50 server systemd[1]: Started The Apache HTTP Server. [Fix] The fix is made somewhat obvious due to the fact that the issue was fixed for "apache2ctl start" in 18.04 LTS , by replacing the regular call which resolves to "/usr/sbin/apache2 -k start" with a check for presence of systemd, followed by invoking "systemctl start apache2.service" if that check is affirmative, or falling back to the old start command if that check is negative. Attached is a diff of the file before and after I copied the fixed invocation from the "star"t subsection to the "graceful" subsection in 18.04 LTS. A fix for 16.04 LTS would require copying that block both into the "start" and "graceful" subsections. [Additional information] lsb_release -rd : Description: Ubuntu 18.04.2 LTS Release: 18.04 apt-cache policy apache2: apache2:   Installed: 2.4.29-1ubuntu4.6   Candidate: 2.4.29-1ubuntu4.6 [Impact] Unattended upgrade will attempt to gracefully reload the Apache2 httpd service, but it reloads apache directly, not via systemd, so systemctl will mis-report the true status. This can cause unexpected and unnecessary server outages when e.g. upgrading from one LTS to another. [Test Case] root@server:/usr/local/sbin# apache2ctl stop root@server:/usr/local/sbin# apache2ctl graceful httpd not running, trying to start root@server:/usr/local/sbin# systemctl status apache2.service ? apache2.service - The Apache HTTP Server    Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)   Drop-In: /lib/systemd/system/apache2.service.d            +-apache2-systemd.conf    Active: inactive (dead) since Mon 2019-06-10 01:04:13 MDT; 17s ago   Process: 27370 ExecStop=/usr/sbin/apachectl stop (code=exited, status=0/SUCCESS)   Process: 11462 ExecReload=/usr/sbin/apachectl graceful (code=exited, status=0/SUCCESS)  Main PID: 1849 (code=exited, status=0/SUCCESS) Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server apachectl[1408]: AH00112: Warning: DocumentRoot [/srv/apache2/www/... Jun 08 19:11:24 server systemd[1]: Started The Apache HTTP Server. Jun 09 06:25:04 server systemd[1]: Reloading The Apache HTTP Server. Jun 09 06:25:04 server systemd[1]: Reloaded The Apache HTTP Server. Jun 10 01:04:13 server apachectl[27370]: httpd (no pid file) not running Output after customizing the apache2ctl script and restarting it: root@server:/usr/local/sbin# apache2ctl_custom graceful Invoking 'systemctl start apache2'. Use 'systemctl status apache2' for more info. root@server:/usr/local/sbin# systemctl status apache2.service ? apache2.service - The Apache HTTP Server    Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)   Drop-In: /lib/systemd/system/apache2.service.d            +-apache2-systemd.conf    Active: active (running) since Mon 2019-06-10 01:04:50 MDT; 4s ago   Process: 27370 ExecStop=/usr/sbin/apachectl stop (code=exited, status=0/SUCCESS)   Process: 11462 ExecReload=/usr/sbin/apachectl graceful (code=exited, status=0/SUCCESS)   Process: 27432 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS)  Main PID: 27444 (apache2)     Tasks: 6 (limit: 2318)    CGroup: /system.slice/apache2.service            +-27444 /usr/sbin/apache2 -k start            +-27448 /usr/sbin/apache2 -k start            +-27449 /usr/sbin/apache2 -k start            +-27451 /usr/sbin/apache2 -k start            +-27454 /usr/sbin/apache2 -k start            +-27455 /usr/sbin/apache2 -k start Jun 10 01:04:50 server systemd[1]: Starting The Apache HTTP Server... Jun 10 01:04:50 server systemd[1]: Started The Apache HTTP Server. [Fix] The fix is made somewhat obvious due to the fact that the issue was fixed for "apache2ctl start" in 18.04 LTS by replacing the regular call (which resolves to "/usr/sbin/apache2 -k start") with a check for presence of systemd, followed by an invocation of "systemctl start apache2.service" if that check is affirmative, or falling back to the old start command if that check is negative. Attached to this bug report is a diff of the file before and after I copied the fixed invocation from the "start" subsection to the "graceful" subsection in 18.04 LTS. A fix for 16.04 LTS would require copying that block both into the "start" and "graceful" subsections. [Regression Potential] This alters the behavior of Debian's apache2ctl script for managing the service state. No other Apache2 code is modified. Thus things to watch for new regressions would deal with the apache service's state itself, not crashes or behavioral changes. With a manual sysadmin-supervised service restart, if there are problems the sysadmin can intervene. The real risk of regression here would be for unsupervised or automated service updates. [Original Report] When starting or restarting Apache via the /usr/sbin/apache2ctl script, systemd becomes unaware of the state of Apache, causing "systemctl status apache2.service" to report "Active: inactive (dead)". Below I describe the issue and a fix; attached is the output of the diff command after I fixed it on my own 18.04 LTS system. Despite this issue, Apache itself generally runs fine, so this is not an absolutely critical issue, however as both "systemctl status apache2.service" and "service apache2 status" become unable to detect its running state, and as some people may be scripting Apache service checks using those commands, they may experience server outages when they migrate from 14.04 LTS to 16.04 LTS or 18.04 LTS, so this could potentially have serious consequences. I suspect this caused or at least contributed to at least one outage of a web server I am responsible for, as the web file backup script was unable to restart the apache process after stopping it. This issue affects Ubuntu 16.04 LTS when using "apache2ctl start" or "apache2ctl graceful", and Ubuntu 18.04 LTS just when using "apache2ctl graceful". [Additional information] lsb_release -rd : Description: Ubuntu 18.04.2 LTS Release: 18.04 apt-cache policy apache2: apache2:   Installed: 2.4.29-1ubuntu4.6   Candidate: 2.4.29-1ubuntu4.6
2020-10-06 00:25:41 Launchpad Janitor merge proposal linked https://code.launchpad.net/~bryce/ubuntu/+source/apache2/+git/apache2/+merge/391856
2020-11-05 20:01:36 Bryce Harrington nominated for series Ubuntu Hirsute
2020-11-05 20:01:36 Bryce Harrington bug task added apache2 (Ubuntu Hirsute)
2020-11-06 00:39:11 Launchpad Janitor merge proposal linked https://code.launchpad.net/~bryce/ubuntu/+source/apache2/+git/apache2/+merge/393426
2020-11-13 02:37:35 Launchpad Janitor merge proposal linked https://code.launchpad.net/~bryce/ubuntu/+source/apache2/+git/apache2/+merge/393677
2020-11-13 02:38:17 Launchpad Janitor merge proposal linked https://code.launchpad.net/~bryce/ubuntu/+source/apache2/+git/apache2/+merge/393679
2020-11-13 02:38:20 Launchpad Janitor merge proposal linked https://code.launchpad.net/~bryce/ubuntu/+source/apache2/+git/apache2/+merge/393680
2020-11-16 22:06:00 Launchpad Janitor merge proposal linked https://code.launchpad.net/~bryce/ubuntu/+source/apache2/+git/apache2/+merge/393678
2020-11-19 01:37:17 Bryce Harrington apache2 (Ubuntu Xenial): status Triaged Fix Committed
2020-11-19 01:37:20 Bryce Harrington apache2 (Ubuntu Bionic): status Triaged Fix Committed
2020-11-19 01:37:21 Bryce Harrington apache2 (Ubuntu Focal): status Triaged Fix Committed
2020-11-19 01:37:24 Bryce Harrington apache2 (Ubuntu Groovy): status Triaged Fix Committed
2020-11-19 01:37:26 Bryce Harrington apache2 (Ubuntu Hirsute): status Triaged Fix Committed
2020-11-19 01:37:31 Bryce Harrington apache2 (Ubuntu Focal): assignee Bryce Harrington (bryce)
2020-11-19 01:37:33 Bryce Harrington apache2 (Ubuntu Bionic): assignee Bryce Harrington (bryce)
2020-11-19 01:37:38 Bryce Harrington apache2 (Ubuntu Xenial): assignee Bryce Harrington (bryce)
2020-11-27 15:18:20 Timo Aaltonen bug added subscriber Ubuntu Stable Release Updates Team
2020-11-27 15:18:22 Timo Aaltonen bug added subscriber SRU Verification
2020-11-27 15:18:27 Timo Aaltonen tags bionic patch server-next systemd xenial bionic patch server-next systemd verification-needed verification-needed-groovy xenial
2020-11-27 15:21:40 Timo Aaltonen tags bionic patch server-next systemd verification-needed verification-needed-groovy xenial bionic patch server-next systemd verification-needed verification-needed-focal verification-needed-groovy xenial
2020-11-27 15:23:29 Timo Aaltonen tags bionic patch server-next systemd verification-needed verification-needed-focal verification-needed-groovy xenial bionic patch server-next systemd verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy xenial
2020-11-27 15:26:49 Timo Aaltonen tags bionic patch server-next systemd verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy xenial bionic patch server-next systemd verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy verification-needed-xenial xenial
2020-11-28 20:01:35 Richard Hansen tags bionic patch server-next systemd verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy verification-needed-xenial xenial bionic patch regression-proposed server-next systemd verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy verification-needed-xenial xenial
2020-11-28 20:12:19 Richard Hansen tags bionic patch regression-proposed server-next systemd verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy verification-needed-xenial xenial bionic patch regression-proposed server-next systemd verification-failed-xenial verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy xenial
2020-11-28 22:57:27 Launchpad Janitor apache2 (Ubuntu Hirsute): status Fix Committed Fix Released
2020-11-30 12:34:15 Alexander Rudakov bug added subscriber Alexander Rudakov
2020-11-30 23:01:09 Valentin Steiner bug added subscriber Valentin Steiner
2020-12-01 17:08:20 Bryce Harrington apache2 (Ubuntu Xenial): status Fix Committed In Progress
2020-12-03 04:30:26 Valentin Steiner removed subscriber Valentin Steiner
2020-12-03 15:53:48 Bryce Harrington apache2 (Ubuntu Xenial): status In Progress New
2021-06-02 14:52:23 Athos Ribeiro apache2 (Ubuntu Xenial): status New Won't Fix
2021-07-28 23:10:01 Brian Murray apache2 (Ubuntu Groovy): status Fix Committed Won't Fix
2021-09-28 05:45:00 Christian Ehrhardt  apache2 (Ubuntu Bionic): status Fix Committed Triaged
2021-09-28 05:45:02 Christian Ehrhardt  apache2 (Ubuntu Focal): status Fix Committed Triaged
2021-09-28 05:45:04 Christian Ehrhardt  apache2 (Ubuntu): assignee Bryce Harrington (bryce)
2021-09-28 05:45:06 Christian Ehrhardt  apache2 (Ubuntu Xenial): assignee Bryce Harrington (bryce)
2021-09-28 05:45:08 Christian Ehrhardt  apache2 (Ubuntu Groovy): assignee Bryce Harrington (bryce)
2021-09-28 05:45:11 Christian Ehrhardt  apache2 (Ubuntu Hirsute): assignee Bryce Harrington (bryce)
2021-09-28 23:00:44 Brian Murray apache2 (Ubuntu Focal): status Triaged Fix Committed
2021-09-28 23:04:21 Brian Murray apache2 (Ubuntu Bionic): status Triaged Fix Committed
2021-09-30 14:39:42 Simon Déziel tags bionic patch regression-proposed server-next systemd verification-failed-xenial verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy xenial bionic patch regression-proposed server-next systemd verification-done-bionic verification-done-focal verification-failed-xenial verification-needed verification-needed-groovy xenial
2021-09-30 14:40:14 Simon Déziel tags bionic patch regression-proposed server-next systemd verification-done-bionic verification-done-focal verification-failed-xenial verification-needed verification-needed-groovy xenial bionic patch regression-proposed server-next systemd verification-done-bionic verification-done-focal verification-failed-xenial verification-needed xenial
2021-09-30 22:10:43 Bryce Harrington tags bionic patch regression-proposed server-next systemd verification-done-bionic verification-done-focal verification-failed-xenial verification-needed xenial bionic patch server-next systemd verification-done verification-done-bionic verification-done-focal
2021-10-06 16:14:13 Launchpad Janitor apache2 (Ubuntu Bionic): status Fix Committed Fix Released
2021-10-06 16:14:18 Brian Murray removed subscriber Ubuntu Stable Release Updates Team
2021-10-06 16:14:35 Launchpad Janitor apache2 (Ubuntu Focal): status Fix Committed Fix Released
2021-10-08 22:50:02 Utkarsh Gupta bug added subscriber Bryce Harrington
2021-10-13 08:34:54 Matthias Ferdinand bug added subscriber Matthias Ferdinand
2021-10-13 11:33:48 Christoph Lechleitner bug added subscriber Christoph Lechleitner
2021-10-14 11:09:59 Paride Legovini tags bionic patch server-next systemd verification-done verification-done-bionic verification-done-focal server-next
2021-10-14 11:10:04 Paride Legovini bug added subscriber Paride Legovini
2021-10-14 11:10:13 Paride Legovini apache2 (Ubuntu): status Fix Released Triaged
2021-10-14 11:10:18 Paride Legovini apache2 (Ubuntu Bionic): status Fix Released Triaged
2021-10-14 11:10:20 Paride Legovini apache2 (Ubuntu Focal): status Fix Released Triaged
2021-10-14 11:10:25 Paride Legovini apache2 (Ubuntu Hirsute): status Fix Released Triaged
2021-10-14 21:42:46 Launchpad Janitor merge proposal linked https://code.launchpad.net/~bryce/ubuntu/+source/apache2/+git/apache2/+merge/410253
2021-10-14 22:05:06 Launchpad Janitor merge proposal linked https://code.launchpad.net/~bryce/ubuntu/+source/apache2/+git/apache2/+merge/410256
2021-10-21 02:19:52 Bryce Harrington nominated for series Ubuntu Jammy
2021-10-21 02:19:52 Bryce Harrington bug task added apache2 (Ubuntu Jammy)
2021-10-21 02:19:52 Bryce Harrington nominated for series Ubuntu Impish
2021-10-21 02:19:52 Bryce Harrington bug task added apache2 (Ubuntu Impish)
2021-10-21 02:20:06 Bryce Harrington apache2 (Ubuntu Impish): status New Triaged
2021-10-21 02:20:09 Bryce Harrington apache2 (Ubuntu Impish): importance Undecided High
2022-01-05 16:03:55 Bryce Harrington tags server-next
2022-01-06 14:42:28 Launchpad Janitor apache2 (Ubuntu Focal): status Triaged Fix Released
2022-01-06 14:42:28 Launchpad Janitor cve linked 2021-44224
2022-01-06 14:42:28 Launchpad Janitor cve linked 2021-44790
2022-01-06 14:42:31 Launchpad Janitor apache2 (Ubuntu Bionic): status Triaged Fix Released
2022-01-20 22:41:04 Brian Murray apache2 (Ubuntu Hirsute): status Triaged Won't Fix
2022-07-18 22:56:37 Brian Murray apache2 (Ubuntu Impish): status Triaged Won't Fix
2022-12-22 06:20:41 Emily sophia bug added subscriber Emily sophia
2023-05-06 21:58:30 Deen Ibrahim removed subscriber Deen Ibrahim