[Bug 1599096] Re: Cannot install libvdpau1 due to error

2016-10-06 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: libvdpau (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1599096

Title:
  Cannot install libvdpau1 due to error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvdpau/+bug/1599096/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1630063] Re: specific USB devices disconnect and don't reconnect

2016-10-06 Thread Cody Smith
Okay, spoke too soon, and found what might be the device causing all
this headache: my USB headset that works just fine with kernels before
this, but on 4.8 seems to cause issues with ohci-pci. The minute I plug
the headset in (or seconds afterwards), ohci-pci dies, so I'm thinking
it may be a driver issue.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1630063

Title:
  specific USB devices disconnect and don't reconnect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1630063/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1580463] Re: Snap blocks access to system input methods (ibus, fcitx, ...)

2016-10-06 Thread Tyler Hicks
** Description changed:

  IMPORTANT: SRU Team, see comment #25 for why this bug is temporarily
  marked verification-failed
  
  = SRU im-config =
  [Impact]
  ibus-daemon by default uses a unix socket name of /tmp/dbus-... that is 
indistinguishable from dbus-daemon abstract sockets. While dbus-daemon has 
AppArmor mediation, ibus-daemon does not so it is important that its abstract 
socket not be confused with dbus-daemon's. By modifying ibus-daemon's start 
arguments to use "--address 'unix:tmpdir=/tmp/ibus'" AppArmor can continue 
mediating DBus abstract sockets like normal and also mediate access to the 
ibus-daemon-specific abstract socket via unix rules. This also tidies up the 
abstract socket paths so that it is clear which are for ibus-daemon, which for 
dbus-daemon, etc.
  
  The upload simply adjusts 21_ibus.rc to start ibus-daemon with "--
  address 'unix:tmpdir=/tmp/ibus'" and adds a comment. No compiled code
  changes are required.
  
  [Test Case]
  1. start a unity session before updating to the package in -proposed
  
  2. $ grep IBUS_ADDRESS ~/.config/ibus/bus/*-unix-0
  
IBUS_ADDRESS=unix:abstract=/tmp/dbus-Vyx8fGFA,guid=28e8e7e89f902c8d4e9d77c5557add76
  
  3. $ lsof -p $(pidof ibus-daemon) | grep '/dbus'
  ibus-daem 2973 jamie8u unix 0x  0t0   29606 
@/tmp/dbus-oxKYpN30 type=STREAM
  
  4. update the package in -proposed and perform '2' and '3'. The
  IBUS_ADDRESSES should be the same as before
  
  5. logout of unity, then log back in
  
  6. $ grep IBUS_ADDRESS ~/.config/ibus/bus/*-unix-0
  
IBUS_ADDRESS=unix:abstract=/tmp/ibus/dbus-SpxOl8Fc,guid=06d4bbeb07614c6dffbf221c57473f4e
  
  (notice '/tmp/ibus/' in the path)
  
  7. $ lsof -p $(pidof ibus-daemon) | grep '/dbus'
  ibus-daem 3471 jamie8u unix 0x  0t0  26107 
@/tmp/ibus/dbus-SpxOl8Fc type=STREAM
  ...
  
  (notice '@/tmp/ibus/' in the path)
  
  In addition to the above, you can test for regressions by opening
  'System Settings' under the 'gear' icon in the panel and selecting 'Text
  Entry'. From there, add an input source on the right, make sure 'Show
  current input source in the menu bar' is checked, then use the input
  source panel indicator to change input sources.
  
  [Regression Potential]
  
  The regression potential is considered low because there are no compiled
  code changes and because the changes only occur after ibus-daemon is
  restarted, which is upon session start, not package upgrade. When it is
  restarted, the files in ~/.config/ibus/bus/*-unix-0 are updated
  accordingly for other applications to pick up.
  
  This change intentionally requires a change to the unity7 snapd
  interface, which is in progress. Currently the change should not regress
  snapdsbehavior due to other issues surrounding using ibus unrelated to
  security policy.
  
  = SRU apparmor =
  [Impact]
  The upload that adjusts ibus-daemon to start with "--address 
'unix:tmpdir=/tmp/ibus'" causes the ibus AppArmor abstraction to no longer be 
sufficient due to the lack of a rule for the new socket path. This upload adds 
such a rule.
  
  [Test Case]
  1. Start a unity session after updating to the im-config package in -proposed 
but before the apparmor package in -proposed
  
  2. Use the ibus client program to list the available engines
  $ ibus list-engine
  language: Spanish; Castilian
    xkb:latam::spa - Spanish (Latin American)
    xkb:es::spa - Spanish
  language: Slovak
    xkb:sk:qwerty:slo - Slovak (qwerty)
    xkb:sk::slo - Slovak
  ...
  
  3. Create an AppArmor profile file, called ibus, with the following
  contents:
  
  #include 
  
  profile ibus {
    #include 
    #include 
    #include 
  
    /usr/bin/ibus mr,
  
  }
  
  4. Load the profile
  $ sudo apparmor_parser -qr ibus
  
  5. Rerun the ibus client program under confinement to see that it fails
  $ aa-exec -p ibus -- ibus list-engine
  Can't connect to IBus.
  
  6. Note the AppArmor denial in the syslog
  
  audit: type=1400 audit(1472252079.589:57): apparmor="DENIED"
  operation="connect" profile="ibus" pid=5364 comm="ibus" family="unix"
  sock_type="stream" protocol=0 requested_mask="send receive connect"
  denied_mask="send connect" addr=none peer_addr="@/tmp/ibus/dbus-
  kxnhAsmv" peer="unconfined"
  
  7. Update to the apparmor package in -proposed
  
- 8. Rerun the ibus client program under confinement to see that it works
+ 8. Reload the profile
+ $ sudo apparmor_parser -qr ibus
  
+ 9. Rerun the ibus client program under confinement to see that it works
  $ aa-exec -p ibus -- ibus list-engine
  language: Spanish; Castilian
    xkb:latam::spa - Spanish (Latin American)
    xkb:es::spa - Spanish
  language: Slovak
    xkb:sk:qwerty:slo - Slovak (qwerty)
    xkb:sk::slo - Slovak
  ...
  
  [Regression Potential]
  
  The regression potential is considered low because there are no compiled
  code changes and because the changes only add additional rules to the
  apparmor ibus abstraction.
  
  

[Bug 1615726] Re: gpg-agent.service "Invalid escape sequences in line" warning

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package gnupg2 - 2.1.15-1ubuntu5

---
gnupg2 (2.1.15-1ubuntu5) yakkety; urgency=medium

  * gpg-agent.service: Properly escape "\$10" to avoid warning. (LP:
#1615726)

 -- Martin Pitt   Thu, 06 Oct 2016 23:10:50
+0200

** Changed in: gnupg2 (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1615726

Title:
  gpg-agent.service "Invalid escape sequences in line" warning

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/1615726/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1598310] Re: Curtin block.get_blockdev_sector_size incorrectly assumes block._lsblock will return a dictionary with only a single entry

2016-10-06 Thread Wesley Wiedenmeier
I am marking verification-done, as this fixes the issue for me on
xenial.

When running with the curtin build currently in xenial-updates
(/dev/vdb3 is used as physical volume for several lvm volumes):

  root@ubuntu:/home/ubuntu# apt-cache policy curtin
curtin:
  Installed: 0.1.0~bzr399-0ubuntu1~16.04.1
  Candidate: 0.1.0~bzr399-0ubuntu1~16.04.1
  root@ubuntu:/home/ubuntu# python3
Python 3.5.2 (default, Sep 10 2016, 08:21:44)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from curtin import block
>>> block.get_blockdev_sector_size("/dev/vdb3")
  Traceback (most recent call last):  
 File "", line 1, in   
 File "/usr/lib/python3/dist-packages/curtin/block/__init__.py", line 
426, in get_blockdev_sector_size 
   [parent] = info 
  ValueError: too many values to unpack (expected 1)   


When running with proposed (note that 4096 is actual sector size as advanced 
format disk used):

  root@ubuntu:/home/ubuntu# apt-cache policy curtin
curtin:
  Installed: 0.1.0~bzr425-0ubuntu1~16.04.1
  Candidate: 0.1.0~bzr425-0ubuntu1~16.04.1

  root@ubuntu:/home/ubuntu# python3
Python 3.5.2 (default, Sep 10 2016, 08:21:44)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from curtin import block
>>> block.get_blockdev_sector_size("/dev/vdb3")
  (4096, 4096)

** Tags removed: verification-needed
** Tags added: verification-done

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1598310

Title:
  Curtin block.get_blockdev_sector_size incorrectly assumes
  block._lsblock will return a dictionary with only a single entry

To manage notifications about this bug go to:
https://bugs.launchpad.net/curtin/+bug/1598310/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1623198] Re: Masking and then disabling dbus.service causes the system to freeze

2016-10-06 Thread Martin Pitt
Right, you can't sensibly stop dbus on a running desktop. This will kill
all sessions, kill lightdm, etc. and toss you back to consoles
(Ctrl+Alt+FN actually still works).

** Package changed: systemd (Ubuntu) => ubuntu

** Changed in: ubuntu
   Status: New => Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1623198

Title:
  Masking and then disabling dbus.service causes the system to freeze

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1623198/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1626466] Re: [Yakkety] suspend fail and reboot while resuming

2016-10-06 Thread Martin Pitt
** Package changed: systemd (Ubuntu) => linux (Ubuntu)

** Tags added: kernel-4.8

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1626466

Title:
  [Yakkety] suspend fail and reboot while resuming

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1626466/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1626651] Re: brightness keys are handled slower in Yakkety than Xenial

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package policykit-1 - 0.105-16git1

---
policykit-1 (0.105-16git1) yakkety; urgency=medium

  Upload current Debian packaging git.

  [ Michael Biebl ]
  * Use https:// for the upstream homepage.
  * Update Vcs-Browser to use cgit.

  [ Simon McVittie ]
  * Build-depend on intltool instead of relying on gtk-doc-tools'
dependency (Closes: #837846)

  [ Martin Pitt ]
  * Use PAM's common-session-noninteractive modules for pkexec instead of
common-session. The latter also runs pam_systemd (the only difference
normally) which is a no-op under the classic session-centric
D-BUS/graphical login model (as it won't start a new one if it is already
running within a logind session), but very expensive when using
dbus-user-session and being called from a service that runs outside the
PAM session. This causes long delays in e. g. gnome-settings-daemon's
backlight helpers. (LP: #1626651)

 -- Martin Pitt   Thu, 06 Oct 2016 22:35:24
+0200

** Changed in: policykit-1 (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1626651

Title:
  brightness keys are handled slower in Yakkety than Xenial

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/policykit-1/+bug/1626651/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1630789] Re: normal users can't run snaps inside of LXD containers

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package snapd - 2.16+16.10ubuntu1

---
snapd (2.16+16.10ubuntu1) yakkety; urgency=medium

  * systemd/systemd.go, systemd/systemd_test.go: Correct the mount arguments
when mounting with squashfuse (LP: #1630789)

 -- Tyler Hicks   Thu, 06 Oct 2016 18:49:40 +

** Changed in: snapd (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1630789

Title:
  normal users can't run snaps inside of LXD containers

To manage notifications about this bug go to:
https://bugs.launchpad.net/snap-confine/+bug/1630789/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631241] Re: Name resolution stops working after resume from suspend

2016-10-06 Thread Martin Pitt
With NetworkManager we switched back to the "dnsmasq" plugin, so it is
indeed correct that resolv.conf only contains 127.0.1.1. It also does
that without suspending.

So what is actually not working?

** Changed in: systemd (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631241

Title:
  Name resolution stops working after resume from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1631241/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1628745] Re: Change in kernel exec transition behavior causes regression tests to fail

2016-10-06 Thread Tyler Hicks
** Description changed:

  [Impact]
  
   * The exec_stack.sh regression test fails due to a behavior change in
  4.8 kernels from this patch:
  
     commit 9f834ec18defc369d73ccf9e87a2790bfa05bf46
     Author: Linus Torvalds 
     Date:   Mon Aug 22 16:41:46 2016 -0700
  
     binfmt_elf: switch to new creds when switching to new mm
  
   * Adjusting the regression tests appropriately allows the kernel and
  security teams to use QRT's test-apparmor.py to test kernel and
  userspace AppArmor changes with confidence
  
  [Test Case]
  
- $ apt-get source apparmor
+ $ apt-get source apparmor # make sure this fetches the new apparmor source
+ $ sudo apt-get install libapparmor-dev
  $ cd tests/regression/apparmor
  $ make USE_SYSTEM=1
  $ sudo bash exec_stack.sh
  running exec_stack
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   608 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (2 stacked - file)' was expected 
to 'fail'. Reason for failure expect errno 13 != 139
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   610 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (2 stacked - otherfile)' was 
expected to 'fail'. Reason for failure expect errno 13 != 139
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   612 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (2 stacked - thirdfile)' was 
expected to 'fail'. Reason for failure expect errno 13 != 139
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   613 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (2 stacked - sharedfile)' was 
expected to 'pass'. Reason for failure 'killed by signal 11'
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   620 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (2 stacked - okcon)' was expected 
to 'pass'. Reason for failure 'killed by signal 11'
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   628 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (2 stacked - bad label)' was 
expected to 'fail'. Reason for failure 'killed by signal 11'
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   634 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (2 stacked - bad mode)' was 
expected to 'fail'. Reason for failure 'killed by signal 11'
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   741 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (3 stacked - file)' was expected 
to 'fail'. Reason for failure expect errno 13 != 139
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   745 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (3 stacked - otherfile)' was 
expected to 'fail'. Reason for failure expect errno 13 != 139
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   747 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (3 stacked - thirdfile)' was 
expected to 'fail'. Reason for failure expect errno 13 != 139
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   748 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (3 stacked - sharedfile)' was 
expected to 'pass'. Reason for failure 'killed by signal 11'
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   754 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (3 stacked - okcon)' was expected 
to 'pass'. Reason for failure 'killed by signal 11'
  
/tmp/testlibRpZj1Y/source/yakkety/apparmor-2.10.95/tests/regression/apparmor/prologue.inc:
 line 219:   833 Segmentation fault  $testexec "$@" > $outfile 2>&1
  Error: transition failed. Test 'EXEC_STACK (3 stacked - old AA WARN)' was 
expected to 'pass'. Reason for failure 'killed by signal 11'
  
  The previous command should result in no output and return value of 0
  once the regression test is properly updated.
  
  [Regression Potential]
  
   * This is an extremely low risk change since it only touches regression
  testing code that is 

[Bug 1630069] Re: Regression tests can not detect binfmt_elf mmpa semantic change

2016-10-06 Thread Tyler Hicks
** Description changed:

  == apparmor SRU ==
  
  [Impact]
  
-  * The exec_stack.sh regression test fails due to a behavior change in 4.8
-kernels from this patch:
+  * The exec_stack.sh regression test fails due to a behavior change in 4.8
+    kernels from this patch:
  
-commit 9f834ec18defc369d73ccf9e87a2790bfa05bf46
-Author: Linus Torvalds 
-Date: Mon Aug 22 16:41:46 2016 -0700
+    commit 9f834ec18defc369d73ccf9e87a2790bfa05bf46
+    Author: Linus Torvalds 
+    Date: Mon Aug 22 16:41:46 2016 -0700
  
-binfmt_elf: switch to new creds when switching to new mm
+    binfmt_elf: switch to new creds when switching to new mm
  
-  * The regression tests were fixed for this kernel change but they were fixed
-in a way that always assumed that kernel change is present. They should 
have
-been adjusted so that they act differently according to whether or not the
-kernel change is present (it is a change that could end up being backported
-through the stable trees).
+  * The regression tests were fixed for this kernel change but they were fixed
+    in a way that always assumed that kernel change is present. They should 
have
+    been adjusted so that they act differently according to whether or not the
+    kernel change is present (it is a change that could end up being backported
+    through the stable trees).
  
  [Test Case]
  
-  $ apt-get source apparmor
-  $ cd tests/regression/apparmor
-  $ make USE_SYSTEM=1
-  $ sudo bash exec_stack.sh
+  $ apt-get source apparmor # make sure this fetches the new apparmor source
+  $ sudo apt-get install libapparmor-dev
+  $ cd tests/regression/apparmor
+  $ make USE_SYSTEM=1
+  $ sudo bash exec_stack.sh
  
-  The previous command should result in no output and return value of 0.
+  The previous command should result in no output and return value of 0.
  
  [Regression Potential]
  
-  * This is an extremely low risk change since it only touches regression
-testing code that is not user-facing.
+  * This is an extremely low risk change since it only touches regression
+    testing code that is not user-facing.
  
  [Other]
  
-  * Fixed in upstream lp:apparmor tree:
+  * Fixed in upstream lp:apparmor tree:
  
-https://bazaar.launchpad.net/~apparmor-
+    https://bazaar.launchpad.net/~apparmor-
  dev/apparmor/master/revision/3558
  
  == Original description ==
  
  The regression tests are currently hard coded to the semantics of mmap
  in binfmt_elf
  
  With the recent upstream commit 9f834ec18defc369d73ccf9e87a2790bfa05bf46
  the cred used for the mmap changed resulting in test failures. The tests
  have been patched for this change but it results in the test breaking
  for everyone using upstream releases against pre 4.8 kernels.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1630069

Title:
  Regression tests can not detect binfmt_elf mmpa semantic change

To manage notifications about this bug go to:
https://bugs.launchpad.net/apparmor/+bug/1630069/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1630063] Re: specific USB devices disconnect and don't reconnect

2016-10-06 Thread Cody Smith
Alright, results of that kernel aren't good, it doesn't even boot on my
system, it just hangs just after grub hands over. But there was a new
update for the 4.8 series, and for the meantime the usb bug doesn't seem
to have hit yet, we'll see if it does before the end of tomorrow.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1630063

Title:
  specific USB devices disconnect and don't reconnect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1630063/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1628295] Re: Change in kernel stacking behavior causes regression tests to fail

2016-10-06 Thread Tyler Hicks
** Description changed:

  [Impact]
  
-  * Two regression tests fail due to a behavior change in recent Xenial
+  * Two regression tests fail due to a behavior change in recent Xenial
  and Yakkety kernels
  
-  * Adjusting the regression tests appropriately allows the kernel and
+  * Adjusting the regression tests appropriately allows the kernel and
  security teams to use QRT's test-apparmor.py to test kernel and
  userspace AppArmor changes with confidence
  
  [Test Case]
  
- $ apt-get source apparmor
+ $ apt-get source apparmor # make sure this fetches the new apparmor source
+ $ sudo apt-get install libapparmor-dev
  $ cd tests/regression/apparmor
  $ make USE_SYSTEM=1
  $ sudo bash stackonexec.sh
  Error: transition failed. Test 'STACKONEXEC (stacked with unconfined - 
okcon)' was expected to 'pass'. Reason for failure 'FAIL - current mode 
"enforce" != expected_mode "mixed"'
  Error: transition passed. Test 'STACKONEXEC (stacked with unconfined - bad 
mode)' was expected to 'fail'
  $ sudo bash stackprofile.sh
  Error: transition failed. Test 'STACKPROFILE (stacked with unconfined - 
okcon)' was expected to 'pass'. Reason for failure 'FAIL - current mode 
"enforce" != expected_mode "mixed"'
  
  The two previous commands should result in no output and return value of 0 
once
  the regression test is properly updated.
  
  [Regression Potential]
  
-  * This is an extremely low risk change since it only touches regression
+  * This is an extremely low risk change since it only touches regression
  testing code that is not user-facing.
  
  [Other Info]
  
-  * This bug has already been fixed upstream:
+  * This bug has already been fixed upstream:
  
-https://bazaar.launchpad.net/~apparmor-
+    https://bazaar.launchpad.net/~apparmor-
  dev/apparmor/master/revision/3505

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1628295

Title:
  Change in kernel stacking behavior causes regression tests to fail

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1628295/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1602192] Re: when starting many LXD containers, they start failing to boot with "Too many open files"

2016-10-06 Thread John A Meinel
I added a "cat /proc/meminfo | grep Slab" to go-lxc-run.sh and found
this:

$ sysctl fs.inotify
fs.inotify.max_queued_events = 65536
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 524288
$ ulimit -a
...
open files  (-n) 1048576
...
$ go-lxc-run.sh
[0] x-001:[13]..7Slab: 432176 kB
...
[1365] x-071:[15]...8Slab:9639484 kB
[1387] x-072:[15]...8Slab:9603648 kB
[1409] x-073:[14]...8Slab:9621936 kB
[1431] x-074:[14]...8Slab:9673000 kB
[1453] x-075:[13]9Slab:9680444 kB
[1475] x-076:[14]9Slab:8223312 kB
[1501] x-077:[16]..7Slab:5095880 kB
...
1812] x-093:[12]..7Slab:6163512 kB
[1831] x-094:[12]..7Slab:6271272 kB
[1850] x-095:[13]..falseSlab:6371956 kB
x-095 failed to boot. keeping x-095.

So kernel memory seemed to peak at around 10GB, and then somehow dropped
down to 5GB to allow 20 more containers to be created. (on a 16GB
machine, that's a fair bit allotted to just the kernel).

However, 95 seems to be the limit for 1024
fs.inotify.max_user_instances. But that still means setting it to 1M is
silly. I'll do another run with max_user_instances=2048 and see what
happens. Since I know with very-high max values, I can get to 230
containers, that sounds like 2048 is sufficient for it.

I'll also play around next with putting Juju into the loop and see where
I get. I really wonder about max-open-files for Root vs User. LXD is
running as Root, but if the containers are all running User level,
shouldn't that be the constraint?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1602192

Title:
  when starting many LXD containers, they start failing to boot with
  "Too many open files"

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/1602192/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1608236] Re: Regression: S-video output does not work

2016-10-06 Thread Jarno Suni
The bug does not exist in the kernel.

We have already spent over 2 months to find the right kernel :(

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1608236

Title:
  Regression: S-video output does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1608236/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1614848] Re: ubiquity crashed with GLib.GError in configure_icons(): gtk-icon-theme-error-quark: Icon 'gtk-missing-image' not present in theme Adwaita (0)

2016-10-06 Thread Jeremy Bicha
** Changed in: ubuntu-gnome
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1614848

Title:
  ubiquity crashed with GLib.GError in configure_icons(): gtk-icon-
  theme-error-quark: Icon 'gtk-missing-image' not present in theme
  Adwaita (0)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-gnome/+bug/1614848/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1604090] Re: package dovecot-core 1:2.2.22-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-10-06 Thread Jonathan Watts
I just got this error while installing upgrades, but I'm pretty sure
it's because I never actually got around to configuring dovecot after
installing it initially.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1604090

Title:
  package dovecot-core 1:2.2.22-1ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dovecot/+bug/1604090/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1629989] Re: FFe: Sync libpfm4 4.7.0+git30-gd422ba2-1 (main) from Debian unstable (main)

2016-10-06 Thread Graham Inggs
I managed to get a bit further with the following patch:

--- a/lib/Makefile
+++ b/lib/Makefile
@@ -33,7 +33,7 @@
 SRCS += pfmlib_perf_event_pmu.c pfmlib_perf_event.c pfmlib_perf_event_raw.c
 endif
 
-CFLAGS+=-D_REENTRANT -I. -fvisibility=hidden
+CFLAGS+=-D_REENTRANT -I. -fvisibility=hidden -fPIC -DPIC
 
 #
 # list all library support modules

...but then ended up with a bunch of undefined references building
python/src/perfmon_int_wrap.c which seem to be SWIG-related.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1629989

Title:
  FFe: Sync libpfm4 4.7.0+git30-gd422ba2-1 (main) from Debian unstable
  (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libpfm4/+bug/1629989/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631243] Re: package libvirt-bin 1.3.1-1ubuntu10.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-10-06 Thread Apport retracing service
** Tags removed: need-duplicate-check

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631243

Title:
  package libvirt-bin 1.3.1-1ubuntu10.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1631243/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631246] [NEW] package kaccounts-providers (not installed) failed to install/upgrade: a tentar sobre-escrever '/etc/signon-ui/webkit-options.d/api.twitter.com.conf', que também está no pacote acc

2016-10-06 Thread Emerson Novais Oliveira
Public bug reported:

Error during installation of KDE Plasma on Ubuntu 16.04.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: kaccounts-providers (not installed)
ProcVersionSignature: Ubuntu 4.4.0-38.57-generic 4.4.19
Uname: Linux 4.4.0-38-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Fri Oct  7 01:55:46 2016
ErrorMessage: a tentar sobre-escrever 
'/etc/signon-ui/webkit-options.d/api.twitter.com.conf', que também está no 
pacote account-plugin-twitter 0.12+16.04.20160126-0ubuntu1
InstallationDate: Installed on 2016-09-11 (25 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: kaccounts-providers
Title: package kaccounts-providers (not installed) failed to install/upgrade: a 
tentar sobre-escrever '/etc/signon-ui/webkit-options.d/api.twitter.com.conf', 
que também está no pacote account-plugin-twitter 0.12+16.04.20160126-0ubuntu1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: kaccounts-providers (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631246

Title:
  package kaccounts-providers (not installed) failed to install/upgrade:
  a tentar sobre-escrever '/etc/signon-ui/webkit-
  options.d/api.twitter.com.conf', que também está no pacote account-
  plugin-twitter 0.12+16.04.20160126-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kaccounts-providers/+bug/1631246/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1631243] [NEW] package libvirt-bin 1.3.1-1ubuntu10.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-10-06 Thread Brian Ignacio
Public bug reported:

I installed libvirt after upgrading to Ubuntu 16 from Ubuntu 14. Never
worked it. It says i modified the defaults file but i haven't.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libvirt-bin 1.3.1-1ubuntu10.3
ProcVersionSignature: Ubuntu 4.4.0-38.57-generic 4.4.19
Uname: Linux 4.4.0-38-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Fri Oct  7 12:44:53 2016
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2016-03-06 (214 days ago)
InstallationMedia: Ubuntu 14.04.4 LTS "Trusty Tahr" - Release amd64 (20160217.1)
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-38-generic.efi.signed 
root=UUID=16e1597b-671b-4b46-a39d-f9b44687dc40 ro quiet splash vt.handoff=7
SourcePackage: libvirt
Title: package libvirt-bin 1.3.1-1ubuntu10.3 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to xenial on 2016-09-08 (28 days ago)
modified.conffile..etc.libvirt.qemu.networks.default.xml: [modified]
mtime.conffile..etc.libvirt.qemu.networks.default.xml: 
2016-09-10T12:54:33.838339

** Affects: libvirt (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apparmor apport-package xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631243

Title:
  package libvirt-bin 1.3.1-1ubuntu10.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1631243/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631241] [NEW] Name resolution stops working after resume from suspend

2016-10-06 Thread Michael Gratton
Public bug reported:

After upgrading to Yakkety, when my Ubuntu GNOME laptop resumes from
suspend DNS resolution stops working.

After resuming, systemd-resolved is running and libnss-resolve is
installed, but /etc/resolv.conf contains 127.0.1.1 as the the only name
server. The dnsmasq-base package is installed since it is pulled in by
both network-manager and lxc1, and both NM and libvirt have spawned
instances of dnsmasq:

>  1155 pts/2S+ 0:00 grep dnsmasq
>  2724 ?S  0:00 dnsmasq -u lxc-dnsmasq --strict-order 
> --bind-interfaces --pid-file=/run/lxc/dnsmasq.pid --listen-address 10.0.3.1 
> --dhcp-range 10.0.3.2,10.0.3.254 --dhcp-lease-max=253 --dhcp-no-override 
> --except-interface=lo --interface=lxcbr0 
> --dhcp-leasefile=/var/lib/misc/dnsmasq.lxcbr0.leases --dhcp-authoritative
>  2992 ?S  0:00 /usr/sbin/dnsmasq 
> --conf-file=/var/lib/libvirt/dnsmasq/default.conf --leasefile-ro 
> --dhcp-script=/usr/lib/libvirt/libvirt_leaseshelper
>  2993 ?S  0:00 /usr/sbin/dnsmasq 
> --conf-file=/var/lib/libvirt/dnsmasq/default.conf --leasefile-ro 
> --dhcp-script=/usr/lib/libvirt/libvirt_leaseshelper
> 22879 ?S  0:00 /usr/sbin/dnsmasq --no-resolv --keep-in-foreground 
> --no-hosts --bind-interfaces --pid-file=/var/run/NetworkManager/dnsmasq.pid 
> --listen-address=127.0.1.1 --cache-size=0 --conf-file=/dev/null 
> --proxy-dnssec --enable-dbus=org.freedesktop.NetworkManager.dnsmasq 
> --conf-dir=/etc/NetworkManager/dnsmasq.d

Let me know if you need any extra info.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: libnss-resolve 231-9git1
ProcVersionSignature: Ubuntu 4.8.0-17.19-generic 4.8.0-rc7
Uname: Linux 4.8.0-17-generic x86_64
ApportVersion: 2.20.3-0ubuntu7
Architecture: amd64
CurrentDesktop: GNOME
Date: Fri Oct  7 13:52:40 2016
InstallationDate: Installed on 2015-07-22 (443 days ago)
InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 (20150422)
SourcePackage: systemd
UpgradeStatus: Upgraded to yakkety on 2016-10-05 (1 days ago)

** Affects: systemd (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug yakkety

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631241

Title:
  Name resolution stops working after resume from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1631241/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631230] Re: auplink spam in docker unit log

2016-10-06 Thread Robert Collins
It is in suggests. This means that the default behaviour - the happy
path - for users is poor. Ubuntu's kernels support aufs, and aufs is the
default graph driver.

At a minimum I'd suggest recommends.

But aufs-tools is a) tiny - Installed-Size: 228 and b) has no further
deps (other than libc) - so while you're abstractly correct its a
correctness that isn't IMO helpful.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631230

Title:
  auplink spam in docker unit log

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/docker.io/+bug/1631230/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631237] Re: KMail: HTML injection in plain text viewer

2016-10-06 Thread Scott Kitterman
This is a direct backport of the upstream commit and it applies cleanly.

I built the package in a clean trusty chroot and installed it on an up
to date Trusty system.

Kmail appears to be working correctly.  I do not have a reproducer for
this, so I can't validate that the fix works (since it's the upstream
fix, I don't think that's too concerning), but it does appear to be
regression free.

** Changed in: kdepimlibs (Ubuntu)
   Status: Triaged => Confirmed

** Patch added: "Trusty Debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/kdepimlibs/+bug/1631237/+attachment/4756446/+files/kdepimlibs.trusty.debdiff

** Also affects: kdepimlibs (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: kdepimlibs (Ubuntu Yakkety)
   Importance: High
   Status: Confirmed

** Also affects: kdepimlibs (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** Also affects: kdepimlibs (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Changed in: kdepimlibs (Ubuntu Trusty)
   Status: New => Confirmed

** Changed in: kdepimlibs (Ubuntu Trusty)
   Importance: Undecided => High

** Changed in: kdepimlibs (Ubuntu Yakkety)
   Status: Confirmed => New

** Changed in: kdepimlibs (Ubuntu Precise)
   Importance: Undecided => High

** Changed in: kdepimlibs (Ubuntu Xenial)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631237

Title:
  KMail: HTML injection in plain text viewer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kdepimlibs/+bug/1631237/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1630063] Re: specific USB devices disconnect and don't reconnect

2016-10-06 Thread Cody Smith
Sorry about the wait, had a drive mysteriously stop working (pinned the
issue to a faulty SATA cable, still took out a good portion of my
install), gonna try that here in a few minutes (meaning when I get the
packages installed). I'll report back with the results.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1630063

Title:
  specific USB devices disconnect and don't reconnect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1630063/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1562249] Re: Failed to deploy machine with HP Smart Array Raid 6i

2016-10-06 Thread Robin
Working on testing trusty proposed .. but unsure on how to enable trusty
proposed on ubuntu server.  I will read up an figure it out, but any
help would be appreciated.

Thanks!!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1562249

Title:
  Failed to deploy machine with HP Smart Array Raid 6i

To manage notifications about this bug go to:
https://bugs.launchpad.net/curtin/+bug/1562249/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1629771] Re: Mouse integration does not work with Linux 4.8 guest without I/O APIC

2016-10-06 Thread Jeremy Bicha
** Also affects: linux (Ubuntu)
   Importance: Undecided
   Status: New

** Tags added: bot-stop-nagging

** Changed in: linux (Ubuntu)
   Status: New => Confirmed

** Changed in: virtualbox (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1629771

Title:
  Mouse integration does not work with Linux 4.8 guest without I/O APIC

To manage notifications about this bug go to:
https://bugs.launchpad.net/virtualbox/+bug/1629771/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1597923] Re: curtin is unable to create whole disk fat/vfat formats

2016-10-06 Thread Wesley Wiedenmeier
I'm marking verification-done, as curtin successfully creates whole disk
fat partitions using the version in proposed. An example config file is
attached.

On system used for curtin pack:

  # apt-cache policy curtin
 curtin:
   Installed: 0.1.0~bzr425-0ubuntu1~16.04.1
   Candidate: 0.1.0~bzr425-0ubuntu1~16.04.1

Note that the failure that this bug was reported for seems to only
affect trusty and precise, and the mkfs.vfat tool on xenial seems to
write whole disk partitions without the -I flag. However, it is still
more correct to use the flag as the expected behavior of mkfs.vfat is to
refuse to partition without the flag. This fix should also be SRU'ed to
trusty

** Attachment added: "conf.yaml"
   
https://bugs.launchpad.net/curtin/+bug/1597923/+attachment/4756445/+files/conf.yaml

** Tags removed: verification-needed
** Tags added: verification-done

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1597923

Title:
  curtin is unable to create whole disk fat/vfat formats

To manage notifications about this bug go to:
https://bugs.launchpad.net/curtin/+bug/1597923/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1625074] Re: [MIR] ubuntu-terminal-app

2016-10-06 Thread Seth Arnold
I reviewed ubuntu-terminal-app version 0.7.216 as checked into yakkety.
This should not be considered a full security review.

The pieces of this program that I've read so far give me a mixed
impression. It appears that sections of Qt and KDE frameworks are pulled
into this source package rather than using the packages in the archive. I
suspect much of this code aren't actually used in the terminal emulator.
Its presence here is definitely distracting, and if there is a way to
reach the code then those bugs become our bugs to fix twice.

The mixing is especially complicated because the terminal and process
handling routines are some of the most complicated code to make work
cross-platform -- why, for example, does this package need to know how
to start terminals on IRIX or read OpenBSD MIB tables via SNMP?

Whatever modifications are needed to Qt and KDE frameworks should be
handled as patches to upstream, so that we can more easily reduce our
technical debt by upstreaming the changes. I don't see documentation
here for patches (for example, there's no debian/patches/ directory).
Perhaps this is handled in source control, but the lack of package-level
visibility will greatly complicate other teams (such as the security
team) from interacting with this package when bugs are discovered in
the embedded libraries.

cppcheck is clean.

Compilation logs are mixed; most warnings look harmless but the code
could be re-formatted so that the warnings are no longer emitted.

Here's some of the things I've found so far; I realize that there's a
chance very little of what I found here is actually in Canonical-authored
code.

./src/plugin/qmltermwidget/src/ksession.cpp:
- appears to set _program to getenv("SHELL") || "/bin/bash"
- setenv("TERM", "xterm")

./src/plugin/qmltermwidget/lib/qtermwidget.cpp:
- appears to set _program to getenv("SHELL")

./src/plugin/qmltermwidget/lib/Session.cpp:
- if _program exists and starts with / see if it is executable
  - otherwise use getenv("SHELL"), if that is executable
  - otherwise use /bin/sh
- if _program doesn't exist or doesn't start with / use it directly

- Pty::start() expects the command name to be representable in latin-1.

Normally a shell like /bin/bash is executed with:
execve("/bin/bash", ["-bash", NULL], env);
I don't see any logic to prefix the shell command name with a hyphen.

I'm surprised that the logic to select the program to execute is spread
over three different files. (That I've found so far.)

I'm surprised the shell-picking logic doesn't use getpwent(3)'s pw_shell
field. I'd expect getenv("SHELL"), then getpwent(), then /bin/sh to be
used, in that order, with no environment variable expansion and no
second-guessing if the specified program is executable or not.

- There are a surprising number of mechanisms in KProcess:: for starting
  processes. Some take lists, some take strings, some are "detached"? What
  does it mean to start a process attached? Detached? When would the
  terminal emulator use one vs the other?

- KPty::open() openpty() discards errno in error message
- KPty::open() is very nearly unreadable; I think the ancient Linux nested
  for loops are executed even when openpty() succeeds. Should they be?

- KSession::changeDir() is gross.
- QTermWidget::changeDir is gross.

- PamAuthentication::requireAuthentication() checks an environment
  variable to determine if authentication is required. This feels wrong;
  why an environment variable? What is the purpose behind the PAM
  authentication integration?

- PamAuthentication::requireAuthentication() appears to see if the Unity
  session is locked before deciding if authentication should be required?
  If the session is locked why is this code being executed?

- PamAuthentication::ConversationFunction() appears to return a password
  regardless of what a PAM module may ask for; appears to not show
  messages to users. PAM modules that log the responses to
  PAM_PROMPT_ECHO_ON questions will wind up logging passwords. Users won't
  be able to use 2fa tokens or software, or respond to other PAM prompts
  as they are needed.

- HistoryScrollBuffer::getCells() I'm confused by the memcpy() call:
  - Do callers always pass startColumn 0? I'd expect to see the starting
point line.constData() + startColumn * sizeof(Character)
  - Do callers have to be aware that 'count' must satisfy constraints to
avoid reading off the end of _historyBuffer? There's so many
implementations and uses of getCells() in so many classes it's hard to
check them for consistency.

I think this package needs cleanup and hardening work before we can
commit to supporting it in an LTS release.

Thanks

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1625074

Title:
  [MIR] ubuntu-terminal-app

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-terminal-app/+bug/1625074/+subscriptions

-- 

[Bug 1631221] Re: Installer crashed, inst. on top of existing LVM btrfs

2016-10-06 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  Reviewing your log files attached to this bug report it
seems that there is a problem with your installation media (CD/DVD).
You can verify the integrity of the Ubuntu ISO files you downloaded by
following the instructions at
https://help.ubuntu.com/community/HowToMD5SUM.  You might also retry
your installation with new media.  In the event that is is not in fact
an error with your installation media please set the bug's status back
to New.  Thanks and good luck!

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Changed in: ubiquity (Ubuntu)
   Status: New => Incomplete

** Tags added: ident-mismatch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631221

Title:
  Installer crashed, inst. on top of existing LVM btrfs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1631221/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1610321] Re: ffmpeg with x265 crashes on OpenVZ and Ubuntu on Windows

2016-10-06 Thread Launchpad Bug Tracker
[Expired for x265 (Ubuntu) because there has been no activity for 60
days.]

** Changed in: x265 (Ubuntu)
   Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1610321

Title:
  ffmpeg with x265 crashes on OpenVZ and Ubuntu on Windows

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/x265/+bug/1610321/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1610694] Re: installation crashes during switch display from mDP->HDML to mDP->DP

2016-10-06 Thread Launchpad Bug Tracker
[Expired for ubiquity (Ubuntu) because there has been no activity for 60
days.]

** Changed in: ubiquity (Ubuntu)
   Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1610694

Title:
  installation crashes during switch display from mDP->HDML to mDP->DP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1610694/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1603328] Re: Application perf fail to start.

2016-10-06 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1603328

Title:
  Application perf fail to start.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1603328/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1610700] Re: system locks up after installing upgrade to 16.04

2016-10-06 Thread Launchpad Bug Tracker
[Expired for ack-grep (Ubuntu) because there has been no activity for 60
days.]

** Changed in: ack-grep (Ubuntu)
   Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1610700

Title:
  system locks up after installing upgrade to 16.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ack-grep/+bug/1610700/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1607218] Re: asterisk support for opus codec

2016-10-06 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: asterisk (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1607218

Title:
  asterisk support for opus codec

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/asterisk/+bug/1607218/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1596405] Re: Obsolete 13.1 LTS branch release in Xenial

2016-10-06 Thread gutschke
As is, Asterisk is completely broken in Xenial. A fresh install crashes
within seconds of service start up. While I can't guarantee that
tracking upstream would fix this particular problem, it stands a much
higher chance of getting the attention of the Asterisk developers.
Shipping an outdated and unmaintained version isn't doing anybody any
favors.

On the other hand, I do understand that developer resources are limited.
So, maybe, completely pulling the broken copy of Asterisk from Xenial is
the only viable option at this point?

As a work-around for Ubuntu users, I found that moving Asterisk into an
LXD container works pretty well. Obviously, I can't run Xenial in that
container, as it would trigger the same problem. But Debian Jessie has a
working copy of Asterisk at this time and that easily installs in a
container.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1596405

Title:
  Obsolete 13.1 LTS branch release in Xenial

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/asterisk/+bug/1596405/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631237] [NEW] KMail: HTML injection in plain text viewer

2016-10-06 Thread Scott Kitterman
*** This bug is a security vulnerability ***

Public security bug reported:

Through a malicious URL that contained a quote character it
was possible to inject HTML code in KMail's plain text viewer.
Due to the parser used on the URL it was not possible to include
the equal sign (=) or a space into the injected HTML, which greatly
reduces the available HTML functionality. Although it is possible
to include an HTML comment indicator to hide content.

Note: Affected package is kdepimlibs in 12.04 - 15.04 and it looks like
both kcoreaddons and messagecomposer in later releases.

** Affects: kdepimlibs (Ubuntu)
 Importance: High
 Status: Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631237

Title:
  KMail: HTML injection in plain text viewer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kdepimlibs/+bug/1631237/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1478322]

2016-10-06 Thread Blaze
Maybe it was fixed with Qt5.7. I have Qt5.6.1.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1478322

Title:
  SDDM-init is slow with SDDM theme Breeze

To manage notifications about this bug go to:
https://bugs.launchpad.net/kde-workspace/+bug/1478322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1478322]

2016-10-06 Thread Rik Mills
I also cannot replicate this at all:

Plasma 5.7.2, and later 5.7.5
Qt 5.6.1
Ubuntu 16.10 (Yakkety)

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to plasma-workspace in Ubuntu.
https://bugs.launchpad.net/bugs/1478322

Title:
  SDDM-init is slow with SDDM theme Breeze

To manage notifications about this bug go to:
https://bugs.launchpad.net/kde-workspace/+bug/1478322/+subscriptions

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 1564157] Re: juju list-credentials fails to display

2016-10-06 Thread Ian Booth
** Changed in: juju
   Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1564157

Title:
  juju list-credentials fails to display

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/1564157/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631236] [NEW] Xorg freeze with Nvidia 960m on Dell Inspiron 15-7559

2016-10-06 Thread gpone
Public bug reported:

Posted first about this issue at
https://ubuntuforums.org/showthread.php?t=2339198

Pasted post below:

"I installed Ubuntu 16.04 Desktop alongside Windows 10 Home on a Dell
Inspiron 15-7559 with an Nvidia 960m card and embeded Intel Skylake
graphics.

When I first installed Ubuntu and attempted to boot, the display would
freeze on the Ubuntu splash screen after entering my disk password.
Strangely, by removing "quiet" and "splash" from my grub configuration
during my next boot, I was able to finally boot to the login screen and
access the desktop. I installed the Intel and Nvidia drivers in the
"Additional Drivers" app and now I can boot to the login screen with no
issues.

Now, when closing the laptop lid to suspend the system, it resumes to a
blank screen and I can't get it to recover from this state without
holding the power button to force shutdown. I verified that it is a
display issue because I was able to ssh into the machine while it had
the blank screen.

I was able to install and boot into the latest (4.8) mainline kernel,
which also gave me a warning/error because of my installed proprietary
drivers. I tried uninstalling the Nvidia drivers to see if Nouveau had
been fixed/improved, but the previous splash screen freeze returned; I
was able to reinstall the drivers by booting into 4.8 recovery mode and
using the Failsafe graphics mode to reinstall the Nvidia drivers.

Any help on getting Nouveau to work nicely with the 960m so I don't have
to run proprietary drivers or solve the suspend issue?"

Now, I sometimes cannot shutdown properly without getting warnings about
cpu soft lockups from gpu-manager. I also get these when I boot without
nvidia drivers with "quiet" and "splash" options removed from my grub
config.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+13ubuntu3
Uname: Linux 4.8.0-040800-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
BootLog:
 
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Thu Oct  6 20:47:42 2016
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DkmsStatus:
 bbswitch, 0.8, 4.4.0-38-generic, x86_64: installed
 bbswitch, 0.8, 4.8.0-040800-generic, x86_64: installed
 nvidia-361, 361.42: added
EcryptfsInUse: Yes
ExtraDebuggingInterest: Yes
GpuHangFrequency: Continuously
GpuHangReproducibility: Yes, I can easily reproduce it
GpuHangStarted: Immediately after installing this version of Ubuntu
GraphicsCard:
 Intel Corporation Skylake Integrated Graphics [8086:191b] (rev 06) (prog-if 00 
[VGA controller])
   Subsystem: Dell Skylake Integrated Graphics [1028:0706]
   Subsystem: Dell GM107M [GeForce GTX 960M] [1028:0706]
InstallationDate: Installed on 2016-09-29 (8 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 003: ID 8087:07dc Intel Corp. 
 Bus 001 Device 002: ID 1bcf:28b0 Sunplus Innovation Technology Inc. 
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: Dell Inc. Inspiron 7559
ProcEnviron:
 LANGUAGE=en_US
 TERM=xterm-256color
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.8.0-040800-generic 
root=UUID=7dd53585-5dcb-4071-a47a-d1a7fede0e3f ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/05/2015
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 1.1.3
dmi.board.name: 0H0CC0
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: Not Specified
dmi.modalias: 
dmi:bvnDellInc.:bvr1.1.3:bd11/05/2015:svnDellInc.:pnInspiron7559:pvr1.1.3:rvnDellInc.:rn0H0CC0:rvrA00:cvnDellInc.:ct8:cvrNotSpecified:
dmi.product.name: Inspiron 7559
dmi.product.version: 1.1.3
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.12.2+16.04.20160823-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.68-1
version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.2-0intel1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.2-0intel1
version.xserver-xorg-core: xserver-xorg-core 2:1.18.4-0ubuntu0.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-1build2
xserver.bootTime: Thu Oct  6 20:46:55 2016
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id  

[Bug 1614848] Re: ubiquity crashed with GLib.GError in configure_icons(): gtk-icon-theme-error-quark: Icon 'gtk-missing-image' not present in theme Adwaita (0)

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package ubiquity - 16.10.13

---
ubiquity (16.10.13) yakkety; urgency=medium

  [ Blaze ]
  * Port to PyQT5.

  [ Mathieu Trudel-Lapierre ]
  * Automatic update of included source packages: preseed 1.71ubuntu3.
  * Finish porting to PyQt5.
  * Various small UI tweaks to support GTK 3.20. (LP: #1614848, #1617711)

 -- Mathieu Trudel-Lapierre   Thu, 06 Oct 2016
19:30:10 -0400

** Changed in: ubiquity (Ubuntu)
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1614848

Title:
  ubiquity crashed with GLib.GError in configure_icons(): gtk-icon-
  theme-error-quark: Icon 'gtk-missing-image' not present in theme
  Adwaita (0)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-gnome/+bug/1614848/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1589905] Re: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter [168c:003e] is not supported

2016-10-06 Thread Phidias
linux-firmware on Xenial has been verified, it works well
linux-firmware: 1.157.4

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1589905

Title:
  Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter [168c:003e]
  is not supported

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1589905/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1617711] Re: Resize screen hard to read

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package ubiquity - 16.10.13

---
ubiquity (16.10.13) yakkety; urgency=medium

  [ Blaze ]
  * Port to PyQT5.

  [ Mathieu Trudel-Lapierre ]
  * Automatic update of included source packages: preseed 1.71ubuntu3.
  * Finish porting to PyQt5.
  * Various small UI tweaks to support GTK 3.20. (LP: #1614848, #1617711)

 -- Mathieu Trudel-Lapierre   Thu, 06 Oct 2016
19:30:10 -0400

** Changed in: ubiquity (Ubuntu)
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1617711

Title:
  Resize screen hard to read

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1617711/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1631230] [NEW] auplink spam in docker unit log

2016-10-06 Thread Tianon Gravi
It should already be in either recommends or suggests (can't remember
which).

IMO "depends" is inappropriate because it's only required if your kernel
both supports AUFS and it's configured or chosen as your graph driver.
BTRFS, overlayfs, and even ZFS are also supported, for example.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631230

Title:
  auplink spam in docker unit log

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/docker.io/+bug/1631230/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1603244] Re: docker - Cannot start container

2016-10-06 Thread Robert Collins
** Changed in: docker.io (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1603244

Title:
  docker - Cannot start container

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/docker.io/+bug/1603244/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631230] [NEW] auplink spam in docker unit log

2016-10-06 Thread Robert Collins
Public bug reported:


Oct 06 14:48:13 linux-dev docker[1317]: 
time="2016-10-06T14:48:13.909019154+13:00" level=error msg="Couldn't run 
auplink before unmount /var/lib/docker/tmp/docker-aufs-union929083141: exec: 
\"auplink\": executable file not found in $PATH"
Oct 06 14:48:29 linux-dev docker[1317]: 
time="2016-10-06T14:48:29.216164082+13:00" level=error msg="Couldn't run 
auplink before unmount 
/var/lib/docker/aufs/mnt/6d15156cb4338d7264b7cb3d9404c99c860b897381837eaa498813e1b9ffc710-init:
 exec: \"auplink\": executable file not found in $PATH"


If this is harmless, it would be good to stop docker trying to run it. If its 
not, please depend on auplink so that it is installed automatically!

** Affects: docker.io (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631230

Title:
  auplink spam in docker unit log

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/docker.io/+bug/1631230/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 57091] Re: proc/sys/net/ipv4/tcp_syncookies=1 should be seriously considered to permit SYN flood defense...

2016-10-06 Thread Matthew Caron
Well, and it gets more interesting.

Bog standard 16.04 has it turned on (from the above referenced 10
-network-security.conf).

But, if you then enabled ufw, it gets disabled, due to the default
setting in /etc/ufw/sysctl.conf.

There seems to be serious debate as to whether or not enabling it is
correct.

What I know is that I just spent two hours trying to figure out why SANE
took forever to detect my network scanner, and this syslog entry clued
me in:

Oct  6 22:54:26 hiro kernel: [48562.817258] TCP: request_sock_TCP:
Possible SYN flooding on port 34029. Dropping request.  Check SNMP
counters.

The dropped request was responsible for the delay. If I enable syn
cookies, I get:

Oct  6 22:57:28 hiro kernel: [48744.796029] TCP: request_sock_TCP:
Possible SYN flooding on port 42041. Sending cookies.  Check SNMP
counters.

and it's basically instant.

On top of all of this, there isn't a lot of traffic - this is SANE
talking to a vendor-provided scanner backend over localhost. If I
capture it, there's ONE SYN request and the kernel thinks it's a
"flood".. which makes no sense.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/57091

Title:
  proc/sys/net/ipv4/tcp_syncookies=1 should be seriously considered to
  permit SYN flood defense...

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/procps/+bug/57091/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631229] [NEW] Update gnome-photos to 3.22.1

2016-10-06 Thread Jeremy Bicha
Public bug reported:

Impact
==
- Except for .png's, the Photos app converts all photos to JPEG when exporting. 
Before this update, the original filename extension was still used instead of 
.jpg
- Disable 'rdtscp' instruction since if enabled, it will crash on 64-bit 
computers that don't support that instruction.

https://git.gnome.org/browse/gnome-photos/tree/NEWS?h=gnome-3-22
https://git.gnome.org/browse/gnome-photos/log/?h=gnome-3-22

Test Case
=
Ensure the Photos app still works.


Regression Potential
===
Low. This is a bugfix release from GNOME.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: gnome-photos 3.22.0-1
ProcVersionSignature: Ubuntu 4.8.0-17.19-generic 4.8.0-rc7
Uname: Linux 4.8.0-17-generic x86_64
ApportVersion: 2.20.3-0ubuntu7
Architecture: amd64
CurrentDesktop: GNOME
Date: Thu Oct  6 23:05:10 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-08-11 (56 days ago)
InstallationMedia: Ubuntu-GNOME 16.10 "Yakkety Yak" - Alpha amd64 (20160811)
SourcePackage: gnome-photos
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-photos (Ubuntu)
 Importance: Medium
 Status: In Progress


** Tags: amd64 apport-bug upgrade-software-version yakkety

** Attachment removed: "JournalErrors.txt"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-photos/+bug/1631229/+attachment/4756421/+files/JournalErrors.txt

** Changed in: gnome-photos (Ubuntu)
   Status: New => In Progress

** Changed in: gnome-photos (Ubuntu)
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631229

Title:
  Update gnome-photos to 3.22.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-photos/+bug/1631229/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1611074] Re: Reformatting of ephemeral drive fails on resize of Azure VM

2016-10-06 Thread Scott Moser
Hi,

now that bug 1629868 is understood (duped to bug 1629797) we can reasonably 
safely move this back to xenial.  The issue is also not relevant for ubuntu on 
xenial, because resolved is not used there.
There is a release of cloud-init currently in -proposed 
(0.7.8-1-g3705bb5-0ubuntu1~16.04.3) [1].  Once that clears we can look at 
moving this back also.

So best case scenario is enter into proposed in 10 days or so, and then
to released a week after that.

--
[1] https://launchpad.net/ubuntu/+source/cloud-init

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1611074

Title:
  Reformatting of ephemeral drive fails on resize of Azure VM

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1611074/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1562249] Re: Failed to deploy machine with HP Smart Array Raid 6i

2016-10-06 Thread Scott Moser
** Also affects: curtin (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Changed in: curtin (Ubuntu Trusty)
   Importance: Undecided => Medium

** Changed in: curtin (Ubuntu Trusty)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1562249

Title:
  Failed to deploy machine with HP Smart Array Raid 6i

To manage notifications about this bug go to:
https://bugs.launchpad.net/curtin/+bug/1562249/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 831643] Re: kdump-tools fails to find dependency makedumpfile on arm

2016-10-06 Thread Bug Watch Updater
** Changed in: makedumpfile (Debian)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/831643

Title:
  kdump-tools fails to find dependency makedumpfile on arm

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/makedumpfile/+bug/831643/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1528818] Re: to install/upgrade: subprocess installed post-installation script returned error exit status 139package python3-dns 3.1.0-1 failed

2016-10-06 Thread Scott Kitterman
Since this is a pure python package with no binary content,
"Segmentation fault (core dumped)" means it's not a py3dns issue.

** Changed in: py3dns (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1528818

Title:
  to install/upgrade: subprocess installed post-installation script
  returned error exit status 139package python3-dns 3.1.0-1 failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/py3dns/+bug/1528818/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631161] Re: Pulseaudio applications forget the correct soundcard port

2016-10-06 Thread Dan Dart
All done, with the log set to startup, copied before and after changing
my volume settings.

Cheers

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631161

Title:
  Pulseaudio applications forget the correct soundcard port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1631161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1441852] Re: [HP Spectre x360 - 13-4010ca] Audio broken, broadwell-U audio controller

2016-10-06 Thread madbiologist
Can everyone please test the 4.9-rc1 kernel when it is available at 
http://kernel.ubuntu.com/~kernel-ppa/mainline/?C=N;O=D
It contains the following commit:

ALSA: hda - Add the top speaker pin config for HP Spectre x360

HP Spectre x360 with CX20724 codec has two speaker outputs while the
BIOS sets up only the bottom one (NID 0x17) and disables the top one
(NID 0x1d).

This patch adds a fixup simply defining the proper pincfg for NID 0x1d
so that the top speaker works as is.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=169071
Cc: 
Signed-off-by: Takashi Iwai 

** Bug watch added: Linux Kernel Bug Tracker #169071
   http://bugzilla.kernel.org/show_bug.cgi?id=169071

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1441852

Title:
  [HP Spectre x360 - 13-4010ca] Audio broken, broadwell-U audio
  controller

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1441852/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1629837] Re: Chrome + hardware acceleration after resume causes unusable system with Nvidia

2016-10-06 Thread Daniel van Vugt
** Summary changed:

- chrome + hardware acceleration after resume causes unusable system 
+ Chrome + hardware acceleration after resume causes unusable system with Nvidia

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1629837

Title:
  Chrome + hardware acceleration after resume causes unusable system
  with Nvidia

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1629837/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631069] Re: Irregular display in my Machine.

2016-10-06 Thread Daniel van Vugt
** Package changed: xorg (Ubuntu) => xserver-xorg-video-intel (Ubuntu)

** Summary changed:

- Irregular display in my Machine.
+ Intel driver on trusty only provides 800x600 and 1024x768

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631069

Title:
  Intel driver on trusty only provides 800x600 and 1024x768

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1631069/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631161] Re: Pulseaudio applications forget the correct soundcard port

2016-10-06 Thread Dan Dart
** Attachment added: "pulseverbose.log after changing to line out"
   
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1631161/+attachment/4756418/+files/pulseverbose.log.2

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631161

Title:
  Pulseaudio applications forget the correct soundcard port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1631161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631161] Re: Pulseaudio applications forget the correct soundcard port

2016-10-06 Thread Dan Dart
** Attachment added: "pulseverbose.log before changing to line out"
   
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1631161/+attachment/4756417/+files/pulseverbose.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631161

Title:
  Pulseaudio applications forget the correct soundcard port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1631161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1624755] Re: Advanced Menu theme looks "funky"

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-mate-artwork - 16.10.8

---
ubuntu-mate-artwork (16.10.8) yakkety; urgency=medium

  * Fix Advanced Menu themes to use flat elements. (LP: #1630366, #1624755)
  * Fix OSD colors. (LP: #1630538)
  * Fix LibreOffice toolbars and theme. (LP: #1624571, #1550990)
  * Fix symbolic icons for GtkExpander.
  * Fix Transmission progress bars. (LP: #1624565)
  * Fix Indicator Applet on transparent panels. (LP: #1598159)

 -- Martin Wimpress   Thu, 06 Oct 2016
23:35:00 +0100

** Changed in: ubuntu-mate-artwork (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1624755

Title:
  Advanced Menu  theme looks "funky"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-mate-artwork/+bug/1624755/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631161] PulseList.txt

2016-10-06 Thread Dan Dart
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1631161/+attachment/4756416/+files/PulseList.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631161

Title:
  Pulseaudio applications forget the correct soundcard port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1631161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631161] CurrentDmesg.txt

2016-10-06 Thread Dan Dart
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1631161/+attachment/4756412/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631161

Title:
  Pulseaudio applications forget the correct soundcard port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1631161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631161] JournalErrors.txt

2016-10-06 Thread Dan Dart
apport information

** Attachment added: "JournalErrors.txt"
   
https://bugs.launchpad.net/bugs/1631161/+attachment/4756414/+files/JournalErrors.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631161

Title:
  Pulseaudio applications forget the correct soundcard port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1631161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631161] ProcEnviron.txt

2016-10-06 Thread Dan Dart
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1631161/+attachment/4756415/+files/ProcEnviron.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631161

Title:
  Pulseaudio applications forget the correct soundcard port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1631161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1598159] Re: Indicator Applet Complete doesn't change the background color in Ubuntu MATE 16.10

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-mate-artwork - 16.10.8

---
ubuntu-mate-artwork (16.10.8) yakkety; urgency=medium

  * Fix Advanced Menu themes to use flat elements. (LP: #1630366, #1624755)
  * Fix OSD colors. (LP: #1630538)
  * Fix LibreOffice toolbars and theme. (LP: #1624571, #1550990)
  * Fix symbolic icons for GtkExpander.
  * Fix Transmission progress bars. (LP: #1624565)
  * Fix Indicator Applet on transparent panels. (LP: #1598159)

 -- Martin Wimpress   Thu, 06 Oct 2016
23:35:00 +0100

** Changed in: ubuntu-mate-artwork (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1598159

Title:
  Indicator Applet Complete doesn't change the background color in
  Ubuntu MATE 16.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1598159/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1550990] Re: Ambiant-MATE could have improved LibreOffice theming

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-mate-artwork - 16.10.8

---
ubuntu-mate-artwork (16.10.8) yakkety; urgency=medium

  * Fix Advanced Menu themes to use flat elements. (LP: #1630366, #1624755)
  * Fix OSD colors. (LP: #1630538)
  * Fix LibreOffice toolbars and theme. (LP: #1624571, #1550990)
  * Fix symbolic icons for GtkExpander.
  * Fix Transmission progress bars. (LP: #1624565)
  * Fix Indicator Applet on transparent panels. (LP: #1598159)

 -- Martin Wimpress   Thu, 06 Oct 2016
23:35:00 +0100

** Changed in: ubuntu-mate-artwork (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1550990

Title:
  Ambiant-MATE could have improved LibreOffice theming

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-mate-artwork/+bug/1550990/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1624565] Re: Transmission progress bars are incorrectly themed

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-mate-artwork - 16.10.8

---
ubuntu-mate-artwork (16.10.8) yakkety; urgency=medium

  * Fix Advanced Menu themes to use flat elements. (LP: #1630366, #1624755)
  * Fix OSD colors. (LP: #1630538)
  * Fix LibreOffice toolbars and theme. (LP: #1624571, #1550990)
  * Fix symbolic icons for GtkExpander.
  * Fix Transmission progress bars. (LP: #1624565)
  * Fix Indicator Applet on transparent panels. (LP: #1598159)

 -- Martin Wimpress   Thu, 06 Oct 2016
23:35:00 +0100

** Changed in: ubuntu-mate-artwork (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1624565

Title:
  Transmission progress bars are incorrectly themed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-mate-artwork/+bug/1624565/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1624571] Re: White lines visible around toolbars in LibreOffice when using GTK3 and a dark theme

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-mate-artwork - 16.10.8

---
ubuntu-mate-artwork (16.10.8) yakkety; urgency=medium

  * Fix Advanced Menu themes to use flat elements. (LP: #1630366, #1624755)
  * Fix OSD colors. (LP: #1630538)
  * Fix LibreOffice toolbars and theme. (LP: #1624571, #1550990)
  * Fix symbolic icons for GtkExpander.
  * Fix Transmission progress bars. (LP: #1624565)
  * Fix Indicator Applet on transparent panels. (LP: #1598159)

 -- Martin Wimpress   Thu, 06 Oct 2016
23:35:00 +0100

** Changed in: ubuntu-mate-artwork (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1624571

Title:
  White lines visible around toolbars in LibreOffice when using GTK3 and
  a dark theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1624571/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1630538] Re: Volume OSD has the wrong color level indicator

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-mate-artwork - 16.10.8

---
ubuntu-mate-artwork (16.10.8) yakkety; urgency=medium

  * Fix Advanced Menu themes to use flat elements. (LP: #1630366, #1624755)
  * Fix OSD colors. (LP: #1630538)
  * Fix LibreOffice toolbars and theme. (LP: #1624571, #1550990)
  * Fix symbolic icons for GtkExpander.
  * Fix Transmission progress bars. (LP: #1624565)
  * Fix Indicator Applet on transparent panels. (LP: #1598159)

 -- Martin Wimpress   Thu, 06 Oct 2016
23:35:00 +0100

** Changed in: ubuntu-mate-artwork (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1630538

Title:
  Volume OSD has the wrong color level indicator

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-mate-artwork/+bug/1630538/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1630366] Re: MATE Menu theme in Ubuntu MATE 16.10 is not flat

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-mate-artwork - 16.10.8

---
ubuntu-mate-artwork (16.10.8) yakkety; urgency=medium

  * Fix Advanced Menu themes to use flat elements. (LP: #1630366, #1624755)
  * Fix OSD colors. (LP: #1630538)
  * Fix LibreOffice toolbars and theme. (LP: #1624571, #1550990)
  * Fix symbolic icons for GtkExpander.
  * Fix Transmission progress bars. (LP: #1624565)
  * Fix Indicator Applet on transparent panels. (LP: #1598159)

 -- Martin Wimpress   Thu, 06 Oct 2016
23:35:00 +0100

** Changed in: ubuntu-mate-artwork (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1630366

Title:
  MATE Menu theme in Ubuntu MATE 16.10 is not flat

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-mate-artwork/+bug/1630366/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631161] Dependencies.txt

2016-10-06 Thread Dan Dart
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1631161/+attachment/4756413/+files/Dependencies.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631161

Title:
  Pulseaudio applications forget the correct soundcard port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1631161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631161] Re: Pulseaudio applications forget the correct soundcard port

2016-10-06 Thread Dan Dart
apport information

** Tags added: apport-collected sarah third-party-packages

** Description changed:

  Whenever I reboot anew, pulseaudio has forgotten the correct audio port
  which I have set using the kde pulseaudio tool.
  
  I use line out, but it defaults to headphones, which is incorrect for my
  current setup. I expect it to remember that I wanted line out every
  time.
  
  Once selected, everything runs fine for that session, but it doesn't get
  saved and defaults back to the wrong output every time.
  
  Guessing this is pulseaudio as it happens with the gnome tool also.
  
  Tested not working in 16.04, 16.10 and Mint 18 (packages from 16.04).
  
  Policy installed: 1:8.0-0ubuntu3
  
  Cheers
+ --- 
+ ApportVersion: 2.20.1-0ubuntu2.1
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/pcmC0D0c:   kvd1577 F...m pulseaudio
+  /dev/snd/pcmC0D0p:   kvd1577 F...m pulseaudio
+  /dev/snd/controlC0:  kvd1577 F pulseaudio
+ CurrentDesktop: KDE
+ DistroRelease: Linux 18
+ InstallationDate: Installed on 2016-10-02 (5 days ago)
+ InstallationMedia: Linux Mint 18 "Sarah" - Release amd64 20160904
+ NonfreeKernelModules: nvidia_uvm nvidia
+ Package: pulseaudio 1:8.0-0ubuntu3 [origin: Ubuntu]
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 4.4.0-38.57-generic 4.4.19
+ Tags: sarah third-party-packages
+ Uname: Linux 4.4.0-38-generic x86_64
+ UnreportableReason: This is not an official Linux package. Please remove any 
third party package and try again.
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 09/24/2013
+ dmi.bios.vendor: Award Software International, Inc.
+ dmi.bios.version: F5f
+ dmi.board.name: GA-770T-USB3
+ dmi.board.vendor: Gigabyte Technology Co., Ltd.
+ dmi.board.version: x.x
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
+ dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF5f:bd09/24/2013:svnGigabyteTechnologyCo.,Ltd.:pnGA-770T-USB3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-770T-USB3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
+ dmi.product.name: GA-770T-USB3
+ dmi.sys.vendor: Gigabyte Technology Co., Ltd.

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1631161/+attachment/4756410/+files/AlsaInfo.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631161

Title:
  Pulseaudio applications forget the correct soundcard port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1631161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1581416] Re: grub-legacy-ec2 installs files in /etc/kernel/kernel/post(inst|rm).d

2016-10-06 Thread Launchpad Bug Tracker
** Merge proposal linked:
   https://code.launchpad.net/~sdeziel/cloud-init/+git/cloud-init/+merge/307902

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1581416

Title:
  grub-legacy-ec2 installs files in /etc/kernel/kernel/post(inst|rm).d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1581416/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1581416] Re: grub-legacy-ec2 installs files in /etc/kernel/kernel/post(inst|rm).d

2016-10-06 Thread Simon Déziel
** Branch unlinked: lp:~sdeziel/ubuntu/yakkety/cloud-init/lp1581416

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1581416

Title:
  grub-legacy-ec2 installs files in /etc/kernel/kernel/post(inst|rm).d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1581416/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1625097] Re: rtl8812au 4.3.8.12175.20140902+dfsg-0ubuntu4 ADT test failure with linux 4.8.0-11.12 [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

2016-10-06 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1595765 ***
https://bugs.launchpad.net/bugs/1595765

** This bug has been marked a duplicate of bug 1595765
   Wifi drivers all fail to build [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1625097

Title:
  rtl8812au 4.3.8.12175.20140902+dfsg-0ubuntu4 ADT test failure with
  linux 4.8.0-11.12 [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rtl8812au/+bug/1625097/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1595765] Re: bcmwl-kernel-source 6.30.223.248+bdcom-0ubuntu8: bcmwl kernel module failed to build [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

2016-10-06 Thread Daniel van Vugt
** Summary changed:

- bcmwl-kernel-source 6.30.223.248+bdcom-0ubuntu8: bcmwl kernel module failed 
to build
+ bcmwl-kernel-source 6.30.223.248+bdcom-0ubuntu8: bcmwl kernel module failed 
to build [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

** Summary changed:

- bcmwl-kernel-source 6.30.223.248+bdcom-0ubuntu8: bcmwl kernel module failed 
to build [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]
+ Wifi drivers all fail to build [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

** Also affects: broadcom-sta (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: rtl8812au (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: broadcom-sta (Ubuntu)
   Importance: Undecided => High

** Changed in: rtl8812au (Ubuntu)
   Importance: Undecided => High

** Changed in: broadcom-sta (Ubuntu)
   Status: New => Confirmed

** Changed in: rtl8812au (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1595765

Title:
  Wifi drivers all fail to build [error: ‘IEEE80211_BAND_2GHZ’
  undeclared here]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bcmwl/+bug/1595765/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1630789] Re: normal users can't run snaps inside of LXD containers

2016-10-06 Thread Tyler Hicks
** Changed in: snapd (Ubuntu)
   Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1630789

Title:
  normal users can't run snaps inside of LXD containers

To manage notifications about this bug go to:
https://bugs.launchpad.net/snap-confine/+bug/1630789/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631200] Re: broadcom-sta-dkms 6.30.223.271-2: broadcom-sta kernel module failed to build [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

2016-10-06 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1595765 ***
https://bugs.launchpad.net/bugs/1595765

** Summary changed:

- broadcom-sta-dkms 6.30.223.271-2: broadcom-sta kernel module failed to build
+ broadcom-sta-dkms 6.30.223.271-2: broadcom-sta kernel module failed to build 
[error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

** This bug has been marked a duplicate of bug 1595765
   Wifi drivers all fail to build [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631200

Title:
  broadcom-sta-dkms 6.30.223.271-2: broadcom-sta kernel module failed to
  build [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/broadcom-sta/+bug/1631200/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1629235] Re: rtl8812au-dkms 4.3.8.12175.20140902+dfsg-0ubuntu4: rtl8812au kernel module failed to build [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

2016-10-06 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1595765 ***
https://bugs.launchpad.net/bugs/1595765

** This bug is no longer a duplicate of bug 1625097
   rtl8812au 4.3.8.12175.20140902+dfsg-0ubuntu4 ADT test failure with linux 
4.8.0-11.12 [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]
** This bug has been marked a duplicate of bug 1595765
   Wifi drivers all fail to build [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1629235

Title:
  rtl8812au-dkms 4.3.8.12175.20140902+dfsg-0ubuntu4: rtl8812au kernel
  module failed to build [error: ‘IEEE80211_BAND_2GHZ’ undeclared here]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rtl8812au/+bug/1629235/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1095086] Re: When connecting to a server i get "Unable to find matching CELT codecs with other clients. You will not be able to talk to all users."

2016-10-06 Thread Enigma
For me the issue was that I was launching mumble via a .desktop that
pointed to a sym link I placed in /usr/bin pointing to
~/mumble/release/mumble.

If I launched mumble manually through it's release directory, I didn't
get this warning.

To fix this I added `CONFIG+=no-bundled-celt` to the qmake line and
installed libcelt packages and it's working now.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1095086

Title:
  When connecting to a server i get "Unable to find matching CELT codecs
  with other clients. You will not be able to talk to all users."

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mumble/+bug/1095086/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1598534] Re: Screen can't get back occasionally after dimmed and locked

2016-10-06 Thread t4eg
It seems like the bug was fixed on recent Ubuntu.

** Changed in: ubuntu
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1598534

Title:
  Screen can't get back occasionally after dimmed and locked

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1598534/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1505067] Re: [HP Spectre x360 - 13-4001nf] Audio broken, broadwell-U audio controller

2016-10-06 Thread madbiologist
Yom - can you confirm what Bastien said in comment #5 about kernel 4.4?
If not, he probably has different hardware to yours.

Can you also please test the 4.9-rc1 kernel when it is available at 
http://kernel.ubuntu.com/~kernel-ppa/mainline/?C=N;O=D
It contains the following commit:

ALSA: hda - Add the top speaker pin config for HP Spectre x360

HP Spectre x360 with CX20724 codec has two speaker outputs while the
BIOS sets up only the bottom one (NID 0x17) and disables the top one
(NID 0x1d).

This patch adds a fixup simply defining the proper pincfg for NID 0x1d
so that the top speaker works as is.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=169071
Cc: 
Signed-off-by: Takashi Iwai 

** Bug watch added: Linux Kernel Bug Tracker #169071
   http://bugzilla.kernel.org/show_bug.cgi?id=169071

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1505067

Title:
  [HP Spectre x360 - 13-4001nf] Audio broken, broadwell-U audio
  controller

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1505067/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631222] Re: gvfsd-smb-browse crashed with SIGABRT in _talloc_get_type_abort()

2016-10-06 Thread Apport retracing service
*** This bug is a duplicate of bug 1564532 ***
https://bugs.launchpad.net/bugs/1564532

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1564532, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1631222/+attachment/4756391/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1631222/+attachment/4756393/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1631222/+attachment/4756395/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1631222/+attachment/4756396/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1631222/+attachment/4756397/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1631222/+attachment/4756398/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1631222/+attachment/4756399/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1564532

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631222

Title:
  gvfsd-smb-browse crashed with SIGABRT in _talloc_get_type_abort()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1631222/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1609700] Re: username is not saved in openconnect connection dialog

2016-10-06 Thread Hawk
It is also happening in Ubuntu 16.10

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1609700

Title:
  username is not saved in openconnect connection dialog

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-openconnect/+bug/1609700/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1417608] Re: [MIR] ppc64-diag needed in minimal for hotplug capabilities

2016-10-06 Thread Steve Langasek
ppc64-diag has now been seeded.

** Changed in: ppc64-diag (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1417608

Title:
  [MIR] ppc64-diag needed in minimal for hotplug capabilities

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libservicelog/+bug/1417608/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631221] [NEW] Installer crashed, inst. on top of existing LVM btrfs

2016-10-06 Thread Max
Public bug reported:

As the title says, installer crashed after installing on existing LVM
BTRFS Ubuntu 16.04.01 (re-install due to after update, system refused to
boot - error "double free at 0x669e6080 Aborted. Press any key to exit",
probably from GRUB).

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubiquity 2.21.63.2
ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
Uname: Linux 4.4.0-31-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CasperVersion: 1.376
Date: Thu Oct  6 21:18:49 2016
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed 
boot=casper only-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubiquity (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug ubiquity-2.21.63.2 ubuntu xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631221

Title:
  Installer crashed, inst. on top of existing LVM btrfs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1631221/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1630069] Re: Regression tests can not detect binfmt_elf mmpa semantic change

2016-10-06 Thread Tyler Hicks
The Yakkety apparmor package does not need this change since the Yakkety
kernel will always have kernel commit
9f834ec18defc369d73ccf9e87a2790bfa05bf46 present.

** Description changed:

+ == apparmor SRU ==
+ 
+ [Impact]
+ 
+  * The exec_stack.sh regression test fails due to a behavior change in 4.8
+kernels from this patch:
+ 
+commit 9f834ec18defc369d73ccf9e87a2790bfa05bf46
+Author: Linus Torvalds 
+Date: Mon Aug 22 16:41:46 2016 -0700
+ 
+binfmt_elf: switch to new creds when switching to new mm
+ 
+  * The regression tests were fixed for this kernel change but they were fixed
+in a way that always assumed that kernel change is present. They should 
have
+been adjusted so that they act differently according to whether or not the
+kernel change is present (it is a change that could end up being backported
+through the stable trees).
+ 
+ [Test Case]
+ 
+  $ apt-get source apparmor
+  $ cd tests/regression/apparmor
+  $ make USE_SYSTEM=1
+  $ sudo bash exec_stack.sh
+ 
+  The previous command should result in no output and return value of 0.
+ 
+ [Regression Potential]
+ 
+  * This is an extremely low risk change since it only touches regression
+testing code that is not user-facing.
+ 
+ [Other]
+ 
+  * Fixed in upstream lp:apparmor tree:
+ 
+https://bazaar.launchpad.net/~apparmor-
+ dev/apparmor/master/revision/3558
+ 
+ == Original description ==
+ 
  The regression tests are currently hard coded to the semantics of mmap
  in binfmt_elf
  
  With the recent upstream commit 9f834ec18defc369d73ccf9e87a2790bfa05bf46
  the cred used for the mmap changed resulting in test failures. The tests
  have been patched for this change but it results in the test breaking
  for everyone using upstream releases against pre 4.8 kernels.

** Also affects: apparmor (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: apparmor (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** Changed in: apparmor (Ubuntu Yakkety)
   Status: New => Won't Fix

** Changed in: apparmor (Ubuntu Xenial)
   Status: New => In Progress

** Changed in: apparmor (Ubuntu Xenial)
   Importance: Undecided => Low

** Changed in: apparmor (Ubuntu Xenial)
 Assignee: (unassigned) => Tyler Hicks (tyhicks)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1630069

Title:
  Regression tests can not detect binfmt_elf mmpa semantic change

To manage notifications about this bug go to:
https://bugs.launchpad.net/apparmor/+bug/1630069/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1625569] Re: package squid 3.5.12-1ubuntu7.2 failed to install%Fupgrade: subprocess installed post-installation script returned error exit status 1

2016-10-06 Thread Graham Strong
OK. Now back to where I was pre 16.04.1 installs.

For my Firewall/caching server, replaced a failing HDD and installed
16.04.1. All OK.

For my File server, that was an interesting exercise. Finally found the
problem: there is a little parameter ( vt-handoff=7 ) on the grub file.
Removing this during a boot, meant that boot went through to completion.
At the moment the semi-permanent solution is to delete quiet splash from
grub in order to stop the presence of vt-handoff. Will look at changing
10_linux script so that I can return to suppression of boot verbiage,
without having the boot halting before boot completion. *Note:* most of the
Internet hits about this problem where related to a desktop install and the
need to do something with the nVidia drivers.

Now I was able to check my File server backup files to see if it was me or
Squid naming everything with "Squid3". I have the original Squid install
conf file (pre 16.04.1); its definitely been Squid that named the various
files with "Squid3" and not just "Squid"

Ideally, Squid should have started with "Squid" as its file naming
convention and then there would have been no problem. Since it didn't, I
would have thought that the onus was on the install procedures to take into
account, a change in the file naming convention.

On 30 September 2016 at 20:42, ChristianEhrhardt <1625...@bugs.launchpad.net
> wrote:

> "I'm currently running in it in recovery mode"
>
> => Uh, good luck recovering!
>
> According to your former response I'll set the bug to incomplete for now.
> If my suggestions won't help to fix the issue for you after recovering
> please reopen and share a bit more about the config/setup that you use to
> cause the issue.
>
> Given what you said (no "very" custom conf for squid used) I'd consider
> purging the old package, removing all traces/dirs that you might have
> made and install a fresh one. That works for me giving me a working
> squid and I hope it does so for you as well.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1625569
>
> Title:
>   package squid 3.5.12-1ubuntu7.2 failed to install%Fupgrade: subprocess
>   installed post-installation script returned error exit status 1
>
> Status in squid3 package in Ubuntu:
>   Incomplete
>
> Bug description:
>   First-time user of this facility. I'm just following the instructions
>   generated by the do-release-upgrade process.
>
>   ProblemType: Package
>   DistroRelease: Ubuntu 16.04
>   Package: squid 3.5.12-1ubuntu7.2
>   ProcVersionSignature: Ubuntu 3.13.0-95.142-generic 3.13.11-ckt39
>   Uname: Linux 3.13.0-95-generic i686
>   ApportVersion: 2.14.1-0ubuntu3.21
>   Architecture: i386
>   Date: Tue Sep 20 22:25:53 2016
>   DuplicateSignature: package:squid:3.5.12-1ubuntu7.2:subprocess
> installed post-installation script returned error exit status 1
>   ErrorMessage: subprocess installed post-installation script returned
> error exit status 1
>   InstallationDate: Installed on 2014-11-24 (666 days ago)
>   InstallationMedia: Ubuntu-Server 14.04.1 LTS "Trusty Tahr" - Release
> i386 (20140722.3)
>   RelatedPackageVersions:
>dpkg 1.18.4ubuntu1.1
>apt  1.2.12~ubuntu16.04.1
>   SourcePackage: squid3
>   Title: package squid 3.5.12-1ubuntu7.2 failed to install/upgrade:
> subprocess installed post-installation script returned error exit status 1
>   UpgradeStatus: Upgraded to xenial on 2016-09-20 (0 days ago)
>   mtime.conffile..etc.squid.squid.conf: 2014-12-13T17:14:53.262193
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/
> 1625569/+subscriptions
>

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1625569

Title:
  package squid 3.5.12-1ubuntu7.2 failed to install%Fupgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/1625569/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631194] Re: FTBFS due to changed build dependencies (texlive-generic-extra)

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package php-guzzlehttp-ringphp -
1.1.0-2ubuntu2

---
php-guzzlehttp-ringphp (1.1.0-2ubuntu2) yakkety; urgency=medium

  * d/control: add explicit b-d on texlive-generic-extra for iftex.sty.
LP: #1631194.

 -- Nishanth Aravamudan   Thu, 06 Oct
2016 16:04:21 -0700

** Changed in: php-guzzlehttp-ringphp (Ubuntu)
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631194

Title:
  FTBFS due to changed build dependencies (texlive-generic-extra)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php-guzzlehttp-ringphp/+bug/1631194/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631217] Status changed to Confirmed

2016-10-06 Thread Brad Figg
This change was made by a bot.

** Changed in: linux (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631217

Title:
  wlp1s0: failed to remove key (0, c8:d7:19:22:21:ea) from hardware (-5)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1631217/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1576797] Re: Wine package in the Wine Team PPA is outdated

2016-10-06 Thread AsciiWolf
** This bug is no longer a duplicate of bug 1485481
   Winetricks package in the ppa:ubuntu-wine/ppa is outdated

** Summary changed:

- Wine package in the Wine Team PPA is outdated
+ Wine package in the ppa:ubuntu-wine/ppa is outdated

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1576797

Title:
  Wine package in the ppa:ubuntu-wine/ppa is outdated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-wine-ppa/+bug/1576797/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631218] [NEW] seg faults in sqlite3 program

2016-10-06 Thread Kevin O'Gorman
Public bug reported:

A small Python program that uses sqlite3 frequently gives me
segmentation faults, but I'm not sure it's consistent.  Thus I'm a bit
baffled about what to include, or how to help narrow down the problem.
The inputs and the database are both quite large.  The core file is
large enough at 12 MB, though I'll xz it for transport.

However, I'll try to attach the core file and the program ( which is
pretty simple ).  I'm hoping the core file gives you enough of a clue
right off.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: libpython3.5-stdlib 3.5.2-2~16.01
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: XFCE
Date: Thu Oct  6 17:40:55 2016
InstallationDate: Installed on 2016-08-08 (59 days ago)
InstallationMedia: Xubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
SourcePackage: python3.5
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: python3.5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

** Attachment added: "xz'd core file"
   https://bugs.launchpad.net/bugs/1631218/+attachment/4756379/+files/core.xz

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631218

Title:
  seg faults in sqlite3 program

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.5/+bug/1631218/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631218] Re: seg faults in sqlite3 program

2016-10-06 Thread Kevin O'Gorman
here's the program it was running.

Here's the database schema
CREATE TABLE base64 (
b64char CHAR NOT NULL PRIMARY KEY,
b64val  INTEGER);
CREATE TABLE pos (
pnum INTEGER PRIMARY KEY AUTOINCREMENT,
ppos CHAR(64) NOT NULL,
pcensus INTEGER NOT NULL,
pscore INTEGER,
pstate CHAR DEFAULT "N" NOT NULL,
pmin INTEGER DEFAULT -99 NOT NULL,
pmax INTEGER DEFAULT 99 NOT NULL,
pmain CHAR(64));
CREATE UNIQUE INDEX pipos ON pos (ppos);
CREATE TABLE move (
mfrom INTEGER NOT NULL,
mto   INTEGER NOT NULL,
mtype CHAR NOT NULL,
mcell INTEGER NOT NULL,
mvalue INTEGER,
ma INTEGER DEFAULT -99,
mb INTEGER DEFAULT 99,
PRIMARY KEY (mfrom, mto, mcell));
CREATE UNIQUE INDEX mrev ON move (mto, mfrom, mcell);
CREATE TABLE expanded (
census INTEGER NOT NULL,
number INTEGER NOT NULL,
pos CHAR(64),
PRIMARY KEY (census, number));
CREATE INDEX exin ON expanded (number);
CREATE INDEX exis ON expanded (pos);


** Attachment added: "eround.py"
   
https://bugs.launchpad.net/ubuntu/+source/python3.5/+bug/1631218/+attachment/4756383/+files/eround.py

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631218

Title:
  seg faults in sqlite3 program

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.5/+bug/1631218/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631175] Re: Xfce Power Manager turns screen back on after it turns off - on a netbook with Lubuntu

2016-10-06 Thread John B.
This change should've been made awhile ago. I was typing in the package
name wrong - That's why I couldn't put in the package. Thanks!

** Package changed: ubuntu => xfce4-power-manager (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631175

Title:
  Xfce Power Manager turns screen back on after it turns off - on a
  netbook with Lubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-power-manager/+bug/1631175/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631190] Re: FTBFS due to passing non-variable by reference

2016-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package php-arc - 2.2.5-1ubuntu2

---
php-arc (2.2.5-1ubuntu2) yakkety; urgency=medium

  * debian/patches/pass_variable_by_reference.patch: PHP7 is strict
about passing by reference.  Closes LP: #1631190.

 -- Nishanth Aravamudan   Thu, 06 Oct
2016 15:53:11 -0700

** Changed in: php-arc (Ubuntu)
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631190

Title:
  FTBFS due to passing non-variable by reference

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php-arc/+bug/1631190/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1485481] Re: Winetricks and wine packages in the ppa:ubuntu-wine/ppa are outdated

2016-10-06 Thread Qwerty Chouskie
Please create a separate bug report.

** Description changed:

  After
     sudo apt-get install wine1.7
  winetricks --version is still 20140302
  New version is: 20150706
  (Similar bad result for wine1.8)
  Please include new version from 
https://github.com/Winetricks/winetricks/tags, e.g. 
https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
  
  Workaround: https://forum.winehq.org/viewtopic.php?p=101593#p101593
  See also:   https://forum.winehq.org/viewtopic.php?f=8=25080
- 
- The Wine packages itself are also outdated.

** Summary changed:

- Winetricks and wine packages in the ppa:ubuntu-wine/ppa are outdated
+ Winetricks package in the ppa:ubuntu-wine/ppa is outdated

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1485481

Title:
  Winetricks package in the ppa:ubuntu-wine/ppa is outdated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-wine-ppa/+bug/1485481/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1550186] Re: First entry of boot-menu "Try UbuntuStudio without installing" do not get translated into the chosen language

2016-10-06 Thread Ubuntu Foundations Team Bug Bot
The attachment "gfxboot-theme-ubuntu_UbuntuStudioTranslation.diff" seems
to be a patch.  If it isn't, please remove the "patch" flag from the
attachment, remove the "patch" tag, and if you are a member of the
~ubuntu-reviewers, unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issues please contact him.]

** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1550186

Title:
  First entry of boot-menu "Try UbuntuStudio without installing" do not
  get translated into the chosen language

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gfxboot-theme-ubuntu/+bug/1550186/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1629661] Re: Hissing sound in headphones

2016-10-06 Thread LGB [Gábor Lénárt]
$ uname -a
Linux oxygene 4.8.0-040800-generic #201610022031 SMP Mon Oct 3 00:32:57 UTC 
2016 x86_64 x86_64 x86_64 GNU/Linux

The really same. Moreover, this hissing sound can be heard with BIOS/etc
too, without any OS, it's even more louder then.

The issue started with this machine, I didn't have it with previous
ubuntu versions ...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1629661

Title:
  Hissing sound in headphones

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1629661/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1631175] Re: Xfce Power Manager turns screen back on after it turns off - on a netbook with Lubuntu

2016-10-06 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1631175/+editstatus and add the
package name in the text box next to the word Package.

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: bot-comment

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1631175

Title:
  Xfce Power Manager turns screen back on after it turns off - on a
  netbook with Lubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1631175/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


  1   2   3   4   5   6   7   8   >