Activity log for bug #1390061

Date Who What changed Old value New value Message
2014-11-06 12:37:21 Ove Risberg bug added bug
2014-11-06 12:37:21 Ove Risberg attachment added bash_completion.patch https://bugs.launchpad.net/bugs/1390061/+attachment/4254470/+files/bash_completion.patch
2014-11-06 12:45:33 Launchpad Janitor bash-completion (Ubuntu): status New Confirmed
2014-11-06 14:19:06 Jan Pleva bug added subscriber Jan Pleva
2014-11-06 15:26:51 Ove Risberg bug added subscriber Tieto
2014-11-06 15:43:58 Niklas Andersson bug added subscriber Niklas Andersson
2014-11-06 16:26:32 Ubuntu Foundations Team Bug Bot tags patch
2014-11-06 16:26:41 Ubuntu Foundations Team Bug Bot bug added subscriber Ubuntu Review Team
2014-11-12 20:15:42 Brian Murray tags patch patch trusty utopic
2014-11-12 22:30:51 Alberto Salvia Novella bash-completion (Ubuntu): importance Undecided Medium
2015-07-22 01:21:49 hungrywolf bug added subscriber hungrywolf
2015-09-22 14:28:04 Georg bug added subscriber Georg
2015-11-04 07:36:16 Nathan Jolly bug added subscriber Nathan Jolly
2016-01-20 20:11:58 Istvan bug added subscriber Istvan
2016-02-08 15:19:06 Marc Deslauriers bug added subscriber Ubuntu Sponsors Team
2016-02-08 18:14:37 Ove Risberg bug watch added http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739835
2016-02-08 23:26:54 Mathew Hodson bug watch removed http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739835
2016-02-26 18:03:31 Hugo Arès bug added subscriber Hugo Arès
2016-04-28 12:32:34 Dariusz Gadomski bug added subscriber Dariusz Gadomski
2016-04-29 09:13:49 Seyeong Kim attachment added yakkety_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651212/+files/yakkety_add_backslash_for_tilde.debdiff
2016-04-29 09:14:16 Seyeong Kim bash-completion (Ubuntu): assignee Seyeong Kim (xtrusia)
2016-04-29 09:14:24 Seyeong Kim tags patch trusty utopic patch sts trusty utopic
2016-04-29 09:23:37 Seyeong Kim description 1) The release of Ubuntu you are using, via 'lsb_release -rd' or System -> About Ubuntu root@ubuntu1404:~# lsb_release -rd Description: Ubuntu 14.04.1 LTS Release: 14.04 2) The version of the package you are using, via 'apt-cache policy pkgname' or by checking in Software Center root@ubuntu1404:~# apt-cache policy bash-completion bash-completion: Installed: 1:2.1-4 Candidate: 1:2.1-4 Version table: *** 1:2.1-4 0 500 http://se.archive.ubuntu.com/ubuntu/ trusty/main i386 Packages 100 /var/lib/dpkg/status 3) What you expected to happen When I use bash-completion it should not read the /etc/passwd file or contact the Active directory. It is very hard to see this problem unless you run this on a machine with slow authentication... but the commands below will show if the /etc/passwd or sssd are used by bash_completion or not: root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss When the ~ are escaped on line 545 and 547 in /usr/share/bash-completion/bash_completion then bash_completion works as expected. 4) What happened instead Every time you use tab-completion in bash on ubuntu 14.04 it will read the /etc/passwd file and if sssd are installed and configured for Active Directory authentication it will talk to sssd... and this can be slow in some environments. root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss open("/lib/i386-linux-gnu/libnss_sss.so.2", O_RDONLY|O_CLOEXEC) = 3 open("/var/lib/sss/mc/passwd", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3 connect(4, {sa_family=AF_LOCAL, sun_path="/var/lib/sss/pipes/nss"}, 110) = 0 I have made a small patch for this problem and I have not found any side effects: --- /usr/share/bash-completion/bash_completion.orig 2014-11-06 10:36:14.981888369 +0100 +++ /usr/share/bash-completion/bash_completion 2014-11-06 10:36:25.142070963 +0100 @@ -542,9 +542,9 @@ elif [[ $1 == \'* ]]; then # Leave out first character printf -v $2 %s "${1:1}" - elif [[ $1 == ~* ]]; then + elif [[ $1 == \~* ]]; then # avoid escaping first ~ - printf -v $2 ~%q "${1:1}" + printf -v $2 \~%q "${1:1}" else printf -v $2 %q "$1" fi [Impact] when authenticate AD, with bask-completion, it's very slow. [Testcase] Below command should output nothing. root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss but we have something root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss open("/lib/i386-linux-gnu/libnss_sss.so.2", O_RDONLY|O_CLOEXEC) = 3 open("/var/lib/sss/mc/passwd", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3 connect(4, {sa_family=AF_LOCAL, sun_path="/var/lib/sss/pipes/nss"}, 110) = 0 [Regeression Potential] [Other Info] This is not from upstream, no need to fix for upstream. But fix code seems harmless. just specify special character ~ // The original description 1) The release of Ubuntu you are using, via 'lsb_release -rd' or System -> About Ubuntu root@ubuntu1404:~# lsb_release -rd Description: Ubuntu 14.04.1 LTS Release: 14.04 2) The version of the package you are using, via 'apt-cache policy pkgname' or by checking in Software Center root@ubuntu1404:~# apt-cache policy bash-completion bash-completion:   Installed: 1:2.1-4   Candidate: 1:2.1-4   Version table:  *** 1:2.1-4 0         500 http://se.archive.ubuntu.com/ubuntu/ trusty/main i386 Packages         100 /var/lib/dpkg/status 3) What you expected to happen When I use bash-completion it should not read the /etc/passwd file or contact the Active directory. It is very hard to see this problem unless you run this on a machine with slow authentication... but the commands below will show if the /etc/passwd or sssd are used by bash_completion or not: root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss When the ~ are escaped on line 545 and 547 in /usr/share/bash-completion/bash_completion then bash_completion works as expected. 4) What happened instead Every time you use tab-completion in bash on ubuntu 14.04 it will read the /etc/passwd file and if sssd are installed and configured for Active Directory authentication it will talk to sssd... and this can be slow in some environments. root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss open("/lib/i386-linux-gnu/libnss_sss.so.2", O_RDONLY|O_CLOEXEC) = 3 open("/var/lib/sss/mc/passwd", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3 connect(4, {sa_family=AF_LOCAL, sun_path="/var/lib/sss/pipes/nss"}, 110) = 0 I have made a small patch for this problem and I have not found any side effects: --- /usr/share/bash-completion/bash_completion.orig 2014-11-06 10:36:14.981888369 +0100 +++ /usr/share/bash-completion/bash_completion 2014-11-06 10:36:25.142070963 +0100 @@ -542,9 +542,9 @@      elif [[ $1 == \'* ]]; then          # Leave out first character          printf -v $2 %s "${1:1}" - elif [[ $1 == ~* ]]; then + elif [[ $1 == \~* ]]; then          # avoid escaping first ~ - printf -v $2 ~%q "${1:1}" + printf -v $2 \~%q "${1:1}"      else          printf -v $2 %q "$1"      fi
2016-04-29 09:23:42 Seyeong Kim bash-completion (Ubuntu): status Confirmed In Progress
2016-04-29 09:25:00 Seyeong Kim bug added subscriber Ubuntu Stable Release Updates Team
2016-04-29 09:30:38 Louis Bouchard nominated for series Ubuntu Xenial
2016-04-29 09:30:38 Louis Bouchard bug task added bash-completion (Ubuntu Xenial)
2016-04-29 09:30:38 Louis Bouchard nominated for series Ubuntu Trusty
2016-04-29 09:30:38 Louis Bouchard bug task added bash-completion (Ubuntu Trusty)
2016-04-29 09:52:44 Seyeong Kim description [Impact] when authenticate AD, with bask-completion, it's very slow. [Testcase] Below command should output nothing. root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss but we have something root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss open("/lib/i386-linux-gnu/libnss_sss.so.2", O_RDONLY|O_CLOEXEC) = 3 open("/var/lib/sss/mc/passwd", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3 connect(4, {sa_family=AF_LOCAL, sun_path="/var/lib/sss/pipes/nss"}, 110) = 0 [Regeression Potential] [Other Info] This is not from upstream, no need to fix for upstream. But fix code seems harmless. just specify special character ~ // The original description 1) The release of Ubuntu you are using, via 'lsb_release -rd' or System -> About Ubuntu root@ubuntu1404:~# lsb_release -rd Description: Ubuntu 14.04.1 LTS Release: 14.04 2) The version of the package you are using, via 'apt-cache policy pkgname' or by checking in Software Center root@ubuntu1404:~# apt-cache policy bash-completion bash-completion:   Installed: 1:2.1-4   Candidate: 1:2.1-4   Version table:  *** 1:2.1-4 0         500 http://se.archive.ubuntu.com/ubuntu/ trusty/main i386 Packages         100 /var/lib/dpkg/status 3) What you expected to happen When I use bash-completion it should not read the /etc/passwd file or contact the Active directory. It is very hard to see this problem unless you run this on a machine with slow authentication... but the commands below will show if the /etc/passwd or sssd are used by bash_completion or not: root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss When the ~ are escaped on line 545 and 547 in /usr/share/bash-completion/bash_completion then bash_completion works as expected. 4) What happened instead Every time you use tab-completion in bash on ubuntu 14.04 it will read the /etc/passwd file and if sssd are installed and configured for Active Directory authentication it will talk to sssd... and this can be slow in some environments. root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss open("/lib/i386-linux-gnu/libnss_sss.so.2", O_RDONLY|O_CLOEXEC) = 3 open("/var/lib/sss/mc/passwd", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3 connect(4, {sa_family=AF_LOCAL, sun_path="/var/lib/sss/pipes/nss"}, 110) = 0 I have made a small patch for this problem and I have not found any side effects: --- /usr/share/bash-completion/bash_completion.orig 2014-11-06 10:36:14.981888369 +0100 +++ /usr/share/bash-completion/bash_completion 2014-11-06 10:36:25.142070963 +0100 @@ -542,9 +542,9 @@      elif [[ $1 == \'* ]]; then          # Leave out first character          printf -v $2 %s "${1:1}" - elif [[ $1 == ~* ]]; then + elif [[ $1 == \~* ]]; then          # avoid escaping first ~ - printf -v $2 ~%q "${1:1}" + printf -v $2 \~%q "${1:1}"      else          printf -v $2 %q "$1"      fi [Impact] when authenticate AD, with bask-completion, it's very slow. [Testcase] Below command should output nothing. root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss but we have something root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss open("/lib/i386-linux-gnu/libnss_sss.so.2", O_RDONLY|O_CLOEXEC) = 3 open("/var/lib/sss/mc/passwd", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3 connect(4, {sa_family=AF_LOCAL, sun_path="/var/lib/sss/pipes/nss"}, 110) = 0 [Regeression Potential] Regression possible about https://bugs.launchpad.net/ubuntu/+source/bash/+bug/1288314 but there is no problem with ~ completion in my test I thested ~/<Tab>/ ~/<Tab>/<Tab> with no problem [Other Info] This is not from upstream, no need to fix for upstream. But fix code seems harmless. just specify special character ~ // The original description 1) The release of Ubuntu you are using, via 'lsb_release -rd' or System -> About Ubuntu root@ubuntu1404:~# lsb_release -rd Description: Ubuntu 14.04.1 LTS Release: 14.04 2) The version of the package you are using, via 'apt-cache policy pkgname' or by checking in Software Center root@ubuntu1404:~# apt-cache policy bash-completion bash-completion:   Installed: 1:2.1-4   Candidate: 1:2.1-4   Version table:  *** 1:2.1-4 0         500 http://se.archive.ubuntu.com/ubuntu/ trusty/main i386 Packages         100 /var/lib/dpkg/status 3) What you expected to happen When I use bash-completion it should not read the /etc/passwd file or contact the Active directory. It is very hard to see this problem unless you run this on a machine with slow authentication... but the commands below will show if the /etc/passwd or sssd are used by bash_completion or not: root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss When the ~ are escaped on line 545 and 547 in /usr/share/bash-completion/bash_completion then bash_completion works as expected. 4) What happened instead Every time you use tab-completion in bash on ubuntu 14.04 it will read the /etc/passwd file and if sssd are installed and configured for Active Directory authentication it will talk to sssd... and this can be slow in some environments. root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep /etc/passwd open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 root@ubuntu1404:~# strace bash -c ". /etc/bash_completion; quote_readline '/something'; echo" 2>&1 | grep sss open("/lib/i386-linux-gnu/libnss_sss.so.2", O_RDONLY|O_CLOEXEC) = 3 open("/var/lib/sss/mc/passwd", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3 connect(4, {sa_family=AF_LOCAL, sun_path="/var/lib/sss/pipes/nss"}, 110) = 0 I have made a small patch for this problem and I have not found any side effects: --- /usr/share/bash-completion/bash_completion.orig 2014-11-06 10:36:14.981888369 +0100 +++ /usr/share/bash-completion/bash_completion 2014-11-06 10:36:25.142070963 +0100 @@ -542,9 +542,9 @@      elif [[ $1 == \'* ]]; then          # Leave out first character          printf -v $2 %s "${1:1}" - elif [[ $1 == ~* ]]; then + elif [[ $1 == \~* ]]; then          # avoid escaping first ~ - printf -v $2 ~%q "${1:1}" + printf -v $2 \~%q "${1:1}"      else          printf -v $2 %q "$1"      fi
2016-04-29 10:11:31 Seyeong Kim attachment removed yakkety_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651212/+files/yakkety_add_backslash_for_tilde.debdiff
2016-04-29 10:11:46 Seyeong Kim attachment added yakkety_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651259/+files/yakkety_add_backslash_for_tilde.debdiff
2016-04-29 10:11:58 Seyeong Kim attachment added xenial_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651260/+files/xenial_add_backslash_for_tilde.debdiff
2016-04-29 10:25:17 Seyeong Kim bash-completion (Ubuntu Trusty): status New In Progress
2016-04-29 10:25:19 Seyeong Kim bash-completion (Ubuntu Xenial): status New In Progress
2016-04-29 10:25:22 Seyeong Kim bash-completion (Ubuntu Xenial): assignee Seyeong Kim (xtrusia)
2016-04-29 10:25:23 Seyeong Kim bash-completion (Ubuntu Trusty): assignee Seyeong Kim (xtrusia)
2016-04-29 10:25:28 Seyeong Kim attachment removed yakkety_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651259/+files/yakkety_add_backslash_for_tilde.debdiff
2016-04-29 10:25:37 Seyeong Kim attachment removed xenial_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651260/+files/xenial_add_backslash_for_tilde.debdiff
2016-04-29 10:25:49 Seyeong Kim attachment added trusty_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651262/+files/trusty_add_backslash_for_tilde.debdiff
2016-04-29 10:26:03 Seyeong Kim attachment added xenial_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651264/+files/xenial_add_backslash_for_tilde.debdiff
2016-04-29 10:26:14 Seyeong Kim attachment added yakkety_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651265/+files/yakkety_add_backslash_for_tilde.debdiff
2016-05-02 10:04:59 Seyeong Kim attachment removed trusty_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651262/+files/trusty_add_backslash_for_tilde.debdiff
2016-05-02 10:05:09 Seyeong Kim attachment removed xenial_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651264/+files/xenial_add_backslash_for_tilde.debdiff
2016-05-02 10:05:17 Seyeong Kim attachment removed yakkety_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4651265/+files/yakkety_add_backslash_for_tilde.debdiff
2016-05-02 17:53:44 Mathew Hodson bash-completion (Ubuntu Trusty): importance Undecided Medium
2016-05-02 17:53:46 Mathew Hodson bash-completion (Ubuntu Xenial): importance Undecided Medium
2016-05-03 10:45:57 Seyeong Kim attachment added trusty_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4654358/+files/trusty_add_backslash_for_tilde.debdiff
2016-05-03 10:46:10 Seyeong Kim attachment added xenial_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4654359/+files/xenial_add_backslash_for_tilde.debdiff
2016-05-03 10:46:24 Seyeong Kim attachment added yakkety_add_backslash_for_tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4654360/+files/yakkety_add_backslash_for_tilde.debdiff
2016-05-03 13:52:29 Launchpad Janitor bash-completion (Ubuntu): status In Progress Fix Released
2016-05-11 15:42:30 Chris J Arges bash-completion (Ubuntu Trusty): status In Progress Fix Committed
2016-05-11 15:42:35 Chris J Arges bug added subscriber SRU Verification
2016-05-11 15:42:43 Chris J Arges tags patch sts trusty utopic patch sts trusty utopic verification-needed
2016-05-11 15:42:48 Chris J Arges removed subscriber Ubuntu Sponsors Team
2016-05-11 15:43:12 Chris J Arges nominated for series Ubuntu Wily
2016-05-11 15:43:12 Chris J Arges bug task added bash-completion (Ubuntu Wily)
2016-05-12 02:11:04 Seyeong Kim attachment added wily-add-backslash-for-tilde.debdiff https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/1390061/+attachment/4660993/+files/wily-add-backslash-for-tilde.debdiff
2016-05-12 02:13:01 Seyeong Kim bash-completion (Ubuntu Wily): status New In Progress
2016-05-12 02:13:04 Seyeong Kim bash-completion (Ubuntu Wily): assignee Seyeong Kim (xtrusia)
2016-05-12 07:23:23 Mathew Hodson bash-completion (Ubuntu Wily): importance Undecided Medium
2016-05-12 12:13:56 Ove Risberg tags patch sts trusty utopic verification-needed patch sts trusty utopic verification-done
2016-05-18 09:18:29 Martin Pitt bash-completion (Ubuntu Xenial): status In Progress Fix Committed
2016-05-18 09:18:38 Martin Pitt tags patch sts trusty utopic verification-done patch sts trusty utopic
2016-05-18 09:18:38 Martin Pitt tags patch sts trusty utopic patch sts trusty utopic verification-needed
2016-05-18 23:28:21 Mathew Hodson tags patch sts trusty utopic verification-needed patch sts trusty utopic verification-done-trusty verification-needed-xenial
2016-05-19 11:23:09 Seyeong Kim tags patch sts trusty utopic verification-done-trusty verification-needed-xenial patch sts trusty utopic verification-done-trusty verification-done-xenial
2016-05-19 17:04:09 Launchpad Janitor bash-completion (Ubuntu Trusty): status Fix Committed Fix Released
2016-05-19 17:04:12 Brian Murray removed subscriber Ubuntu Stable Release Updates Team
2016-05-25 13:13:51 Launchpad Janitor bash-completion (Ubuntu Xenial): status Fix Committed Fix Released
2016-06-26 18:47:35 Nathan Stratton Treadway bug watch added http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825317
2016-06-26 18:47:35 Nathan Stratton Treadway bug task added bash-completion (Debian)
2016-06-26 20:37:51 Nathan Stratton Treadway bug added subscriber Nathan Stratton Treadway
2016-06-27 00:31:31 Bug Watch Updater bash-completion (Debian): status Unknown New
2017-02-04 22:38:02 Mathew Hodson bash-completion (Ubuntu Wily): status In Progress Won't Fix
2019-06-04 18:46:45 Dan Streetman tags patch sts trusty utopic verification-done-trusty verification-done-xenial patch trusty utopic verification-done-trusty verification-done-xenial