Activity log for bug #1886300

Date Who What changed Old value New value Message
2020-07-05 01:49:01 gregrwm bug added bug
2020-07-07 19:26:12 Mauricio Faria de Oliveira util-linux (Ubuntu): status New In Progress
2020-07-07 19:26:16 Mauricio Faria de Oliveira util-linux (Ubuntu): importance Undecided Medium
2020-07-07 19:26:20 Mauricio Faria de Oliveira util-linux (Ubuntu): assignee Mauricio Faria de Oliveira (mfo)
2020-07-07 19:28:09 Mauricio Faria de Oliveira bug added subscriber Mauricio Faria de Oliveira
2020-07-08 13:18:01 Mauricio Faria de Oliveira nominated for series Ubuntu Groovy
2020-07-08 13:18:01 Mauricio Faria de Oliveira bug task added util-linux (Ubuntu Groovy)
2020-07-08 13:18:01 Mauricio Faria de Oliveira nominated for series Ubuntu Eoan
2020-07-08 13:18:01 Mauricio Faria de Oliveira bug task added util-linux (Ubuntu Eoan)
2020-07-08 13:18:01 Mauricio Faria de Oliveira nominated for series Ubuntu Focal
2020-07-08 13:18:01 Mauricio Faria de Oliveira bug task added util-linux (Ubuntu Focal)
2020-07-08 13:19:01 Mauricio Faria de Oliveira tags amd64 apport-bug focal regression-release amd64 apport-bug focal regression-release sts-sponsor-volunteer
2020-07-08 13:19:21 Mauricio Faria de Oliveira util-linux (Ubuntu Eoan): status New Confirmed
2020-07-08 13:19:32 Mauricio Faria de Oliveira util-linux (Ubuntu Focal): status New Confirmed
2020-07-08 13:19:49 Mauricio Faria de Oliveira util-linux (Ubuntu Eoan): importance Undecided Medium
2020-07-08 13:19:51 Mauricio Faria de Oliveira util-linux (Ubuntu Focal): importance Undecided Medium
2020-07-20 08:52:10 Seyeong Kim util-linux (Ubuntu Eoan): assignee Seyeong Kim (seyeongkim)
2020-07-20 08:52:11 Seyeong Kim util-linux (Ubuntu Focal): assignee Seyeong Kim (seyeongkim)
2020-07-20 13:13:24 Mauricio Faria de Oliveira util-linux (Ubuntu Groovy): status In Progress Confirmed
2020-07-20 13:13:40 Mauricio Faria de Oliveira util-linux (Ubuntu Groovy): assignee Mauricio Faria de Oliveira (mfo) Seyeong Kim (seyeongkim)
2020-07-20 13:14:34 Mauricio Faria de Oliveira tags amd64 apport-bug focal regression-release sts-sponsor-volunteer amd64 apport-bug focal regression-release sts-sponsor-mfo
2020-07-21 08:16:30 Seyeong Kim attachment added lp1886300_groovy.debdiff https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/1886300/+attachment/5394575/+files/lp1886300_groovy.debdiff
2020-07-21 08:16:49 Seyeong Kim attachment added lp1886300_focal.debdiff https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/1886300/+attachment/5394576/+files/lp1886300_focal.debdiff
2020-07-21 08:17:19 Seyeong Kim bug task deleted util-linux (Ubuntu Eoan)
2020-07-21 08:26:50 Ubuntu Foundations Team Bug Bot tags amd64 apport-bug focal regression-release sts-sponsor-mfo amd64 apport-bug focal patch regression-release sts-sponsor-mfo
2020-07-21 08:26:57 Ubuntu Foundations Team Bug Bot bug added subscriber Ubuntu Sponsors Team
2020-07-21 08:27:51 Seyeong Kim description rename.ul refuses to rename links that don't resolve. bionic rename.ul renames links whether or not they resolve (util-linux 2.31.1-0.4ubuntu3.6). focal rename.ul refuses to rename links that don't resolve (regression) (util-linux 2.34-0.1ubuntu9). ProblemType: Bug DistroRelease: Ubuntu 20.04 Package: util-linux 2.34-0.1ubuntu9 ProcVersionSignature: Ubuntu 5.4.0-21.25-generic 5.4.27 Uname: Linux 5.4.0-21-generic x86_64 ApportVersion: 2.20.11-0ubuntu27.3 Architecture: amd64 CasperMD5CheckResult: skip Date: Sat Jul 4 20:38:06 2020 InstallationDate: Installed on 2020-04-05 (90 days ago) InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Beta amd64 (20200331) ProcEnviron: LC_TIME=en_DK.utf8 TERM=screen PATH=(custom, no user) LANG=en_US.utf8 SHELL=/bin/bash SourcePackage: util-linux UpgradeStatus: No upgrade log present (probably fresh install) [Impact] rename.ul refuses to rename links that don't resolve. bionic rename.ul renames links whether or not they resolve (util-linux 2.31.1-0.4ubuntu3.6). focal rename.ul refuses to rename links that don't resolve (regression) (util-linux 2.34-0.1ubuntu9). Eoan is EOL, so removed. [Test case] Commit has good test case. I paste it here Before: $ touch file-found $ ln -s file-found symlink-1 $ ./rename sym symbolic- symlink-1 # XPASS. $ echo $? 0 $ ln -s file-not-found symlink-2 $ ./rename sym symbolic- symlink-2 # FAIL! REGRESSION. rename: symlink-2: not accessible: No such file or directory $ echo $? 1 $ ./rename sym symbolic- symlink-3 # XFAIL. rename: symlink-3: not accessible: No such file or directory $ echo $? 1 $ touch file-found $ ./rename found existing file-found # XPASS. $ echo $? 0 $ ./rename found existing file-not-found # XFAIL. rename: file-not-found: not accessible: No such file or directory $ echo $? 1 After: $ touch file-found $ ln -s file-found symlink-1 $ ./rename sym symbolic- symlink-1 # XPASS. $ echo $? 0 $ ln -s file-not-found symlink-2 $ ./rename sym symbolic- symlink-2 # PASS! REGRESSION FIXED. $ echo $? 0 $ ./rename sym symbolic- symlink-3 # XFAIL. rename: symlink-3: not accessible: No such file or directory $ echo $? 1 $ touch file-found $ ./rename found existing file-found # XPASS. $ echo $? 0 $ ./rename found existing file-not-found # XFAIL. rename: file-not-found: not accessible: No such file or directory $ echo $? 1 [Regression Potential] This commit changes code that checking accessibility to file or sym link. If this fails, rename command will not work properly.it could be crashed or causes failure of rename. [Original Description] rename.ul refuses to rename links that don't resolve. bionic rename.ul renames links whether or not they resolve (util-linux 2.31.1-0.4ubuntu3.6). focal rename.ul refuses to rename links that don't resolve (regression) (util-linux 2.34-0.1ubuntu9). ProblemType: Bug DistroRelease: Ubuntu 20.04 Package: util-linux 2.34-0.1ubuntu9 ProcVersionSignature: Ubuntu 5.4.0-21.25-generic 5.4.27 Uname: Linux 5.4.0-21-generic x86_64 ApportVersion: 2.20.11-0ubuntu27.3 Architecture: amd64 CasperMD5CheckResult: skip Date: Sat Jul 4 20:38:06 2020 InstallationDate: Installed on 2020-04-05 (90 days ago) InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Beta amd64 (20200331) ProcEnviron:  LC_TIME=en_DK.utf8  TERM=screen  PATH=(custom, no user)  LANG=en_US.utf8  SHELL=/bin/bash SourcePackage: util-linux UpgradeStatus: No upgrade log present (probably fresh install)
2020-07-21 23:03:35 Mauricio Faria de Oliveira bug added subscriber STS Sponsors
2020-07-23 02:21:04 Dominique Poulain bug added subscriber Dominique Poulain
2020-07-23 06:21:48 Seyeong Kim attachment removed lp1886300_groovy.debdiff https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/1886300/+attachment/5394575/+files/lp1886300_groovy.debdiff
2020-07-23 06:21:59 Seyeong Kim attachment removed lp1886300_focal.debdiff https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/1886300/+attachment/5394576/+files/lp1886300_focal.debdiff
2020-07-23 06:22:13 Seyeong Kim attachment added lp1886300_focal.debdiff https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/1886300/+attachment/5395089/+files/lp1886300_focal.debdiff
2020-07-23 06:22:24 Seyeong Kim attachment added lp1886300_groovy.debdiff https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/1886300/+attachment/5395090/+files/lp1886300_groovy.debdiff
2020-08-05 13:39:12 Mauricio Faria de Oliveira util-linux (Ubuntu Groovy): status Confirmed Fix Committed
2020-08-05 13:39:23 Mauricio Faria de Oliveira util-linux (Ubuntu Focal): status Confirmed In Progress
2020-08-26 22:08:12 Brian Murray bug watch added https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=966106
2020-08-26 22:08:12 Brian Murray bug task added util-linux (Debian)
2020-08-26 22:09:07 Brian Murray util-linux (Ubuntu Focal): status In Progress Fix Committed
2020-08-26 22:09:10 Brian Murray bug added subscriber Ubuntu Stable Release Updates Team
2020-08-26 22:09:12 Brian Murray bug added subscriber SRU Verification
2020-08-26 22:11:20 Brian Murray removed subscriber Ubuntu Sponsors Team
2020-08-26 23:59:24 Bug Watch Updater util-linux (Debian): status Unknown Fix Released
2020-08-28 03:33:43 gregrwm tags amd64 apport-bug focal patch regression-release sts-sponsor-mfo amd64 apport-bug focal patch regression-release sts-sponsor-mfo verification-done-focal
2020-08-28 14:01:48 Mauricio Faria de Oliveira util-linux (Ubuntu Groovy): status Fix Committed Triaged
2020-08-28 14:01:51 Mauricio Faria de Oliveira util-linux (Ubuntu Groovy): status Triaged Fix Released
2020-09-15 21:31:58 Launchpad Janitor util-linux (Ubuntu Focal): status Fix Committed Fix Released
2020-09-15 21:32:07 Brian Murray removed subscriber Ubuntu Stable Release Updates Team
2020-09-22 16:40:22 Mauricio Faria de Oliveira tags amd64 apport-bug focal patch regression-release sts-sponsor-mfo verification-done-focal amd64 apport-bug focal patch regression-release verification-done-focal