Activity log for bug #1791108

Date Who What changed Old value New value Message
2018-09-06 14:11:19 Victor Tapia bug added bug
2018-09-06 14:16:37 Victor Tapia attachment added domainsearch-to-search.patch https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1791108/+attachment/5185658/+files/domainsearch-to-search.patch
2018-09-06 15:41:51 Dominique Poulain bug added subscriber Dominique Poulain
2018-09-06 16:25:03 Ubuntu Foundations Team Bug Bot tags sts patch sts
2018-09-06 16:25:10 Ubuntu Foundations Team Bug Bot bug added subscriber Ubuntu Review Team
2018-09-11 15:20:18 Victor Tapia nominated for series Ubuntu Bionic
2018-09-11 15:20:18 Victor Tapia nominated for series Ubuntu Cosmic
2018-09-11 15:20:18 Victor Tapia nominated for series Ubuntu Xenial
2018-09-18 08:45:17 Victor Tapia description Having an interface file such as /run/net-eno2.conf with the following content: DEVICE='eno2' PROTO='dhcp' IPV4ADDR='10.10.10.10' IPV4BROADCAST='10.10.10.255' IPV4NETMASK='255.255.255.0' IPV4GATEWAY='10.10.10.1' IPV4DNS0='169.254.169.254' IPV4DNS1='0.0.0.0' HOSTNAME='' DNSDOMAIN='test.com' NISDOMAIN='' ROOTSERVER='169.254.169.254' ROOTPATH='' filename='/ipxe.efi' UPTIME='45' DHCPLEASETIME='86400' DOMAINSEARCH='test.com' net-interface-handler translates it to: nameserver 169.254.169.254 domainsearch test.com instead of: nameserver 169.254.169.254 search test.com The problem is that domainsearch is not a valid configuration option for /etc/resolv.conf and is ignored. [Impact] * open-iscsi is adding "domainsearch", a non-existent configuration option, instead of "search" in /etc/resolv.conf. As a result, the search list is ignored in the clients. [Test case] * Install an ubuntu machine that uses iscsi as root. * Prepare the dhcp server to provide the search list to its clients. For instance, in dnsmasq: dhcp-option=option:domain-search,canonical.com * Boot the machine and check the content of /etc/resolv.conf - if domainsearch is present, the search list will be ignored: root@iscsi-xenial:/home/ubuntu# ping -c1 golem ping: unknown host golem root@iscsi-xenial:/home/ubuntu# strace ping -c1 golem 2>&1 | grep golem execve("/bin/ping", ["ping", "-c1", "golem"], [/* 19 vars */]) = 0 sendto(4, "_(\1\0\0\1\0\0\0\0\0\0\5golem\0\0\1\0\1", 23, MSG_NOSIGNAL, NULL, 0) = 23 recvfrom(4, "_(\201\203\0\1\0\0\0\0\0\0\5golem\0\0\1\0\1", 1024, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.122.1")}, [16]) = 23 write(2, "ping: unknown host golem\n", 25ping: unknown host golem - if search is present, the search list will be used: root@iscsi-xenial:/home/ubuntu# ping -c1 golem PING golem.canonical.com (91.189.89.199) 56(84) bytes of data. 64 bytes from golem.canonical.com (91.189.89.199): icmp_seq=1 ttl=57 time=63.7 ms --- golem.canonical.com ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 63.735/63.735/63.735/0.000 ms root@iscsi-xenial:/home/ubuntu# strace ping -c1 golem 2>&1 | grep golem execve("/bin/ping", ["ping", "-c1", "golem"], [/* 19 vars */]) = 0 sendto(4, "\1\\\1\0\0\1\0\0\0\0\0\0\5golem\tcanonical\3com"..., 37, MSG_NOSIGNAL, NULL, 0) = 37 recvfrom(4, "\1\\\201\200\0\1\0\1\0\0\0\0\5golem\tcanonical\3com"..., 1024, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.122.1")}, [16]) = 53 write(1, "PING golem.canonical.com (91.189"..., 145PING golem.canonical.com (91.189.89.199) 56(84) bytes of data. 64 bytes from golem.canonical.com (91.189.89.199): icmp_seq=1 ttl=57 time=63.5 ms write(1, "--- golem.canonical.com ping sta"..., 157--- golem.canonical.com ping statistics --- [Regression potential] * None [Other info] * resolv.conf man page: http://man7.org/linux/man-pages/man5/resolv.conf.5.html [Original description] Having an interface file such as /run/net-eno2.conf with the following content: DEVICE='eno2' PROTO='dhcp' IPV4ADDR='10.10.10.10' IPV4BROADCAST='10.10.10.255' IPV4NETMASK='255.255.255.0' IPV4GATEWAY='10.10.10.1' IPV4DNS0='169.254.169.254' IPV4DNS1='0.0.0.0' HOSTNAME='' DNSDOMAIN='test.com' NISDOMAIN='' ROOTSERVER='169.254.169.254' ROOTPATH='' filename='/ipxe.efi' UPTIME='45' DHCPLEASETIME='86400' DOMAINSEARCH='test.com' net-interface-handler translates it to: nameserver 169.254.169.254 domainsearch test.com instead of: nameserver 169.254.169.254 search test.com The problem is that domainsearch is not a valid configuration option for /etc/resolv.conf and is ignored.
2018-09-18 08:53:01 Victor Tapia attachment added open-iscsi-bionic.debdiff https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1791108/+attachment/5190084/+files/open-iscsi-bionic.debdiff
2018-09-18 08:53:29 Victor Tapia attachment added open-iscsi-cosmic.debdiff https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1791108/+attachment/5190085/+files/open-iscsi-cosmic.debdiff
2018-09-18 08:54:44 Victor Tapia attachment added open-iscsi-xenial.debdiff https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1791108/+attachment/5190086/+files/open-iscsi-xenial.debdiff
2018-09-18 08:58:07 Victor Tapia tags patch sts patch sts sts-sru-needed
2018-09-18 11:52:49 Victor Tapia description [Impact] * open-iscsi is adding "domainsearch", a non-existent configuration option, instead of "search" in /etc/resolv.conf. As a result, the search list is ignored in the clients. [Test case] * Install an ubuntu machine that uses iscsi as root. * Prepare the dhcp server to provide the search list to its clients. For instance, in dnsmasq: dhcp-option=option:domain-search,canonical.com * Boot the machine and check the content of /etc/resolv.conf - if domainsearch is present, the search list will be ignored: root@iscsi-xenial:/home/ubuntu# ping -c1 golem ping: unknown host golem root@iscsi-xenial:/home/ubuntu# strace ping -c1 golem 2>&1 | grep golem execve("/bin/ping", ["ping", "-c1", "golem"], [/* 19 vars */]) = 0 sendto(4, "_(\1\0\0\1\0\0\0\0\0\0\5golem\0\0\1\0\1", 23, MSG_NOSIGNAL, NULL, 0) = 23 recvfrom(4, "_(\201\203\0\1\0\0\0\0\0\0\5golem\0\0\1\0\1", 1024, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.122.1")}, [16]) = 23 write(2, "ping: unknown host golem\n", 25ping: unknown host golem - if search is present, the search list will be used: root@iscsi-xenial:/home/ubuntu# ping -c1 golem PING golem.canonical.com (91.189.89.199) 56(84) bytes of data. 64 bytes from golem.canonical.com (91.189.89.199): icmp_seq=1 ttl=57 time=63.7 ms --- golem.canonical.com ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 63.735/63.735/63.735/0.000 ms root@iscsi-xenial:/home/ubuntu# strace ping -c1 golem 2>&1 | grep golem execve("/bin/ping", ["ping", "-c1", "golem"], [/* 19 vars */]) = 0 sendto(4, "\1\\\1\0\0\1\0\0\0\0\0\0\5golem\tcanonical\3com"..., 37, MSG_NOSIGNAL, NULL, 0) = 37 recvfrom(4, "\1\\\201\200\0\1\0\1\0\0\0\0\5golem\tcanonical\3com"..., 1024, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.122.1")}, [16]) = 53 write(1, "PING golem.canonical.com (91.189"..., 145PING golem.canonical.com (91.189.89.199) 56(84) bytes of data. 64 bytes from golem.canonical.com (91.189.89.199): icmp_seq=1 ttl=57 time=63.5 ms write(1, "--- golem.canonical.com ping sta"..., 157--- golem.canonical.com ping statistics --- [Regression potential] * None [Other info] * resolv.conf man page: http://man7.org/linux/man-pages/man5/resolv.conf.5.html [Original description] Having an interface file such as /run/net-eno2.conf with the following content: DEVICE='eno2' PROTO='dhcp' IPV4ADDR='10.10.10.10' IPV4BROADCAST='10.10.10.255' IPV4NETMASK='255.255.255.0' IPV4GATEWAY='10.10.10.1' IPV4DNS0='169.254.169.254' IPV4DNS1='0.0.0.0' HOSTNAME='' DNSDOMAIN='test.com' NISDOMAIN='' ROOTSERVER='169.254.169.254' ROOTPATH='' filename='/ipxe.efi' UPTIME='45' DHCPLEASETIME='86400' DOMAINSEARCH='test.com' net-interface-handler translates it to: nameserver 169.254.169.254 domainsearch test.com instead of: nameserver 169.254.169.254 search test.com The problem is that domainsearch is not a valid configuration option for /etc/resolv.conf and is ignored. [Impact] * open-iscsi is adding "domainsearch", a non-existent configuration option, instead of "search" in /etc/resolv.conf. As a result, the search list is ignored in the clients. [Test case] * Install an ubuntu machine that uses iscsi as root. * Prepare the dhcp server to provide the search list to its clients. For instance, in dnsmasq: dhcp-option=option:domain-search,canonical.com * Boot the machine and check the content of /etc/resolv.conf - if domainsearch is present, the search list will be ignored: root@iscsi-xenial:/home/ubuntu# ping -c1 golem ping: unknown host golem root@iscsi-xenial:/home/ubuntu# strace ping -c1 golem 2>&1 | grep golem execve("/bin/ping", ["ping", "-c1", "golem"], [/* 19 vars */]) = 0 sendto(4, "_(\1\0\0\1\0\0\0\0\0\0\5golem\0\0\1\0\1", 23, MSG_NOSIGNAL, NULL, 0) = 23 recvfrom(4, "_(\201\203\0\1\0\0\0\0\0\0\5golem\0\0\1\0\1", 1024, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.122.1")}, [16]) = 23 write(2, "ping: unknown host golem\n", 25ping: unknown host golem - if search is present, the search list will be used: root@iscsi-xenial:/home/ubuntu# ping -c1 golem PING golem.canonical.com (91.189.89.199) 56(84) bytes of data. 64 bytes from golem.canonical.com (91.189.89.199): icmp_seq=1 ttl=57 time=63.7 ms --- golem.canonical.com ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 63.735/63.735/63.735/0.000 ms root@iscsi-xenial:/home/ubuntu# strace ping -c1 golem 2>&1 | grep golem execve("/bin/ping", ["ping", "-c1", "golem"], [/* 19 vars */]) = 0 sendto(4, "\1\\\1\0\0\1\0\0\0\0\0\0\5golem\tcanonical\3com"..., 37, MSG_NOSIGNAL, NULL, 0) = 37 recvfrom(4, "\1\\\201\200\0\1\0\1\0\0\0\0\5golem\tcanonical\3com"..., 1024, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.122.1")}, [16]) = 53 write(1, "PING golem.canonical.com (91.189"..., 145PING golem.canonical.com (91.189.89.199) 56(84) bytes of data. 64 bytes from golem.canonical.com (91.189.89.199): icmp_seq=1 ttl=57 time=63.5 ms write(1, "--- golem.canonical.com ping sta"..., 157--- golem.canonical.com ping statistics --- [Regression potential] * None. The change is minor (a string replacement) and it's currently not working. [Other info] * resolv.conf man page: http://man7.org/linux/man-pages/man5/resolv.conf.5.html [Original description] Having an interface file such as /run/net-eno2.conf with the following content: DEVICE='eno2' PROTO='dhcp' IPV4ADDR='10.10.10.10' IPV4BROADCAST='10.10.10.255' IPV4NETMASK='255.255.255.0' IPV4GATEWAY='10.10.10.1' IPV4DNS0='169.254.169.254' IPV4DNS1='0.0.0.0' HOSTNAME='' DNSDOMAIN='test.com' NISDOMAIN='' ROOTSERVER='169.254.169.254' ROOTPATH='' filename='/ipxe.efi' UPTIME='45' DHCPLEASETIME='86400' DOMAINSEARCH='test.com' net-interface-handler translates it to: nameserver 169.254.169.254 domainsearch test.com instead of: nameserver 169.254.169.254 search test.com The problem is that domainsearch is not a valid configuration option for /etc/resolv.conf and is ignored.
2018-09-18 21:12:49 Dan Streetman bug task added open-iscsi (Ubuntu Bionic)
2018-09-18 21:12:53 Dan Streetman bug task added open-iscsi (Ubuntu Cosmic)
2018-09-18 21:12:56 Dan Streetman bug task added open-iscsi (Ubuntu Xenial)
2018-09-19 16:04:22 Dan Streetman tags patch sts sts-sru-needed patch sts sts-sponsor sts-sru-needed
2018-09-19 16:04:40 Dan Streetman bug added subscriber STS Sponsors
2018-09-19 16:04:57 Dan Streetman open-iscsi (Ubuntu Cosmic): importance Undecided Medium
2018-09-19 16:04:59 Dan Streetman open-iscsi (Ubuntu Bionic): importance Undecided Medium
2018-09-19 16:05:00 Dan Streetman open-iscsi (Ubuntu Xenial): importance Undecided Medium
2018-09-19 16:05:03 Dan Streetman open-iscsi (Ubuntu Cosmic): status New In Progress
2018-09-19 16:05:05 Dan Streetman open-iscsi (Ubuntu Bionic): status New In Progress
2018-09-19 16:05:06 Dan Streetman open-iscsi (Ubuntu Xenial): status New In Progress
2018-09-19 16:05:14 Dan Streetman open-iscsi (Ubuntu Cosmic): assignee Victor Tapia (vtapia)
2018-09-19 16:05:21 Dan Streetman open-iscsi (Ubuntu Bionic): assignee Victor Tapia (vtapia)
2018-09-19 16:05:31 Dan Streetman open-iscsi (Ubuntu Xenial): assignee Victor Tapia (vtapia)
2018-09-19 16:08:28 Dan Streetman description [Impact] * open-iscsi is adding "domainsearch", a non-existent configuration option, instead of "search" in /etc/resolv.conf. As a result, the search list is ignored in the clients. [Test case] * Install an ubuntu machine that uses iscsi as root. * Prepare the dhcp server to provide the search list to its clients. For instance, in dnsmasq: dhcp-option=option:domain-search,canonical.com * Boot the machine and check the content of /etc/resolv.conf - if domainsearch is present, the search list will be ignored: root@iscsi-xenial:/home/ubuntu# ping -c1 golem ping: unknown host golem root@iscsi-xenial:/home/ubuntu# strace ping -c1 golem 2>&1 | grep golem execve("/bin/ping", ["ping", "-c1", "golem"], [/* 19 vars */]) = 0 sendto(4, "_(\1\0\0\1\0\0\0\0\0\0\5golem\0\0\1\0\1", 23, MSG_NOSIGNAL, NULL, 0) = 23 recvfrom(4, "_(\201\203\0\1\0\0\0\0\0\0\5golem\0\0\1\0\1", 1024, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.122.1")}, [16]) = 23 write(2, "ping: unknown host golem\n", 25ping: unknown host golem - if search is present, the search list will be used: root@iscsi-xenial:/home/ubuntu# ping -c1 golem PING golem.canonical.com (91.189.89.199) 56(84) bytes of data. 64 bytes from golem.canonical.com (91.189.89.199): icmp_seq=1 ttl=57 time=63.7 ms --- golem.canonical.com ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 63.735/63.735/63.735/0.000 ms root@iscsi-xenial:/home/ubuntu# strace ping -c1 golem 2>&1 | grep golem execve("/bin/ping", ["ping", "-c1", "golem"], [/* 19 vars */]) = 0 sendto(4, "\1\\\1\0\0\1\0\0\0\0\0\0\5golem\tcanonical\3com"..., 37, MSG_NOSIGNAL, NULL, 0) = 37 recvfrom(4, "\1\\\201\200\0\1\0\1\0\0\0\0\5golem\tcanonical\3com"..., 1024, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.122.1")}, [16]) = 53 write(1, "PING golem.canonical.com (91.189"..., 145PING golem.canonical.com (91.189.89.199) 56(84) bytes of data. 64 bytes from golem.canonical.com (91.189.89.199): icmp_seq=1 ttl=57 time=63.5 ms write(1, "--- golem.canonical.com ping sta"..., 157--- golem.canonical.com ping statistics --- [Regression potential] * None. The change is minor (a string replacement) and it's currently not working. [Other info] * resolv.conf man page: http://man7.org/linux/man-pages/man5/resolv.conf.5.html [Original description] Having an interface file such as /run/net-eno2.conf with the following content: DEVICE='eno2' PROTO='dhcp' IPV4ADDR='10.10.10.10' IPV4BROADCAST='10.10.10.255' IPV4NETMASK='255.255.255.0' IPV4GATEWAY='10.10.10.1' IPV4DNS0='169.254.169.254' IPV4DNS1='0.0.0.0' HOSTNAME='' DNSDOMAIN='test.com' NISDOMAIN='' ROOTSERVER='169.254.169.254' ROOTPATH='' filename='/ipxe.efi' UPTIME='45' DHCPLEASETIME='86400' DOMAINSEARCH='test.com' net-interface-handler translates it to: nameserver 169.254.169.254 domainsearch test.com instead of: nameserver 169.254.169.254 search test.com The problem is that domainsearch is not a valid configuration option for /etc/resolv.conf and is ignored. [Impact] * open-iscsi is adding "domainsearch", a non-existent configuration option, instead of "search" in /etc/resolv.conf. As a result, the search list is ignored in the clients. [Test case] * Install an ubuntu machine that uses iscsi as root, and does not use systemd-resolvd. * Prepare the dhcp server to provide the search list to its clients. For instance, in dnsmasq: dhcp-option=option:domain-search,canonical.com * Boot the machine and check the content of /etc/resolv.conf - if domainsearch is present, the search list will be ignored: root@iscsi-xenial:/home/ubuntu# ping -c1 golem ping: unknown host golem root@iscsi-xenial:/home/ubuntu# strace ping -c1 golem 2>&1 | grep golem execve("/bin/ping", ["ping", "-c1", "golem"], [/* 19 vars */]) = 0 sendto(4, "_(\1\0\0\1\0\0\0\0\0\0\5golem\0\0\1\0\1", 23, MSG_NOSIGNAL, NULL, 0) = 23 recvfrom(4, "_(\201\203\0\1\0\0\0\0\0\0\5golem\0\0\1\0\1", 1024, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.122.1")}, [16]) = 23 write(2, "ping: unknown host golem\n", 25ping: unknown host golem - if search is present, the search list will be used: root@iscsi-xenial:/home/ubuntu# ping -c1 golem PING golem.canonical.com (91.189.89.199) 56(84) bytes of data. 64 bytes from golem.canonical.com (91.189.89.199): icmp_seq=1 ttl=57 time=63.7 ms --- golem.canonical.com ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 63.735/63.735/63.735/0.000 ms root@iscsi-xenial:/home/ubuntu# strace ping -c1 golem 2>&1 | grep golem execve("/bin/ping", ["ping", "-c1", "golem"], [/* 19 vars */]) = 0 sendto(4, "\1\\\1\0\0\1\0\0\0\0\0\0\5golem\tcanonical\3com"..., 37, MSG_NOSIGNAL, NULL, 0) = 37 recvfrom(4, "\1\\\201\200\0\1\0\1\0\0\0\0\5golem\tcanonical\3com"..., 1024, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.122.1")}, [16]) = 53 write(1, "PING golem.canonical.com (91.189"..., 145PING golem.canonical.com (91.189.89.199) 56(84) bytes of data. 64 bytes from golem.canonical.com (91.189.89.199): icmp_seq=1 ttl=57 time=63.5 ms write(1, "--- golem.canonical.com ping sta"..., 157--- golem.canonical.com ping statistics --- [Regression potential] * The change is minor (a string replacement) and it's currently not working. * Any possible regression would involve continuing to break DNS resolution. [Other info] * resolv.conf man page: http://man7.org/linux/man-pages/man5/resolv.conf.5.html [Original description] Having an interface file such as /run/net-eno2.conf with the following content: DEVICE='eno2' PROTO='dhcp' IPV4ADDR='10.10.10.10' IPV4BROADCAST='10.10.10.255' IPV4NETMASK='255.255.255.0' IPV4GATEWAY='10.10.10.1' IPV4DNS0='169.254.169.254' IPV4DNS1='0.0.0.0' HOSTNAME='' DNSDOMAIN='test.com' NISDOMAIN='' ROOTSERVER='169.254.169.254' ROOTPATH='' filename='/ipxe.efi' UPTIME='45' DHCPLEASETIME='86400' DOMAINSEARCH='test.com' net-interface-handler translates it to: nameserver 169.254.169.254 domainsearch test.com instead of: nameserver 169.254.169.254 search test.com The problem is that domainsearch is not a valid configuration option for /etc/resolv.conf and is ignored.
2018-09-20 09:00:46 Victor Tapia attachment removed open-iscsi-bionic.debdiff https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1791108/+attachment/5190084/+files/open-iscsi-bionic.debdiff
2018-09-20 09:00:55 Victor Tapia attachment removed open-iscsi-cosmic.debdiff https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1791108/+attachment/5190085/+files/open-iscsi-cosmic.debdiff
2018-09-20 09:01:06 Victor Tapia attachment removed open-iscsi-xenial.debdiff https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1791108/+attachment/5190086/+files/open-iscsi-xenial.debdiff
2018-09-20 09:01:21 Victor Tapia attachment added open-iscsi-xenial.debdiff https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1791108/+attachment/5190912/+files/open-iscsi-xenial.debdiff
2018-09-20 09:01:51 Victor Tapia attachment added open-iscsi-bionic.debdiff https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1791108/+attachment/5190913/+files/open-iscsi-bionic.debdiff
2018-09-20 09:02:08 Victor Tapia attachment added open-iscsi-cosmic.debdiff https://bugs.launchpad.net/ubuntu/+source/open-iscsi/+bug/1791108/+attachment/5190914/+files/open-iscsi-cosmic.debdiff
2018-09-21 11:17:53 Launchpad Janitor open-iscsi (Ubuntu Cosmic): status In Progress Fix Released
2018-10-02 20:23:14 Brian Murray open-iscsi (Ubuntu Bionic): status In Progress Fix Committed
2018-10-02 20:23:16 Brian Murray bug added subscriber Ubuntu Stable Release Updates Team
2018-10-02 20:23:18 Brian Murray bug added subscriber SRU Verification
2018-10-02 20:23:22 Brian Murray tags patch sts sts-sponsor sts-sru-needed patch sts sts-sponsor sts-sru-needed verification-needed verification-needed-bionic
2018-10-02 20:24:23 Brian Murray open-iscsi (Ubuntu Xenial): status In Progress Fix Committed
2018-10-02 20:24:29 Brian Murray tags patch sts sts-sponsor sts-sru-needed verification-needed verification-needed-bionic patch sts sts-sponsor sts-sru-needed verification-needed verification-needed-bionic verification-needed-xenial
2018-10-03 16:58:08 Dan Streetman tags patch sts sts-sponsor sts-sru-needed verification-needed verification-needed-bionic verification-needed-xenial patch sts sts-sponsor sts-sru-done verification-done verification-done-bionic verification-done-xenial
2018-10-03 16:58:29 Dan Streetman tags patch sts sts-sponsor sts-sru-done verification-done verification-done-bionic verification-done-xenial patch sts sts-sru-done verification-done verification-done-bionic verification-done-xenial
2018-10-10 17:37:19 Robie Basak removed subscriber Ubuntu Stable Release Updates Team
2018-10-10 17:37:19 Launchpad Janitor open-iscsi (Ubuntu Xenial): status Fix Committed Fix Released
2018-10-10 17:37:30 Launchpad Janitor open-iscsi (Ubuntu Bionic): status Fix Committed Fix Released