Activity log for bug #1905387

Date Who What changed Old value New value Message
2020-11-24 10:31:55 Eduardo Lengler bug added bug
2020-11-26 19:37:33 Sergio Durigan Junior bug watch added https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=975422
2020-11-26 19:37:40 Sergio Durigan Junior samba (Ubuntu): status New Triaged
2020-11-26 19:37:48 Sergio Durigan Junior bug added subscriber Ubuntu Server
2020-11-26 19:37:58 Sergio Durigan Junior samba (Ubuntu): importance Undecided Medium
2020-11-26 19:38:37 Sergio Durigan Junior summary package samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 failed to install/upgrade: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 samba-common-bin should call systemd-tmpfiles before testparm
2020-11-26 19:40:10 Sergio Durigan Junior bug added subscriber Sergio Durigan Junior
2021-05-24 19:01:28 Athos Ribeiro nominated for series Ubuntu Focal
2021-05-24 19:01:28 Athos Ribeiro bug task added samba (Ubuntu Focal)
2021-05-24 19:01:28 Athos Ribeiro nominated for series Ubuntu Groovy
2021-05-24 19:01:28 Athos Ribeiro bug task added samba (Ubuntu Groovy)
2021-05-24 19:01:42 Athos Ribeiro samba (Ubuntu Focal): status New Triaged
2021-05-24 19:01:46 Athos Ribeiro samba (Ubuntu Groovy): status New Triaged
2021-05-25 14:45:15 Athos Ribeiro samba (Ubuntu Focal): assignee Athos Ribeiro (athos-ribeiro)
2021-05-27 17:05:39 Launchpad Janitor merge proposal linked https://code.launchpad.net/~athos-ribeiro/ubuntu/+source/samba/+git/samba/+merge/403403
2021-05-27 17:08:01 Launchpad Janitor merge proposal linked https://code.launchpad.net/~athos-ribeiro/ubuntu/+source/samba/+git/samba/+merge/403404
2021-05-27 17:09:39 Athos Ribeiro description I don't now ProblemType: Package DistroRelease: Ubuntu 20.04 Package: samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65 Uname: Linux 5.4.0-54-generic x86_64 ApportVersion: 2.20.11-0ubuntu27.12 Architecture: amd64 CasperMD5CheckResult: skip Date: Tue Nov 24 07:17:34 2020 DistributionChannelDescriptor: # This is the distribution channel descriptor for the OEM CDs # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor canonical-oem-somerville-bionic-amd64-20180608-47+loki-n3-v3-whl+X32 ErrorMessage: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 InstallationDate: Installed on 2020-11-12 (11 days ago) InstallationMedia: Ubuntu 18.04 "Bionic" - Build amd64 LIVE Binary 20180608-09:38 Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 3.8.2-0ubuntu2 PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4 RelatedPackageVersions: dpkg 1.19.7ubuntu3 apt 2.0.2ubuntu0.1 SambaClientRegression: Yes SourcePackage: samba Title: package samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 failed to install/upgrade: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 UpgradeStatus: Upgraded to focal on 2020-11-21 (3 days ago) [Impact] The samba-common-bin postinst script relies on the presence of the /run/samba directory. This directory will not be available unless samba-common-bin is installed right after samba-common, whose postinst script creates /run/samba. Although samba-common-bin Depends on samba-common, reducing the risk of an user hitting the described bug, samba-common only Recommends samba-common-bin, making the following case possible: The user installs samba-common. Then, the user removes samba-common-bin. Then the user reboots the system (which removes /run/samba created during samba-common installation). Finally, the user installs samba-common-bin, which results in a postinst script failure. For the case described above, restarting the system and reconfiguring (or running the installation again) should fix the issue, since the samba-common-bin systemd-tmpfiles configuration would now create /run/samba (running systemd-tmpfiles --create for the samba-common-bin would also work). The proposed patch cherry picks commit 0c3b205 from Debian to run systemd-tempfiles before the testparm call and applies further changes so the #DEBHELPER# tag can be expanded using debhelper compat 12. Aditionally, it introduces an autopkgtest test case for the fixed issue. [Test Plan] Run the following steps: # apt install samba-common # apt remove samba-common-bin Reboot the system and verify that the /run/samba directory no longer exists Run # apt install samba-common-bin This command should exit with a non-zero status, as described in the original bug report [Where problems could occur] There are 2 changes to be considered here. The one to d/rules and the one to d/samba-common-bin.postinst The change to d/rules makes the #DEBHELPER# tag, moved in the change to d/samba-common-bin.postinst to actually generate code. The generated code is making a call to systemd-tmpfiles, which is provided by the systemd package. However, samba-common-bin does not deppend on systemd. Here is the generated snippet: # Automatically added by dh_installsystemd/12.10ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # In case this system is running systemd, we need to ensure that all # necessary tmpfiles (if any) are created before starting. if [ -d /run/systemd/system ] ; then systemd-tmpfiles --create samba.conf >/dev/null || true fi fi # End automatically added section The snipped showed above does check for evidence that systemd-tmpfiles is available in the system, although it does not make such check directly. However, in case /run/systemd/system is available and systemd-tmpfiles is not, the postinst script will not fail at that point. Still, if the systemd-tmpfiles command does not run, the issue this SRU is fixing will still manifest itself under the described conditions (which is true for hirsute, impish, and Debian stable as well). [Other Info] This issue was already fixed in Debian unstable and, consequently, in Ubuntu hirsute and impish. [Original message] ProblemType: Package DistroRelease: Ubuntu 20.04 Package: samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65 Uname: Linux 5.4.0-54-generic x86_64 ApportVersion: 2.20.11-0ubuntu27.12 Architecture: amd64 CasperMD5CheckResult: skip Date: Tue Nov 24 07:17:34 2020 DistributionChannelDescriptor: # This is the distribution channel descriptor for the OEM CDs # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor canonical-oem-somerville-bionic-amd64-20180608-47+loki-n3-v3-whl+X32 ErrorMessage: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 InstallationDate: Installed on 2020-11-12 (11 days ago) InstallationMedia: Ubuntu 18.04 "Bionic" - Build amd64 LIVE Binary 20180608-09:38 Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 3.8.2-0ubuntu2 PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4 RelatedPackageVersions: dpkg 1.19.7ubuntu3 apt 2.0.2ubuntu0.1 SambaClientRegression: Yes SourcePackage: samba Title: package samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 failed to install/upgrade: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 UpgradeStatus: Upgraded to focal on 2020-11-21 (3 days ago)
2021-05-27 17:14:34 Athos Ribeiro samba (Ubuntu Groovy): assignee Athos Ribeiro (athos-ribeiro)
2021-05-27 19:42:03 Athos Ribeiro description [Impact] The samba-common-bin postinst script relies on the presence of the /run/samba directory. This directory will not be available unless samba-common-bin is installed right after samba-common, whose postinst script creates /run/samba. Although samba-common-bin Depends on samba-common, reducing the risk of an user hitting the described bug, samba-common only Recommends samba-common-bin, making the following case possible: The user installs samba-common. Then, the user removes samba-common-bin. Then the user reboots the system (which removes /run/samba created during samba-common installation). Finally, the user installs samba-common-bin, which results in a postinst script failure. For the case described above, restarting the system and reconfiguring (or running the installation again) should fix the issue, since the samba-common-bin systemd-tmpfiles configuration would now create /run/samba (running systemd-tmpfiles --create for the samba-common-bin would also work). The proposed patch cherry picks commit 0c3b205 from Debian to run systemd-tempfiles before the testparm call and applies further changes so the #DEBHELPER# tag can be expanded using debhelper compat 12. Aditionally, it introduces an autopkgtest test case for the fixed issue. [Test Plan] Run the following steps: # apt install samba-common # apt remove samba-common-bin Reboot the system and verify that the /run/samba directory no longer exists Run # apt install samba-common-bin This command should exit with a non-zero status, as described in the original bug report [Where problems could occur] There are 2 changes to be considered here. The one to d/rules and the one to d/samba-common-bin.postinst The change to d/rules makes the #DEBHELPER# tag, moved in the change to d/samba-common-bin.postinst to actually generate code. The generated code is making a call to systemd-tmpfiles, which is provided by the systemd package. However, samba-common-bin does not deppend on systemd. Here is the generated snippet: # Automatically added by dh_installsystemd/12.10ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then # In case this system is running systemd, we need to ensure that all # necessary tmpfiles (if any) are created before starting. if [ -d /run/systemd/system ] ; then systemd-tmpfiles --create samba.conf >/dev/null || true fi fi # End automatically added section The snipped showed above does check for evidence that systemd-tmpfiles is available in the system, although it does not make such check directly. However, in case /run/systemd/system is available and systemd-tmpfiles is not, the postinst script will not fail at that point. Still, if the systemd-tmpfiles command does not run, the issue this SRU is fixing will still manifest itself under the described conditions (which is true for hirsute, impish, and Debian stable as well). [Other Info] This issue was already fixed in Debian unstable and, consequently, in Ubuntu hirsute and impish. [Original message] ProblemType: Package DistroRelease: Ubuntu 20.04 Package: samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65 Uname: Linux 5.4.0-54-generic x86_64 ApportVersion: 2.20.11-0ubuntu27.12 Architecture: amd64 CasperMD5CheckResult: skip Date: Tue Nov 24 07:17:34 2020 DistributionChannelDescriptor: # This is the distribution channel descriptor for the OEM CDs # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor canonical-oem-somerville-bionic-amd64-20180608-47+loki-n3-v3-whl+X32 ErrorMessage: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 InstallationDate: Installed on 2020-11-12 (11 days ago) InstallationMedia: Ubuntu 18.04 "Bionic" - Build amd64 LIVE Binary 20180608-09:38 Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 3.8.2-0ubuntu2 PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4 RelatedPackageVersions: dpkg 1.19.7ubuntu3 apt 2.0.2ubuntu0.1 SambaClientRegression: Yes SourcePackage: samba Title: package samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 failed to install/upgrade: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 UpgradeStatus: Upgraded to focal on 2020-11-21 (3 days ago) [Impact] The samba-common-bin postinst script relies on the presence of the /run/samba directory. This directory will not be available unless samba-common-bin is installed right after samba-common, whose postinst script creates /run/samba. Although samba-common-bin Depends on samba-common, reducing the risk of an user hitting the described bug, samba-common only Recommends samba-common-bin, making the following case possible: The user installs samba-common. Then, the user removes samba-common-bin. Then the user reboots the system (which removes /run/samba created during samba-common installation). Finally, the user installs samba-common-bin, which results in a postinst script failure. For the case described above, restarting the system and reconfiguring (or running the installation again) should fix the issue, since the samba-common-bin systemd-tmpfiles configuration would now create /run/samba (running systemd-tmpfiles --create for the samba-common-bin would also work). The proposed patch cherry picks commit 0c3b205 from Debian to run systemd-tempfiles before the testparm call and applies further changes so the #DEBHELPER# tag can be expanded using debhelper compat 12. Aditionally, it introduces an autopkgtest test case for the fixed issue. [Test Plan] To reproduce the issue, run the following steps: # apt install samba-common # apt remove samba-common-bin Reboot the system and verify that the /run/samba directory no longer exists Run # apt install samba-common-bin This command should exit with a non-zero status, as described in the original bug report. After applying the proposed changes, performing the steps above should result in a successful exit status for the last command. [Where problems could occur] There are 2 changes to be considered here. The one to d/rules and the one to d/samba-common-bin.postinst The change to d/rules makes the #DEBHELPER# tag, moved in the change to d/samba-common-bin.postinst to actually generate code. The generated code is making a call to systemd-tmpfiles, which is provided by the systemd package. However, samba-common-bin does not deppend on systemd. Here is the generated snippet: # Automatically added by dh_installsystemd/12.10ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then  # In case this system is running systemd, we need to ensure that all  # necessary tmpfiles (if any) are created before starting.  if [ -d /run/systemd/system ] ; then   systemd-tmpfiles --create samba.conf >/dev/null || true  fi fi # End automatically added section The snipped showed above does check for evidence that systemd-tmpfiles is available in the system, although it does not make such check directly. However, in case /run/systemd/system is available and systemd-tmpfiles is not, the postinst script will not fail at that point. Still, if the systemd-tmpfiles command does not run, the issue this SRU is fixing will still manifest itself under the described conditions (which is true for hirsute, impish, and Debian stable as well). [Other Info] This issue was already fixed in Debian unstable and, consequently, in Ubuntu hirsute and impish. [Original message] ProblemType: Package DistroRelease: Ubuntu 20.04 Package: samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65 Uname: Linux 5.4.0-54-generic x86_64 ApportVersion: 2.20.11-0ubuntu27.12 Architecture: amd64 CasperMD5CheckResult: skip Date: Tue Nov 24 07:17:34 2020 DistributionChannelDescriptor:  # This is the distribution channel descriptor for the OEM CDs  # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor  canonical-oem-somerville-bionic-amd64-20180608-47+loki-n3-v3-whl+X32 ErrorMessage: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 InstallationDate: Installed on 2020-11-12 (11 days ago) InstallationMedia: Ubuntu 18.04 "Bionic" - Build amd64 LIVE Binary 20180608-09:38 Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 3.8.2-0ubuntu2 PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4 RelatedPackageVersions:  dpkg 1.19.7ubuntu3  apt 2.0.2ubuntu0.1 SambaClientRegression: Yes SourcePackage: samba Title: package samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 failed to install/upgrade: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 UpgradeStatus: Upgraded to focal on 2020-11-21 (3 days ago)
2021-05-28 19:41:55 Athos Ribeiro description [Impact] The samba-common-bin postinst script relies on the presence of the /run/samba directory. This directory will not be available unless samba-common-bin is installed right after samba-common, whose postinst script creates /run/samba. Although samba-common-bin Depends on samba-common, reducing the risk of an user hitting the described bug, samba-common only Recommends samba-common-bin, making the following case possible: The user installs samba-common. Then, the user removes samba-common-bin. Then the user reboots the system (which removes /run/samba created during samba-common installation). Finally, the user installs samba-common-bin, which results in a postinst script failure. For the case described above, restarting the system and reconfiguring (or running the installation again) should fix the issue, since the samba-common-bin systemd-tmpfiles configuration would now create /run/samba (running systemd-tmpfiles --create for the samba-common-bin would also work). The proposed patch cherry picks commit 0c3b205 from Debian to run systemd-tempfiles before the testparm call and applies further changes so the #DEBHELPER# tag can be expanded using debhelper compat 12. Aditionally, it introduces an autopkgtest test case for the fixed issue. [Test Plan] To reproduce the issue, run the following steps: # apt install samba-common # apt remove samba-common-bin Reboot the system and verify that the /run/samba directory no longer exists Run # apt install samba-common-bin This command should exit with a non-zero status, as described in the original bug report. After applying the proposed changes, performing the steps above should result in a successful exit status for the last command. [Where problems could occur] There are 2 changes to be considered here. The one to d/rules and the one to d/samba-common-bin.postinst The change to d/rules makes the #DEBHELPER# tag, moved in the change to d/samba-common-bin.postinst to actually generate code. The generated code is making a call to systemd-tmpfiles, which is provided by the systemd package. However, samba-common-bin does not deppend on systemd. Here is the generated snippet: # Automatically added by dh_installsystemd/12.10ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then  # In case this system is running systemd, we need to ensure that all  # necessary tmpfiles (if any) are created before starting.  if [ -d /run/systemd/system ] ; then   systemd-tmpfiles --create samba.conf >/dev/null || true  fi fi # End automatically added section The snipped showed above does check for evidence that systemd-tmpfiles is available in the system, although it does not make such check directly. However, in case /run/systemd/system is available and systemd-tmpfiles is not, the postinst script will not fail at that point. Still, if the systemd-tmpfiles command does not run, the issue this SRU is fixing will still manifest itself under the described conditions (which is true for hirsute, impish, and Debian stable as well). [Other Info] This issue was already fixed in Debian unstable and, consequently, in Ubuntu hirsute and impish. [Original message] ProblemType: Package DistroRelease: Ubuntu 20.04 Package: samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65 Uname: Linux 5.4.0-54-generic x86_64 ApportVersion: 2.20.11-0ubuntu27.12 Architecture: amd64 CasperMD5CheckResult: skip Date: Tue Nov 24 07:17:34 2020 DistributionChannelDescriptor:  # This is the distribution channel descriptor for the OEM CDs  # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor  canonical-oem-somerville-bionic-amd64-20180608-47+loki-n3-v3-whl+X32 ErrorMessage: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 InstallationDate: Installed on 2020-11-12 (11 days ago) InstallationMedia: Ubuntu 18.04 "Bionic" - Build amd64 LIVE Binary 20180608-09:38 Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 3.8.2-0ubuntu2 PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4 RelatedPackageVersions:  dpkg 1.19.7ubuntu3  apt 2.0.2ubuntu0.1 SambaClientRegression: Yes SourcePackage: samba Title: package samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 failed to install/upgrade: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 UpgradeStatus: Upgraded to focal on 2020-11-21 (3 days ago) [Impact] The samba-common-bin postinst script relies on the presence of the /run/samba directory. This directory will not be available unless samba-common-bin is installed right after samba-common, whose postinst script creates /run/samba. Although samba-common-bin Depends on samba-common, reducing the risk of an user hitting the described bug, samba-common only Recommends samba-common-bin, making the following case possible: The user installs samba-common. Then, the user removes samba-common-bin. Then the user reboots the system (which removes /run/samba created during samba-common installation). Finally, the user installs samba-common-bin, which results in a postinst script failure. [Test Plan] To reproduce the issue, run the following steps: # apt install samba-common # apt remove samba-common-bin Reboot the system and verify that the /run/samba directory no longer exists Run # apt install samba-common-bin This command should exit with a non-zero status, as described in the original bug report. After applying the proposed changes, performing the steps above should result in a successful exit status for the last command. [Where problems could occur] There are 2 changes to be considered here. The one to d/rules and the one to d/samba-common-bin.postinst The change to d/rules makes the #DEBHELPER# tag, moved in the change to d/samba-common-bin.postinst to actually generate code. Still, if the systemd-tmpfiles command does not run (e.g., there is no systemd available in the system), the issue this SRU is fixing will still manifest itself under the described conditions (which is true for hirsute, impish, and Debian stable as well). [Other Info] This issue was already fixed in Debian unstable and, consequently, in Ubuntu hirsute and impish. [Original message] ProblemType: Package DistroRelease: Ubuntu 20.04 Package: samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 ProcVersionSignature: Ubuntu 5.4.0-54.60-generic 5.4.65 Uname: Linux 5.4.0-54-generic x86_64 ApportVersion: 2.20.11-0ubuntu27.12 Architecture: amd64 CasperMD5CheckResult: skip Date: Tue Nov 24 07:17:34 2020 DistributionChannelDescriptor:  # This is the distribution channel descriptor for the OEM CDs  # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor  canonical-oem-somerville-bionic-amd64-20180608-47+loki-n3-v3-whl+X32 ErrorMessage: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 InstallationDate: Installed on 2020-11-12 (11 days ago) InstallationMedia: Ubuntu 18.04 "Bionic" - Build amd64 LIVE Binary 20180608-09:38 Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 3.8.2-0ubuntu2 PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4 RelatedPackageVersions:  dpkg 1.19.7ubuntu3  apt 2.0.2ubuntu0.1 SambaClientRegression: Yes SourcePackage: samba Title: package samba-common-bin 2:4.11.6+dfsg-0ubuntu1.6 failed to install/upgrade: o subprocesso instalado, do pacote samba-common-bin, o script post-installation retornou erro do status de saída 1 UpgradeStatus: Upgraded to focal on 2020-11-21 (3 days ago)
2021-05-28 20:02:15 Athos Ribeiro bug added subscriber Ubuntu Stable Release Updates Team
2021-05-28 20:02:24 Athos Ribeiro samba (Ubuntu Focal): status Triaged In Progress
2021-05-28 20:02:29 Athos Ribeiro samba (Ubuntu Groovy): status Triaged In Progress
2021-06-02 19:18:18 Brian Murray samba (Ubuntu): status Triaged Fix Released
2021-06-02 19:24:52 Brian Murray samba (Ubuntu): status Fix Released Incomplete
2021-06-02 19:24:52 Brian Murray samba (Ubuntu): assignee Brian Murray (brian-murray)
2021-06-04 09:42:01 Timo Aaltonen samba (Ubuntu Groovy): status In Progress Fix Committed
2021-06-04 09:42:04 Timo Aaltonen bug added subscriber SRU Verification
2021-06-04 09:42:09 Timo Aaltonen tags amd64 apport-package focal amd64 apport-package focal verification-needed verification-needed-groovy
2021-06-04 18:44:13 Brian Murray samba (Ubuntu Focal): status In Progress Fix Committed
2021-06-04 18:44:22 Brian Murray tags amd64 apport-package focal verification-needed verification-needed-groovy amd64 apport-package focal verification-needed verification-needed-focal verification-needed-groovy
2021-06-04 21:14:00 Brian Murray samba (Ubuntu): assignee Brian Murray (brian-murray)
2021-06-04 21:14:06 Brian Murray samba (Ubuntu): status Incomplete Fix Released
2021-06-07 02:03:40 Mathew Hodson bug task added samba (Debian)
2021-06-07 13:16:24 Athos Ribeiro tags amd64 apport-package focal verification-needed verification-needed-focal verification-needed-groovy amd64 apport-package focal verification-done verification-done-focal verification-done-groovy
2021-06-08 23:22:14 Bug Watch Updater samba (Debian): status Unknown Fix Released
2021-06-14 11:22:06 Łukasz Zemczak removed subscriber Ubuntu Stable Release Updates Team
2021-06-14 11:23:15 Launchpad Janitor samba (Ubuntu Groovy): status Fix Committed Fix Released
2021-06-14 13:35:56 Launchpad Janitor samba (Ubuntu Focal): status Fix Committed Fix Released
2021-08-06 09:20:26 Launchpad Janitor merge proposal linked https://code.launchpad.net/~paride/ubuntu/+source/samba/+git/samba/+merge/406751
2021-08-06 16:34:51 Launchpad Janitor merge proposal unlinked https://code.launchpad.net/~paride/ubuntu/+source/samba/+git/samba/+merge/406751