Activity log for bug #1745531

Date Who What changed Old value New value Message
2018-01-26 02:39:55 Hua Zhang bug added bug
2018-01-26 02:40:59 Hua Zhang tags sts
2018-01-26 02:41:53 Hua Zhang nominated for series Ubuntu Xenial
2018-01-26 02:41:53 Hua Zhang nominated for series Ubuntu Bionic
2018-01-26 02:41:53 Hua Zhang nominated for series Ubuntu Trusty
2018-01-26 04:01:29 Eric Desrochers bug task added preseed (Ubuntu Xenial)
2018-01-26 04:01:35 Eric Desrochers bug task added preseed (Ubuntu Trusty)
2018-01-26 04:01:41 Eric Desrochers bug task added preseed (Ubuntu Bionic)
2018-01-26 04:01:59 Eric Desrochers preseed (Ubuntu Trusty): assignee Hua Zhang (zhhuabj)
2018-01-26 04:02:09 Eric Desrochers preseed (Ubuntu Xenial): assignee Hua Zhang (zhhuabj)
2018-01-26 04:02:16 Eric Desrochers preseed (Ubuntu Bionic): assignee Hua Zhang (zhhuabj)
2018-01-26 04:02:19 Eric Desrochers preseed (Ubuntu Bionic): status New Confirmed
2018-01-26 04:02:21 Eric Desrochers preseed (Ubuntu Xenial): status New Confirmed
2018-01-26 04:02:23 Eric Desrochers preseed (Ubuntu Trusty): status New Confirmed
2018-01-26 04:02:25 Eric Desrochers preseed (Ubuntu Trusty): importance Undecided Medium
2018-01-26 04:02:27 Eric Desrochers preseed (Ubuntu Xenial): importance Undecided Medium
2018-01-26 04:02:29 Eric Desrochers preseed (Ubuntu Bionic): importance Undecided Medium
2018-01-26 04:03:03 Eric Desrochers bug added subscriber STS Sponsors
2018-01-26 04:06:51 Eric Desrochers bug task added debian-installer (Ubuntu)
2018-01-26 04:10:04 Eric Desrochers bug added subscriber Mathieu Trudel-Lapierre
2018-01-26 04:10:35 Eric Desrochers debian-installer (Ubuntu Bionic): assignee Eric Desrochers (slashd)
2018-01-26 04:10:37 Eric Desrochers debian-installer (Ubuntu Xenial): assignee Eric Desrochers (slashd)
2018-01-26 04:10:39 Eric Desrochers debian-installer (Ubuntu Trusty): assignee Eric Desrochers (slashd)
2018-01-26 04:11:07 Eric Desrochers preseed (Ubuntu Trusty): status Confirmed In Progress
2018-01-26 04:11:09 Eric Desrochers preseed (Ubuntu Xenial): status Confirmed In Progress
2018-01-26 04:11:10 Eric Desrochers preseed (Ubuntu Bionic): status Confirmed In Progress
2018-01-26 04:11:30 Eric Desrochers nominated for series Ubuntu Artful
2018-01-26 04:11:30 Eric Desrochers bug task added debian-installer (Ubuntu Artful)
2018-01-26 04:11:30 Eric Desrochers bug task added preseed (Ubuntu Artful)
2018-01-26 04:12:07 Eric Desrochers preseed (Ubuntu Artful): assignee Hua Zhang (zhhuabj)
2018-01-26 04:12:21 Eric Desrochers preseed (Ubuntu Artful): importance Undecided Medium
2018-01-26 04:12:21 Eric Desrochers preseed (Ubuntu Artful): status New In Progress
2018-01-26 04:12:44 Eric Desrochers debian-installer (Ubuntu Artful): assignee Eric Desrochers (slashd)
2018-01-26 04:12:59 Eric Desrochers debian-installer (Ubuntu Bionic): status New In Progress
2018-01-26 11:31:27 Eric Desrochers tags sts sts sts-sponsor-slashd
2018-01-26 12:52:48 Eric Desrochers attachment added lp1745531-lp1743787-di-trusty.debdiff https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1745531/+attachment/5043468/+files/lp1745531-lp1743787-di-trusty.debdiff
2018-01-26 16:19:47 Ubuntu Foundations Team Bug Bot tags sts sts-sponsor-slashd patch sts sts-sponsor-slashd
2018-01-29 08:58:15 Hua Zhang attachment added lp_1745531_trusty.debdiff https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1745531/+attachment/5044860/+files/lp_1745531_trusty.debdiff
2018-01-29 09:07:42 Hua Zhang attachment added lp_1745531_xenial.debdiff https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1745531/+attachment/5044863/+files/lp_1745531_xenial.debdiff
2018-01-29 09:09:02 Hua Zhang attachment added d-i_xenial.debdiff https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1745531/+attachment/5044864/+files/d-i_xenial.debdiff
2018-01-29 09:17:48 Hua Zhang attachment added lp_1745531_artful.debdiff https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1745531/+attachment/5044882/+files/lp_1745531_artful.debdiff
2018-01-29 09:18:17 Hua Zhang attachment added d-i_artful.debdiff https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1745531/+attachment/5044883/+files/d-i_artful.debdiff
2018-01-29 09:21:42 Hua Zhang summary Reinforce hostname preseed regex [SRU] Reinforce hostname preseed regex
2018-01-29 09:24:45 Hua Zhang description This is the same issue reported in https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202 However that is marked as 'Fix Released' and the issue is still occurring so it seems best to just open a new bug according to Eric's comment. The present hostname preseed regex looks like: if ! echo "$RET" | grep -q 'ubuntu'; then ... /bin/sed -i "s/$CURRENT_HOSTNAME/$NETCFG_HOSTNAME/" /etc/hosts ... fi There are still multiple problems with them according to Peter's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/64) and Mathieu's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/93). - The default hostname is 'ubuntu', and is the value you will get if nothing is preseeded -- we *do* need to skip it in this case, although the grep may need to be more precise. A name like 'ubuntuxenial' should match this grep. - The sed needs to be fixed to more appropriately catch for the exact string, rather than any substring -- ie. it should not match 'ipv6-allnodes' if the name received from DHCP was 'node'. It should only match and replace for 'node'. So the fix will try to: 1) Keep the if statement and add the -w option to grep to be more robust 2) Modify the sed cmd with word boundaries (\b) to be more robust as well. [Impact] This is the same issue reported in https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202 However that is marked as 'Fix Released' and the issue is still occurring so it seems best to just open a new bug according to Eric's comment. The present hostname preseed regex looks like: if ! echo "$RET" | grep -q 'ubuntu'; then    ...    /bin/sed -i "s/$CURRENT_HOSTNAME/$NETCFG_HOSTNAME/" /etc/hosts    ... fi There are still multiple problems with them according to Peter's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/64) and Mathieu's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/93). - The default hostname is 'ubuntu', and is the value you will get if nothing is preseeded -- we *do* need to skip it in this case, although the grep may need to be more precise. A name like 'ubuntuxenial' should match this grep. - The sed needs to be fixed to more appropriately catch for the exact string, rather than any substring -- ie. it should not match 'ipv6-allnodes' if the name received from DHCP was 'node'. It should only match and replace for 'node'. So the fix will try to: 1) Keep the if statement and add the -w option to grep to be more robust 2) Modify the sed cmd with word boundaries (\b) to be more robust as well. [Test Case] Install Ubuntu using a preseed[1] file[2] and add the following line in the preseed recipe : d-i netcfg/hostname string <HOSTNAME> Change the HOSTNAME to see if the hostname in /etc/hosts can be updated correctly. [1] - url=http://<WEB_SERVER>/<PRESEED_FILE> [2] - https://help.ubuntu.com/lts/installation-guide/example-preseed.txt [Regression Potential] * none expected, the actual changes are as follows: - if ! echo "$RET" | grep -q 'ubuntu'; then + if ! echo "$RET" | grep -qw 'ubuntu'; then ... - /bin/sed -i "s/$CURRENT_HOSTNAME/$NETCFG_HOSTNAME/" /etc/hosts + /bin/sed -i "s/\b${CURRENT_HOSTNAME}\b/${NETCFG_HOSTNAME}/g" /etc/hosts [Original Description]
2018-01-29 09:26:08 Hua Zhang attachment added lp_1745531_bonic.debdiff https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1745531/+attachment/5044885/+files/lp_1745531_bonic.debdiff
2018-01-29 09:26:28 Hua Zhang attachment added d-i_bionic.debdiff https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1745531/+attachment/5044886/+files/d-i_bionic.debdiff
2018-01-29 15:08:43 Eric Desrochers debian-installer (Ubuntu Bionic): importance Undecided Medium
2018-01-29 15:08:54 Eric Desrochers debian-installer (Ubuntu Artful): importance Undecided Medium
2018-01-29 15:09:01 Eric Desrochers debian-installer (Ubuntu Xenial): importance Undecided Medium
2018-01-29 15:09:09 Eric Desrochers debian-installer (Ubuntu Trusty): importance Undecided Medium
2018-01-29 15:09:29 Eric Desrochers debian-installer (Ubuntu Artful): status New In Progress
2018-01-29 15:09:37 Eric Desrochers debian-installer (Ubuntu Xenial): status New In Progress
2018-01-29 15:09:48 Eric Desrochers debian-installer (Ubuntu Trusty): status New In Progress
2018-01-29 18:48:55 Launchpad Janitor preseed (Ubuntu Bionic): status In Progress Fix Released
2018-01-29 19:39:29 Eric Desrochers debian-installer (Ubuntu Bionic): assignee Eric Desrochers (slashd) Hua Zhang (zhhuabj)
2018-01-29 19:39:54 Eric Desrochers debian-installer (Ubuntu Artful): assignee Eric Desrochers (slashd) Hua Zhang (zhhuabj)
2018-01-30 02:25:35 Eric Desrochers debian-installer (Ubuntu Xenial): assignee Eric Desrochers (slashd) Hua Zhang (zhhuabj)
2018-01-31 13:52:31 Eric Desrochers description [Impact] This is the same issue reported in https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202 However that is marked as 'Fix Released' and the issue is still occurring so it seems best to just open a new bug according to Eric's comment. The present hostname preseed regex looks like: if ! echo "$RET" | grep -q 'ubuntu'; then    ...    /bin/sed -i "s/$CURRENT_HOSTNAME/$NETCFG_HOSTNAME/" /etc/hosts    ... fi There are still multiple problems with them according to Peter's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/64) and Mathieu's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/93). - The default hostname is 'ubuntu', and is the value you will get if nothing is preseeded -- we *do* need to skip it in this case, although the grep may need to be more precise. A name like 'ubuntuxenial' should match this grep. - The sed needs to be fixed to more appropriately catch for the exact string, rather than any substring -- ie. it should not match 'ipv6-allnodes' if the name received from DHCP was 'node'. It should only match and replace for 'node'. So the fix will try to: 1) Keep the if statement and add the -w option to grep to be more robust 2) Modify the sed cmd with word boundaries (\b) to be more robust as well. [Test Case] Install Ubuntu using a preseed[1] file[2] and add the following line in the preseed recipe : d-i netcfg/hostname string <HOSTNAME> Change the HOSTNAME to see if the hostname in /etc/hosts can be updated correctly. [1] - url=http://<WEB_SERVER>/<PRESEED_FILE> [2] - https://help.ubuntu.com/lts/installation-guide/example-preseed.txt [Regression Potential] * none expected, the actual changes are as follows: - if ! echo "$RET" | grep -q 'ubuntu'; then + if ! echo "$RET" | grep -qw 'ubuntu'; then ... - /bin/sed -i "s/$CURRENT_HOSTNAME/$NETCFG_HOSTNAME/" /etc/hosts + /bin/sed -i "s/\b${CURRENT_HOSTNAME}\b/${NETCFG_HOSTNAME}/g" /etc/hosts [Original Description] [Impact] This is the same issue reported in https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202 However that is marked as 'Fix Released' and the issue is still occurring so it seems best to just open a new bug according to Eric's comment. The present hostname preseed regex looks like: if ! echo "$RET" | grep -q 'ubuntu'; then    ...    /bin/sed -i "s/$CURRENT_HOSTNAME/$NETCFG_HOSTNAME/" /etc/hosts    ... fi There are still multiple problems with them according to Peter's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/64) and Mathieu's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/93). - The default hostname is 'ubuntu', and is the value you will get if nothing is preseeded -- we *do* need to skip it in this case, although the grep may need to be more precise. A name like 'ubuntuxenial' should match this grep. - The sed needs to be fixed to more appropriately catch for the exact string, rather than any substring -- ie. it should not match 'ipv6-allnodes' if the name received from DHCP was 'node'. It should only match and replace for 'node'. So the fix will try to: 1) Keep the if statement and add the -w option to grep to be more robust 2) Modify the sed cmd with word boundaries (\b) to be more robust as well. [Test Case] Install Ubuntu using a preseed[1] file[2] and add the following line in the preseed recipe : d-i netcfg/hostname string <HOSTNAME> Change the HOSTNAME to see if the hostname in /etc/hosts can be updated correctly. [1] - url=http://<WEB_SERVER>/<PRESEED_FILE> [2] - https://help.ubuntu.com/lts/installation-guide/example-preseed.txt [Regression Potential]  * none expected, the actual changes are as follows: - if ! echo "$RET" | grep -q 'ubuntu'; then + if ! echo "$RET" | grep -qw 'ubuntu'; then ... - /bin/sed -i "s/$CURRENT_HOSTNAME/$NETCFG_HOSTNAME/" /etc/hosts + /bin/sed -i "s/\b${CURRENT_HOSTNAME}\b/${NETCFG_HOSTNAME}/g" /etc/hosts In other words, we simply make it more robust to select only pattern containing matches that form whole word... catching 'ubuntu' hostname as-is but not catching pattern where ubuntu is part of the user chosen hostname as follow : "sometextubuntu" "sometextubuntusometext" "ubuntusometext" ... [Original Description]
2018-01-31 14:03:50 Eric Desrochers description [Impact] This is the same issue reported in https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202 However that is marked as 'Fix Released' and the issue is still occurring so it seems best to just open a new bug according to Eric's comment. The present hostname preseed regex looks like: if ! echo "$RET" | grep -q 'ubuntu'; then    ...    /bin/sed -i "s/$CURRENT_HOSTNAME/$NETCFG_HOSTNAME/" /etc/hosts    ... fi There are still multiple problems with them according to Peter's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/64) and Mathieu's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/93). - The default hostname is 'ubuntu', and is the value you will get if nothing is preseeded -- we *do* need to skip it in this case, although the grep may need to be more precise. A name like 'ubuntuxenial' should match this grep. - The sed needs to be fixed to more appropriately catch for the exact string, rather than any substring -- ie. it should not match 'ipv6-allnodes' if the name received from DHCP was 'node'. It should only match and replace for 'node'. So the fix will try to: 1) Keep the if statement and add the -w option to grep to be more robust 2) Modify the sed cmd with word boundaries (\b) to be more robust as well. [Test Case] Install Ubuntu using a preseed[1] file[2] and add the following line in the preseed recipe : d-i netcfg/hostname string <HOSTNAME> Change the HOSTNAME to see if the hostname in /etc/hosts can be updated correctly. [1] - url=http://<WEB_SERVER>/<PRESEED_FILE> [2] - https://help.ubuntu.com/lts/installation-guide/example-preseed.txt [Regression Potential]  * none expected, the actual changes are as follows: - if ! echo "$RET" | grep -q 'ubuntu'; then + if ! echo "$RET" | grep -qw 'ubuntu'; then ... - /bin/sed -i "s/$CURRENT_HOSTNAME/$NETCFG_HOSTNAME/" /etc/hosts + /bin/sed -i "s/\b${CURRENT_HOSTNAME}\b/${NETCFG_HOSTNAME}/g" /etc/hosts In other words, we simply make it more robust to select only pattern containing matches that form whole word... catching 'ubuntu' hostname as-is but not catching pattern where ubuntu is part of the user chosen hostname as follow : "sometextubuntu" "sometextubuntusometext" "ubuntusometext" ... [Original Description] [Special notes] Rebuilding debian-installer will be necessary in order to get a new mini.iso (Minimal ISO image of Ubuntu) containing this particular fix. Despite the fact that a full ISO are no longer built for some of the affected stable releases, one can use what is called a minimal ISO image (mini.iso) of Ubuntu. This mini.iso uses a text-based installer, resulting in a smaller image. The minimal ISO image will download packages from online archives at installation time instead of providing them on the install media itself. [Impact] This is the same issue reported in https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202 However that is marked as 'Fix Released' and the issue is still occurring so it seems best to just open a new bug according to Eric's comment. The present hostname preseed regex looks like: if ! echo "$RET" | grep -q 'ubuntu'; then    ...    /bin/sed -i "s/$CURRENT_HOSTNAME/$NETCFG_HOSTNAME/" /etc/hosts    ... fi There are still multiple problems with them according to Peter's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/64) and Mathieu's comment (https://bugs.launchpad.net/ubuntu/+source/preseed/+bug/1452202/comments/93). - The default hostname is 'ubuntu', and is the value you will get if nothing is preseeded -- we *do* need to skip it in this case, although the grep may need to be more precise. A name like 'ubuntuxenial' should match this grep. - The sed needs to be fixed to more appropriately catch for the exact string, rather than any substring -- ie. it should not match 'ipv6-allnodes' if the name received from DHCP was 'node'. It should only match and replace for 'node'. So the fix will try to: 1) Keep the if statement and add the -w option to grep to be more robust 2) Modify the sed cmd with word boundaries (\b) to be more robust as well. [Test Case] Install Ubuntu using a preseed[1] file[2] and add the following line in the preseed recipe : d-i netcfg/hostname string <HOSTNAME> Change the HOSTNAME to see if the hostname in /etc/hosts can be updated correctly. [1] - url=http://<WEB_SERVER>/<PRESEED_FILE> [2] - https://help.ubuntu.com/lts/installation-guide/example-preseed.txt [Regression Potential]  * none expected, the actual changes are as follows: - if ! echo "$RET" | grep -q 'ubuntu'; then + if ! echo "$RET" | grep -qw 'ubuntu'; then ... - /bin/sed -i "s/$CURRENT_HOSTNAME/$NETCFG_HOSTNAME/" /etc/hosts + /bin/sed -i "s/\b${CURRENT_HOSTNAME}\b/${NETCFG_HOSTNAME}/g" /etc/hosts In other words, we simply make it more robust to select only pattern containing matches that form whole word... catching 'ubuntu' hostname as-is but not catching pattern where ubuntu is part of the user chosen hostname as follow : "sometextubuntu" "sometextubuntusometext" "ubuntusometext" ... [Original Description]
2018-01-31 14:10:08 Eric Desrochers tags patch sts sts-sponsor-slashd patch sts sts-sponsor-slashd-done
2018-02-01 14:15:14 Eric Desrochers bug added subscriber SRU Verification
2018-02-01 20:31:45 Brian Murray preseed (Ubuntu Artful): status In Progress Fix Committed
2018-02-01 20:31:48 Brian Murray bug added subscriber Ubuntu Stable Release Updates Team
2018-02-01 20:31:53 Brian Murray tags patch sts sts-sponsor-slashd-done patch sts sts-sponsor-slashd-done verification-needed verification-needed-artful
2018-02-01 20:38:03 Brian Murray debian-installer (Ubuntu Artful): status In Progress Fix Committed
2018-02-02 07:11:14 Hua Zhang tags patch sts sts-sponsor-slashd-done verification-needed verification-needed-artful patch sts sts-sponsor-slashd-done verification-done-artful verification-needed
2018-02-06 13:42:42 Eric Desrochers bug added subscriber Eric Desrochers
2018-02-06 13:42:59 Eric Desrochers removed subscriber STS Sponsors
2018-02-07 14:17:27 Chris J Arges preseed (Ubuntu Xenial): status In Progress Fix Committed
2018-02-07 14:17:34 Chris J Arges tags patch sts sts-sponsor-slashd-done verification-done-artful verification-needed patch sts sts-sponsor-slashd-done verification-done-artful verification-needed verification-needed-xenial
2018-02-07 14:18:15 Chris J Arges preseed (Ubuntu Trusty): status In Progress Fix Committed
2018-02-07 14:18:23 Chris J Arges tags patch sts sts-sponsor-slashd-done verification-done-artful verification-needed verification-needed-xenial patch sts sts-sponsor-slashd-done verification-done-artful verification-needed verification-needed-trusty verification-needed-xenial
2018-02-08 08:52:36 Launchpad Janitor preseed (Ubuntu Artful): status Fix Committed Fix Released
2018-02-08 08:52:39 Łukasz Zemczak removed subscriber Ubuntu Stable Release Updates Team
2018-02-08 08:52:43 Launchpad Janitor debian-installer (Ubuntu Artful): status Fix Committed Fix Released
2018-02-08 12:07:53 Łukasz Zemczak debian-installer (Ubuntu Trusty): status In Progress Fix Committed
2018-02-08 12:07:57 Łukasz Zemczak bug added subscriber Ubuntu Stable Release Updates Team
2018-02-08 13:24:14 Łukasz Zemczak debian-installer (Ubuntu Xenial): status In Progress Fix Committed
2018-02-12 02:07:06 Hua Zhang tags patch sts sts-sponsor-slashd-done verification-done-artful verification-needed verification-needed-trusty verification-needed-xenial patch sts sts-sponsor-slashd-done verification-done-artful verification-done-trusty verification-done-xenial verification-needed
2018-02-15 07:37:13 Launchpad Janitor debian-installer (Ubuntu Xenial): status Fix Committed Fix Released
2018-02-15 07:37:16 Launchpad Janitor preseed (Ubuntu Xenial): status Fix Committed Fix Released
2018-02-15 07:43:21 Launchpad Janitor debian-installer (Ubuntu Trusty): status Fix Committed Fix Released
2018-02-15 07:43:30 Launchpad Janitor preseed (Ubuntu Trusty): status Fix Committed Fix Released
2018-03-27 12:22:07 Francis Ginther tags patch sts sts-sponsor-slashd-done verification-done-artful verification-done-trusty verification-done-xenial verification-needed id-5ab94d853c3f9bad14e58f87 patch sts sts-sponsor-slashd-done verification-done-artful verification-done-trusty verification-done-xenial verification-needed
2018-09-17 15:28:25 Brian Murray debian-installer (Ubuntu Bionic): status In Progress Fix Released
2018-12-14 09:16:32 Launchpad Janitor branch linked lp:~ubuntu-core-dev/debian-installer/trusty-proposed
2019-10-18 01:08:44 Mathew Hodson debian-installer (Ubuntu): status In Progress Fix Released
2019-10-18 01:09:14 Mathew Hodson tags id-5ab94d853c3f9bad14e58f87 patch sts sts-sponsor-slashd-done verification-done-artful verification-done-trusty verification-done-xenial verification-needed id-5ab94d853c3f9bad14e58f87 patch sts sts-sponsor-slashd-done verification-done-artful verification-done-trusty verification-done-xenial
2020-05-20 12:54:31 Jean-François Prévost bug added subscriber Jean-François Prévost