[Bug 1265970] [NEW] juju binary is not stripped

2014-01-03 Thread Dimitri John Ledkov
Public bug reported:

$ file /usr/lib/juju-1.16.5/bin/juju
/usr/lib/juju-1.16.5/bin/juju: ELF 64-bit LSB  executable, x86-64, version 1 
(SYSV), dynamically linked (uses shared libs), not stripped

Please strip binaries as per Ubuntu Policy.

The size of the binary goes down from 30MB to 20MB.

** Affects: juju-core (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju-core in Ubuntu.
https://bugs.launchpad.net/bugs/1265970

Title:
  juju binary is not stripped

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/juju-core/+bug/1265970/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1009393] Re: Problems with /etc/nbd-server/allow

2014-01-03 Thread Launchpad Bug Tracker
** Branch linked: lp:debian/nbd

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nbd in Ubuntu.
https://bugs.launchpad.net/bugs/1009393

Title:
  Problems with /etc/nbd-server/allow

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1021271] Re: KVM "enabling virtualization on CPU0 failed"

2014-01-03 Thread Christopher M. Penalver
Jason Ashworth, this bug report is being closed due to your last comment
https://bugs.launchpad.net/ubuntu/+source/qemu-
kvm/+bug/1021271/comments/27 regarding you no longer have access to the
machine. For future reference you can manage the status of your own bugs
by clicking on the current status in the yellow line and then choosing a
new status in the revealed drop down box. You can learn more about bug
statuses at https://wiki.ubuntu.com/Bugs/Status. Thank you again for
taking the time to report this bug and helping to make Ubuntu better.
Please submit any future bugs you may find.

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/1021271

Title:
  KVM "enabling virtualization on CPU0 failed"

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1021271] Re: KVM "enabling virtualization on CPU0 failed"

2014-01-03 Thread Jason Ashworth
Hi Christopher,
Unfortunately, I went back to Debian (which didn't have the bug) on this 
hardware, but now I no longer have access to this machine, so I can't do any 
further testing.
Unless someone else watching this thread can reproduce the problem, there's no 
further testing/troubleshooting that can be done.
Many thanks.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/1021271

Title:
  KVM "enabling virtualization on CPU0 failed"

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1264338] Re: could not route the host for container

2014-01-03 Thread Serge Hallyn
Note that switching to python3 and using the lxc api directly would be
a far better way to automate lxc usage.

#/usr/bin/python3
import lxc
c=lxc.Container("test")
c.create("ubuntu-cloud")
c.start(daemonize=True)
c.wait("RUNNING")
ips=c.get_ips()
print(ips[0])
c.stop()
c.destroy()

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lxc in Ubuntu.
https://bugs.launchpad.net/bugs/1264338

Title:
  could not route the host for container

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1165962] Re: unit test fails with the latest commit

2014-01-03 Thread Mark McClain
This is not the correct bug to file this under.  I have created a new
bug to track this new issue: https://bugs.launchpad.net/python-
neutronclient/+bug/1265926

** Changed in: python-neutronclient
   Status: In Progress => Fix Released

** Changed in: python-neutronclient
 Assignee: Amir Sadoughi (amir-sadoughi) => Alex Xu (xuhj)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-quantumclient in Ubuntu.
https://bugs.launchpad.net/bugs/1165962

Title:
  unit test fails with the latest commit

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-neutronclient/+bug/1165962/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1264338] Re: could not route the host for container

2014-01-03 Thread Serge Hallyn
Here is a version of your first script which does work.  There is no
indication at host level of when the container has managed to get an ip
address, so best would be to replace my time.sleep(5) with a loop which
repeats until the reported ip is not empty.

Near as I can tell there is no bug here, so marking this invalid.
Please feel free to ask in #lxcontainers or in the lxc-users mailing
list if you have more questions.

#!/usr/bin/python

import commands
from fabric.api import settings
from fabric.operations import run
import sys
import time

def main():
commands.getstatusoutput("lxc-stop -n test")
commands.getstatusoutput("lxc-destroy -n test")
result = commands.getstatusoutput("lxc-create -t ubuntu -n test")
if result[0] != 0:
sys.exit(1)
result = commands.getstatusoutput("lxc-start -d -n test")
if result[0] != 0:
sys.exit(1)
commands.getstatusoutput("lxc-wait -n test -s RUNNING")

time.sleep(5)
result = commands.getstatusoutput("lxc-info -n test -i -H")
ip = result[1]
print ip

with settings(host_string=ip,user="ubuntu",password="ubuntu"):
print run("whoami",shell=True)

if __name__ == "__main__":
main()


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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lxc in Ubuntu.
https://bugs.launchpad.net/bugs/1264338

Title:
  could not route the host for container

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1262788] Re: Meta bug for tracking Openstack 2013.2.1 Stable Update

2014-01-03 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/saucy-proposed/heat

** Branch linked: lp:ubuntu/saucy-proposed/neutron

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1262788

Title:
  Meta bug for tracking Openstack 2013.2.1 Stable Update

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1262788] Re: Meta bug for tracking Openstack 2013.2.1 Stable Update

2014-01-03 Thread Brian Murray
Hello Adam, or anyone else affected,

Accepted neutron into saucy-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/neutron/1:2013.2.1-0ubuntu1 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: neutron (Ubuntu Saucy)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1262788

Title:
  Meta bug for tracking Openstack 2013.2.1 Stable Update

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1262788] Re: Meta bug for tracking Openstack 2013.2.1 Stable Update

2014-01-03 Thread Brian Murray
Hello Adam, or anyone else affected,

Accepted nova into saucy-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/nova/1:2013.2.1-0ubuntu1 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: nova (Ubuntu Saucy)
   Status: Confirmed => Fix Committed

** Changed in: heat (Ubuntu Saucy)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1262788

Title:
  Meta bug for tracking Openstack 2013.2.1 Stable Update

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1262788] Please test proposed package

2014-01-03 Thread Brian Murray
Hello Adam, or anyone else affected,

Accepted heat into saucy-proposed. The package will build now and be
available at http://launchpad.net/ubuntu/+source/heat/2013.2.1-0ubuntu1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1262788

Title:
  Meta bug for tracking Openstack 2013.2.1 Stable Update

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1262788] Re: Meta bug for tracking Openstack 2013.2.1 Stable Update

2014-01-03 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/saucy-proposed/ceilometer

** Branch linked: lp:ubuntu/saucy-proposed/horizon

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1262788

Title:
  Meta bug for tracking Openstack 2013.2.1 Stable Update

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1262788] Re: Meta bug for tracking Openstack 2013.2.1 Stable Update

2014-01-03 Thread Brian Murray
Hello Adam, or anyone else affected,

Accepted keystone into saucy-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/keystone/1:2013.2.1-0ubuntu1 in a
few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: keystone (Ubuntu Saucy)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1262788

Title:
  Meta bug for tracking Openstack 2013.2.1 Stable Update

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265921] [NEW] bacula-traymonitor fails to launch

2014-01-03 Thread Chris Weiss
Public bug reported:

after creating a config file and verifying with "bacula-traymonitor -t",
launching bacula-traymonitor produces no GUI.  I'm guessing it goes to
the "tray", but Unity doens't have a tray.

Ideally it would go to the indicator area like indicator-multiload does.
but an acceptable workaround would be to just display the GUI and then
exit on close, like a normal application.  an optional flag to do this
would be fine if detecting a tray is unreliable..

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: bacula-traymonitor 5.2.6+dfsg-9ubuntu1
ProcVersionSignature: Ubuntu 3.11.0-14.21-generic 3.11.7
Uname: Linux 3.11.0-14-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.12.5-0ubuntu2.2
Architecture: amd64
Date: Fri Jan  3 15:21:38 2014
InstallationDate: Installed on 2010-03-31 (1374 days ago)
InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Beta amd64 (20100318)
MarkForUpload: True
SourcePackage: bacula
UpgradeStatus: Upgraded to saucy on 2013-11-14 (50 days ago)

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


** Tags: amd64 apport-bug saucy

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula in Ubuntu.
https://bugs.launchpad.net/bugs/1265921

Title:
  bacula-traymonitor fails to launch

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1262788] Re: Meta bug for tracking Openstack 2013.2.1 Stable Update

2014-01-03 Thread Brian Murray
Hello Adam, or anyone else affected,

Accepted ceilometer into saucy-proposed. The package will build now and
be available at
http://launchpad.net/ubuntu/+source/ceilometer/2013.2.1-0ubuntu2 in a
few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: ceilometer (Ubuntu Saucy)
   Status: Confirmed => Fix Committed

** Tags added: verification-needed

** Changed in: cinder (Ubuntu Saucy)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1262788

Title:
  Meta bug for tracking Openstack 2013.2.1 Stable Update

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1262788] Please test proposed package

2014-01-03 Thread Brian Murray
Hello Adam, or anyone else affected,

Accepted glance into saucy-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/glance/1:2013.2.1-0ubuntu1 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: horizon (Ubuntu Saucy)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1262788

Title:
  Meta bug for tracking Openstack 2013.2.1 Stable Update

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1262788] Please test proposed package

2014-01-03 Thread Brian Murray
Hello Adam, or anyone else affected,

Accepted horizon into saucy-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/horizon/1:2013.2.1-0ubuntu1 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1262788

Title:
  Meta bug for tracking Openstack 2013.2.1 Stable Update

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1262788] Please test proposed package

2014-01-03 Thread Brian Murray
Hello Adam, or anyone else affected,

Accepted cinder into saucy-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/cinder/1:2013.2.1-0ubuntu1 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: glance (Ubuntu Saucy)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1262788

Title:
  Meta bug for tracking Openstack 2013.2.1 Stable Update

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1165962] Re: unit test fails with the latest commit

2014-01-03 Thread OpenStack Infra
Fix proposed to branch: master
Review: https://review.openstack.org/64910

** Changed in: python-neutronclient
   Status: New => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-quantumclient in Ubuntu.
https://bugs.launchpad.net/bugs/1165962

Title:
  unit test fails with the latest commit

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-neutronclient/+bug/1165962/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1165962] Re: unit test fails with the latest commit

2014-01-03 Thread Amir Sadoughi
With the latest cliff released on pypi today, 1.5.2, the code committed
to fix this previous bug causes unit tests to fail:

Traceback (most recent call last):
...
File "neutronclient/neutron/v2_0/__init__.py", line 345, in __init__
self.formatters['table'] = TableFormater()
TypeError: 'ExtensionManager' object does not support item assignment

See http://logs.openstack.org/30/62130/4/check/gate-python-
neutronclient-python27/6b6fc56/console.html for more info.

** Changed in: python-neutronclient
   Status: Fix Committed => New

** Changed in: python-neutronclient
 Assignee: Alex Xu (xuhj) => Amir Sadoughi (amir-sadoughi)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-quantumclient in Ubuntu.
https://bugs.launchpad.net/bugs/1165962

Title:
  unit test fails with the latest commit

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-neutronclient/+bug/1165962/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1065589] Re: "initctl list" shows 11974 instances of network-interface-security after two days of uptime

2014-01-03 Thread Christopher M. Penalver
Dan Kegel, would utilizing the Raring enablement stack in Precise work
for you as per https://wiki.ubuntu.com/Kernel/LTSEnablementStack ?

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to lxc in Ubuntu.
https://bugs.launchpad.net/bugs/1065589

Title:
  "initctl list" shows 11974 instances of network-interface-security
  after two days of uptime

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1004606] Re: virsh create-snapshot fails to create external snapshot (blockdev-snapshot-sync fails in json monitor)

2014-01-03 Thread Serge Hallyn
I believe this is fixed at least in trusty (have not tried elsewhere).
At least I can create external snapshots of a stopped domain, then start
the domain.  (The snapshot image is listed in
/etc/apparmor.d/libvirt/libvirt-$uuid.files).

I will mark this fix committed, if it is still broken for (in trusty)
you then please reply.

I will mark it as affecting precise.  If there are other releases where
it is still valid please let me know.

** No longer affects: qemu-kvm (Ubuntu)

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

** Changed in: libvirt (Ubuntu)
   Status: Confirmed => Fix Released

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

** Changed in: libvirt (Ubuntu Precise)
   Importance: Undecided => Medium

** Changed in: libvirt (Ubuntu Precise)
   Status: New => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/1004606

Title:
  virsh create-snapshot fails to create external snapshot (blockdev-
  snapshot-sync fails in json monitor)

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265109] Re: Kubuntu 13.10 upgrade Samba4

2014-01-03 Thread Brian Murray
** Package changed: ubuntu-release-upgrader (Ubuntu) => samba4 (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba4 in Ubuntu.
https://bugs.launchpad.net/bugs/1265109

Title:
  Kubuntu 13.10 upgrade Samba4

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1220950] Re: [MIR] open-vm-tools

2014-01-03 Thread Michael Terry
I'm still curious about a statement of maintenance intent for
libdumbnet.  Being orphaned in Debian is troubling and implies Ubuntu
would be doing more heavy lifting than usual for it.

** Changed in: zerofree (Ubuntu)
   Status: Incomplete => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to open-vm-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1220950

Title:
  [MIR] open-vm-tools

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265877] Re: nova fails to launch i386 images

2014-01-03 Thread Jonathan Davies
** Also affects: cloud-archive
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1265877

Title:
  nova fails to launch i386 images

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265877] Re: nova fails to launch i386 images

2014-01-03 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1265877

Title:
  nova fails to launch i386 images

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1089105] Re: [Lenovo V480c Notebook]: Trackpad doesn't work after closing and opening the lid

2014-01-03 Thread Christopher M. Penalver
** Tags removed: bios-outdated-1.16
** Tags added: latest-bios-1.16

** Description changed:

  Problem:
  System does not resume from suspend properly. The issue is intermitent. 
However most of the time the system will exhibit three problematic symptoms:
  
- 1.) System will fail to resume and start x altogether
- 2.) System will resume with applications in frozen state and unity 
unresponsive to mouse-clicks.
- 3.) System will resume however trackpad will be disabled.
- 
+ 1.) System will fail to resume and start x altogether
+ 2.) System will resume with applications in frozen state and unity 
unresponsive to mouse-clicks.
+ 3.) System will resume however trackpad will be disabled.
  
  kernel tested: 3.2.0-29-generic #46-Ubuntu
  Release: Ubuntu 12.04.1
  
  Can reproduce? Yes
  
  Steps:
  1.) Close laptop lid
  2.) wait approx 5 minutes
  3.) open laptop lid for system to resume.
  
  Expected result:
  System is able to suspend state and applications and resume when lid is 
opened in a proper and timely fashion.
  
  Command to recreate:
  fwts_test  -s s3 --s3-sleep-delay=30 --s3-device-check | tee 
suspend_single_times.log
  
+ WORKAROUND: Log into GNOME, and manually enable the touchpad through:
+ dconf-editor->/org/gnome/settings-daemon/peripherals/touchpad/touchpad-enabled
+ 
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: linux-image-3.2.0-29-generic 3.2.0-29.46
  ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
  Uname: Linux 3.2.0-29-generic x86_64
  NonfreeKernelModules: wl
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 2.0.1-0ubuntu12
  Architecture: amd64
  ArecordDevices:
-   List of CAPTURE Hardware Devices 
-  card 0: PCH [HDA Intel PCH], device 0: ALC269VC Analog [ALC269VC Analog]
-Subdevices: 1/1
-Subdevice #0: subdevice #0
+   List of CAPTURE Hardware Devices 
+  card 0: PCH [HDA Intel PCH], device 0: ALC269VC Analog [ALC269VC Analog]
+    Subdevices: 1/1
+    Subdevice #0: subdevice #0
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC0:  ubuntu 1579 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  ubuntu 1579 F pulseaudio
  CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 
not found.
  Card0.Amixer.info:
-  Card hw:0 'PCH'/'HDA Intel PCH at 0x9b61 irq 46'
-Mixer name : 'Intel PantherPoint HDMI'
-Components : 'HDA:10ec0269,17aa500f,00100202 
HDA:80862806,80860101,0010'
-Controls  : 26
-Simple ctrls  : 12
+  Card hw:0 'PCH'/'HDA Intel PCH at 0x9b61 irq 46'
+    Mixer name : 'Intel PantherPoint HDMI'
+    Components : 'HDA:10ec0269,17aa500f,00100202 
HDA:80862806,80860101,0010'
+    Controls  : 26
+    Simple ctrls  : 12
  Card29.Amixer.info:
-  Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
unknown'
-Mixer name : 'ThinkPad EC (unknown)'
-Components : ''
-Controls  : 1
-Simple ctrls  : 1
+  Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
unknown'
+    Mixer name : 'ThinkPad EC (unknown)'
+    Components : ''
+    Controls  : 1
+    Simple ctrls  : 1
  Card29.Amixer.values:
-  Simple mixer control 'Console',0
-Capabilities: pswitch pswitch-joined penum
-Playback channels: Mono
-Mono: Playback [on]
+  Simple mixer control 'Console',0
+    Capabilities: pswitch pswitch-joined penum
+    Playback channels: Mono
+    Mono: Playback [on]
  Date: Tue Dec 11 15:38:03 2012
  HibernationDevice: RESUME=UUID=98d6d8c6-aa75-4069-9714-4f972d11aa61
  InstallationMedia: Ubuntu 12.04.1 LTS "Precise Pangolin" - Release amd64 
(20120823.1)
  MachineType: LENOVO 814TF01
  ProcEnviron:
-  TERM=xterm
-  PATH=(custom, no user)
-  LANG=en_US.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
  ProcFB:
-  0 inteldrmfb
-  1 nouveaufb
+  0 inteldrmfb
+  1 nouveaufb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-29-generic 
root=UUID=c1701df9-c6b6-4425-b6ec-5fede7c00ad6 ro quiet splash initcall_debug 
vt.handoff=7
  RelatedPackageVersions:
-  linux-restricted-modules-3.2.0-29-generic N/A
-  linux-backports-modules-3.2.0-29-generic  N/A
-  linux-firmware1.79
+  linux-restricted-modules-3.2.0-29-generic N/A
+  linux-backports-modules-3.2.0-29-generic  N/A
+  linux-firmware1.79
  SourcePackage: linux
  StagingDrivers: mei
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/29/2012
  dmi.bios.vendor: LENOVO
  dmi.bios.version: H5ET26WW (0.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 814TF01
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvrH5ET26WW(0.26)

[Bug 1265109] [NEW] Kubuntu 13.10 upgrade Samba4

2014-01-03 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

hello friends, i am do upgrade in my kubuntu 13.04 for 13.10, more dont install 
the samba4.
sorry for my english, i am Brazilian.
Thankyou.

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

-- 
Kubuntu 13.10 upgrade Samba4
https://bugs.launchpad.net/bugs/1265109
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to samba4 in Ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1264006] Re: [13.04->13.10]Upgrade mentions errors when post-configuring samba4 package

2014-01-03 Thread Brian Murray
** Package changed: ubuntu-release-upgrader (Ubuntu) => samba4 (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba4 in Ubuntu.
https://bugs.launchpad.net/bugs/1264006

Title:
  [13.04->13.10]Upgrade mentions errors when post-configuring samba4
  package

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1264006] [NEW] [13.04->13.10]Upgrade mentions errors when post-configuring samba4 package

2014-01-03 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

As title.

architecture: x86 32-bit(i386)

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

-- 
[13.04->13.10]Upgrade mentions errors when post-configuring samba4 package
https://bugs.launchpad.net/bugs/1264006
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to samba4 in Ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265877] Re: nova fails to launch i386 images

2014-01-03 Thread LaMont Jones
We are seeing this in both: nova-scheduler=1:2013.1.4-0ubuntu1~cloud0
and nova-scheduler=1:2013.2-0ubuntu1~cloud0

lamont

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1265877

Title:
  nova fails to launch i386 images

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265877] [NEW] nova fails to launch i386 images

2014-01-03 Thread LaMont Jones
Public bug reported:

in nova.conf:
compute_scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler
scheduler_default_filters=RetryFilter,AvailabilityZoneFilter,DiskFilter,CoreFilter,RamFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter

The openstack deployment has several compute nodes, all of them running
64-bit installs.  The above config results in:

vm_type:all does not support requested instance_properties host_passes
/usr/lib/python2.7/dist-
packages/nova/scheduler/filters/image_props_filter.py:83

And error-state for all attempts to launch a 32-bit image.

The same applies with:
compute_scheduler_driver=nova.scheduler.chance.ChanceScheduler

Dropping ImagePropertiesFilter from the filters list "fixes" the issue,
but clearly there is no reason that the 64-bit box cannot run a 32-bit
image in a vm.

lamont

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/1265877

Title:
  nova fails to launch i386 images

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1220950] Re: [MIR] open-vm-tools

2014-01-03 Thread Ben Howard
Added Canonical Cloudware team bug subscriptions for Zerofree and
libdumnet.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to open-vm-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1220950

Title:
  [MIR] open-vm-tools

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265541] Re: Update to upstream snapshot of 2.4.1

2014-01-03 Thread Alan Alberghini
Dear Robie Basak,

thank you for your answer. 
I will try to get in touch with the Debian package maintainer then.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libfcgi in Ubuntu.
https://bugs.launchpad.net/bugs/1265541

Title:
  Update to upstream snapshot of 2.4.1

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265660] Re: package apache2 2.4.6-2ubuntu4 failed to install/upgrade

2014-01-03 Thread Robie Basak
>From log:

Setting up python3 (3.3.2-17ubuntu1) ...
running python rtupdate hooks for python3.3...
dpkg-query: package 'rhythmbox-plugins' is not installed
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
Traceback (most recent call last):
  File "/usr/bin/py3clean", line 200, in 
main()
  File "/usr/bin/py3clean", line 186, in main
pfiles = set(dpf.from_package(options.package))
  File "/usr/share/python3/debpython/files.py", line 53, in from_package
raise Exception("cannot get content of %s" % package_name)
Exception: cannot get content of rhythmbox-plugins
error running python rtupdate hook rhythmbox-plugins
dpkg: error processing python3 (--configure):
 subprocess installed post-installation script returned error exit status 4

Looks like the rhythmbox is closer to the mark.

** Package changed: apache2 (Ubuntu) => rhythmbox (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in Ubuntu.
https://bugs.launchpad.net/bugs/1265660

Title:
  package apache2 2.4.6-2ubuntu4 failed to install/upgrade

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265541] Re: Package for version 2.4.1

2014-01-03 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

http://www.fastcgi.com/dist/ suggests to me that upstream don't consider
2.4.1 stable yet. In Ubuntu, we generally follow what Debian does, and
Debian is also on 2.4.0. So the answer to your question is that there
are no current plans to update. If you'd like to see this package
updated, the easiest route would be to ask the Debian maintainers to
update and see what they say.

** Changed in: libfcgi (Ubuntu)
   Importance: Undecided => Wishlist

** Summary changed:

- Package for version 2.4.1
+ Update to upstream snapshot of 2.4.1

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libfcgi in Ubuntu.
https://bugs.launchpad.net/bugs/1265541

Title:
  Update to upstream snapshot of 2.4.1

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1251939] config*.m4 search path

2014-01-03 Thread Robie Basak
Hi Stefan,

Remember this bug?
https://issues.apache.org/bugzilla/show_bug.cgi?id=55787
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1251939
http://svn.apache.org/viewvc/httpd/httpd/trunk/build/config-stubs?view=log&pathrev=1542615

I really appreciated your fix for that.

I'm merging apache2 2.4.7-1 from Debian into Ubuntu, but I can't find
the fix in Debian for this issue. The upstream fix doesn't seem to be
present, and I tried dropping a config*.m4 file into .pc/ and the
"configfiles=" line picks it up.

So is Debian 2.4.7-1 still affected by this issue, or has there been
some other fix of which I'm not aware? I'm not sure whether this is a
bug in Debian, or if I'm missing something.

I'd appreciate your thoughts.

Thanks,

Robie

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in Ubuntu.
https://bugs.launchpad.net/bugs/1251939

Title:
  Chroot fails with "Cannot chroot when not started as root" error

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1094278] Re: cu doesn't connect properly to a serial console

2014-01-03 Thread Michal Suchanek
There are two issues here:

cu randomly identifies the serial connection as dialin (nortscts) ot
dialout (rtscts). I don't care about that distinction being broken. I
fix that with the patch.

The other problem is 'line in use' which is caused by running cu as
root. The permission issues are discussed above. You need to add
yourself to whatever group cu is owned by and run as non-root user
and/or change the permissions to make the device nodes owned by whatever
is cu suid to.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to uucp in Ubuntu.
https://bugs.launchpad.net/bugs/1094278

Title:
  cu doesn't connect properly to a serial console

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1046275] Re: 0xb5affb40:Failed to change password of user (name = 'save') -> error = 31

2014-01-03 Thread JorSol
I have the same problem:

Jan  3 08:51:22 desktop lsassd[1263]: 0x7f00357fa700:Failed to change password 
of user (name = 'myuser') -> error = 31, symbol = ERROR_GEN_FAILURE, client pid 
= 4962
Jan  3 08:51:22 desktop lightdm: [module:pam_lsass]LsaPamUpdatePassword failed 
[login:myuser][error code: 31]
Jan  3 08:51:22 desktop lightdm: [module:pam_lsass]pam_sm_chauthtok failed 
[error code: 31]

Using likewise-open 6.1.0.406-0ubuntu5.1 on Ubuntu 12.04.3

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open in Ubuntu.
https://bugs.launchpad.net/bugs/1046275

Title:
  0xb5affb40:Failed to change password of user (name = 'save') -> error
  = 31

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/likewise-open/+bug/1046275/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265791] Re: package openvswitch-pki 1.4.3-0ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2014-01-03 Thread Apport retracing service
** Tags removed: need-duplicate-check

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvswitch in Ubuntu.
https://bugs.launchpad.net/bugs/1265791

Title:
  package openvswitch-pki 1.4.3-0ubuntu2.1 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/openvswitch/+bug/1265791/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265791] [NEW] package openvswitch-pki 1.4.3-0ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2014-01-03 Thread Barkha Dhamechai
Public bug reported:

was installing openvswitch controller when i got this error.

The command I used was: apt-get install openvswitch-controller

ProblemType: Package
DistroRelease: Ubuntu 12.10
Package: openvswitch-pki 1.4.3-0ubuntu2.1
ProcVersionSignature: Ubuntu 3.5.0-17.28-generic 3.5.5
Uname: Linux 3.5.0-17-generic i686
ApportVersion: 2.6.1-0ubuntu13
Architecture: i386
Date: Fri Jan  3 17:49:55 2014
DuplicateSignature: package:openvswitch-pki:1.4.3-0ubuntu2.1: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-01-02 (0 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release i386 (20121017.2)
MarkForUpload: True
PackageArchitecture: all
SourcePackage: openvswitch
Title: package openvswitch-pki 1.4.3-0ubuntu2.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-package i386 quantal

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvswitch in Ubuntu.
https://bugs.launchpad.net/bugs/1265791

Title:
  package openvswitch-pki 1.4.3-0ubuntu2.1 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/openvswitch/+bug/1265791/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265530] Re: Missing Reason-Phrase in HTTP response header for *standard* 3-digit status codes

2014-01-03 Thread Robie Basak
** Also affects: apache2 (Ubuntu Saucy)
   Importance: Undecided
   Status: New

** Changed in: apache2 (Ubuntu Saucy)
   Status: New => Triaged

** Changed in: apache2 (Ubuntu Saucy)
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in Ubuntu.
https://bugs.launchpad.net/bugs/1265530

Title:
  Missing Reason-Phrase in HTTP response header for *standard* 3-digit
  status codes

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1265758] [NEW] Sync alembic 0.6.2+ds-1 (main) from Debian unstable (main)

2014-01-03 Thread Thomas Bechtold
Public bug reported:

Please sync alembic 0.6.2+ds-1 (main) from Debian unstable (main)

Explanation of the Ubuntu delta and why it can be dropped:
  * New upstream release.
  * New upstream release.

This is just a new upstream release. There's no reason to not update the
ubuntu package.

Changelog entries since current trusty version 0.6.0+ds-0ubuntu1:

alembic (0.6.2+ds-1) unstable; urgency=low

  [ Jackson Doak ]
  * New upstream release (closes: #734021)
  * Incorporate NMU changes
  * debian/control: 
- Bump standards-version to 3.9.5
- Add X-Python-Version
  * Add doc-base

  [ Thomas Bechtold ]
  * Team upload.
  * debian/patches: Add 01disable_sphinx_changelog_ext.patch to disable Sphinx
changelog extension which is currently not packaged for Debian.
  * debian/control: Add python-mock to Build-Depends according to setup.py.
  * debian/rules: Add http_proxy='localhost' to disable internet access during
documentation build.
  * debian/alembic.1: Updated with help2man target from debian/rules.

 -- Thomas Bechtold   Fri, 03 Jan 2014 08:25:50
+0100

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to alembic in Ubuntu.
https://bugs.launchpad.net/bugs/1265758

Title:
  Sync alembic 0.6.2+ds-1 (main) from Debian unstable (main)

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1081489] Re: autofs package is missing the lookup_sss.so module(!); negating autofs-enabled sssd functionality (automount fails)

2014-01-03 Thread Dan Bishop
Thank you both!

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to autofs in Ubuntu.
https://bugs.launchpad.net/bugs/1081489

Title:
  autofs package is missing the lookup_sss.so module(!); negating
  autofs-enabled sssd functionality (automount fails)

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs