[Bug 1062314] Re: do_refresh_security_group_rules in nova.virt.firewall is very slow

2012-10-12 Thread Mark McLoughlin
** Changed in: nova/essex
Milestone: 2012.1.3 = None

-- 
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/1062314

Title:
  do_refresh_security_group_rules in nova.virt.firewall is very slow

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1062314/+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 990388] Re: acces denied samba printer shares after upgrade precise

2012-10-12 Thread rasos
Fix as described in askubuntu #7 worked for me. I copy it here for
reference with some adaptions, credits go to RobDavenport.

== Set up printer shared on a sambe network with authentication ==

Choose Add new printer in Printing, click open 'Network Printers',
select 'Windows Printer via SAMBA'

Click 'Browse' to browse for printer (it prompts for authentication
to access Windows server with printer)

or enter  'smb://sambadomain/servername/printername' e.g.
smb://uclv/printers.mycompany.at/a4-e105

Select 'Set authentication details now'

Enter details as 'domain\username' and password 
(if you click 'verify' now it will say printer is not accessible, but click 
Forward anyway.)

Select driver

Print test page

Just to be clear: I always could print from Ubuntu 11.10, but not from 12.04 
Desktop to printers served by a Windows server. 
If I rename a printer, I get again the authentication error. The above set up 
worked.

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

Title:
  acces denied samba printer shares after upgrade precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/990388/+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 1065883] [NEW] ceph rbd username and secret should be configured in nova-compute, not passed from nova-volume/cinder

2012-10-12 Thread James Page
Public bug reported:

I'm testing using ceph RADOS block devices to back nova volumes; however
I've hit an issue which limits its usefulness in environments where
cephx authentication is required.

Configuration is directly taken from http://ceph.com/docs/master/rbd
/rbd-openstack/#configuring-cinder-nova-volume.

The problem is as follows:

The rbd_user and rbd_secret_uuid must be configured in nova-volume to
ensure that when the nova-compute nodes attach volumes to instances,
they will use the libvirt stored secret.

However, the secret UUID when created on each of the compute nodes is
going to be different; and nova-compute will try to attach using the
secret provided from nova-volume - for which it has no knowledge.

I also want to configure nova-compute with a different username to nova-
volume/cinder to provide more granular access control to ceph.

I've worked around this using this patch/hack:

=== modified file 'nova/virt/libvirt/volume.py'
--- nova/virt/libvirt/volume.py 2012-08-27 15:37:18 +
+++ nova/virt/libvirt/volume.py 2012-10-12 08:37:38 +
@@ -88,9 +88,11 @@
 conf.serial = connection_info.get('serial')
 netdisk_properties = connection_info['data']
 if netdisk_properties.get('auth_enabled'):
-conf.auth_username = netdisk_properties['auth_username']
+conf.auth_username = FLAGS.rbd_user or \
+ netdisk_properties['auth_username']
 conf.auth_secret_type = netdisk_properties['secret_type']
-conf.auth_secret_uuid = netdisk_properties['secret_uuid']
+conf.auth_secret_uuid = FLAGS.rbd_secret_uuid or \
+netdisk_properties['secret_uuid']
 return conf

Which basically allows me to override the auth_username and
auth_secret_uuid through the nova-compute configuration file.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: nova-compute (not installed)
ProcVersionSignature: Ubuntu 3.5.0-17.27-generic 3.5.5
Uname: Linux 3.5.0-17-generic x86_64
ApportVersion: 2.6.1-0ubuntu2
Architecture: amd64
Date: Fri Oct 12 09:38:32 2012
SourcePackage: nova
UpgradeStatus: Upgraded to quantal on 2012-06-11 (122 days ago)

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


** Tags: amd64 apport-bug quantal running-unity

-- 
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/1065883

Title:
  ceph rbd username and secret should be configured in nova-compute, not
  passed from nova-volume/cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1065883/+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 967410] Re: Windows clients cannot connect to shared printers

2012-10-12 Thread rasos
This bug seems to be similar to # 990388. I found an easy workaround in
askubuntu (you need to set up your printers again on a precise desktop),
which I posted also here:
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/990388/comments/15

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

Title:
  Windows clients cannot connect to shared printers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/967410/+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 1065883] Re: ceph rbd username and secret should be configured in nova-compute, not passed from nova-volume/cinder

2012-10-12 Thread James Page
** Also affects: nova
   Importance: Undecided
   Status: New

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

** Also affects: cinder
   Importance: Undecided
   Status: New

** Description changed:

  I'm testing using ceph RADOS block devices to back nova volumes; however
  I've hit an issue which limits its usefulness in environments where
  cephx authentication is required.
  
  Configuration is directly taken from http://ceph.com/docs/master/rbd
- /rbd-openstack/#configuring-cinder-nova-volume.
+ /rbd-openstack/#configuring-cinder-nova-volume.  Note that nova-volume
+ and nova-compute are running on different hosts.
  
  The problem is as follows:
  
  The rbd_user and rbd_secret_uuid must be configured in nova-volume to
  ensure that when the nova-compute nodes attach volumes to instances,
  they will use the libvirt stored secret.
  
- However, the secret UUID when created on each of the compute nodes is
- going to be different; and nova-compute will try to attach using the
- secret provided from nova-volume - for which it has no knowledge.
+ However, the libvirt secret UUID when created on each of the compute
+ nodes is going to be different; and nova-compute will try to attach
+ using the secret provided from nova-volume - for which it has no
+ knowledge.
  
  I also want to configure nova-compute with a different username to nova-
  volume/cinder to provide more granular access control to ceph.
+ 
+ The user and secret_uuid should be configured in nova-compute; not
+ provided by nova-volume.
  
  I've worked around this using this patch/hack:
  
  === modified file 'nova/virt/libvirt/volume.py'
  --- nova/virt/libvirt/volume.py   2012-08-27 15:37:18 +
  +++ nova/virt/libvirt/volume.py   2012-10-12 08:37:38 +
  @@ -88,9 +88,11 @@
-  conf.serial = connection_info.get('serial')
-  netdisk_properties = connection_info['data']
-  if netdisk_properties.get('auth_enabled'):
+  conf.serial = connection_info.get('serial')
+  netdisk_properties = connection_info['data']
+  if netdisk_properties.get('auth_enabled'):
  -conf.auth_username = netdisk_properties['auth_username']
  +conf.auth_username = FLAGS.rbd_user or \
  + netdisk_properties['auth_username']
-  conf.auth_secret_type = netdisk_properties['secret_type']
+  conf.auth_secret_type = netdisk_properties['secret_type']
  -conf.auth_secret_uuid = netdisk_properties['secret_uuid']
  +conf.auth_secret_uuid = FLAGS.rbd_secret_uuid or \
  +netdisk_properties['secret_uuid']
-  return conf
+  return conf
  
  Which basically allows me to override the auth_username and
  auth_secret_uuid through the nova-compute configuration file.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: nova-compute (not installed)
  ProcVersionSignature: Ubuntu 3.5.0-17.27-generic 3.5.5
  Uname: Linux 3.5.0-17-generic x86_64
  ApportVersion: 2.6.1-0ubuntu2
  Architecture: amd64
  Date: Fri Oct 12 09:38:32 2012
  SourcePackage: nova
  UpgradeStatus: Upgraded to quantal on 2012-06-11 (122 days ago)

-- 
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/1065883

Title:
  ceph rbd username and secret should be configured in nova-compute, not
  passed from nova-volume/cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1065883/+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 1065901] [NEW] cinder-volume should Suggest ceph-common, not python-ceph

2012-10-12 Thread James Page
Public bug reported:

cinder-volume current Suggests: python-ceph, but all integration with
ceph is done using the rados and rbd tools, provided by ceph-common.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: cinder-volume (not installed)
ProcVersionSignature: Ubuntu 3.5.0-17.27-generic 3.5.5
Uname: Linux 3.5.0-17-generic x86_64
ApportVersion: 2.6.1-0ubuntu2
Architecture: amd64
Date: Fri Oct 12 10:37:04 2012
SourcePackage: cinder
UpgradeStatus: Upgraded to quantal on 2012-06-11 (122 days ago)

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


** Tags: amd64 apport-bug quantal running-unity

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

Title:
  cinder-volume should Suggest ceph-common, not python-ceph

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cinder/+bug/1065901/+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 1065901] Re: cinder-volume should Suggest ceph-common, not python-ceph

2012-10-12 Thread James Page
** Changed in: cinder (Ubuntu)
 Assignee: (unassigned) = James Page (james-page)

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

Title:
  cinder-volume should Suggest ceph-common, not python-ceph

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cinder/+bug/1065901/+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 1065901] Re: cinder-volume should Suggest ceph-common, not python-ceph

2012-10-12 Thread James Page
** Changed in: cinder (Ubuntu)
   Status: New = Fix Committed

** Changed in: cinder (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  cinder-volume should Suggest ceph-common, not python-ceph

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cinder/+bug/1065901/+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 994225] Re: Windows virtual machine no longer starts after upgrade to Ubuntu 12.04 (Precise)

2012-10-12 Thread Khaled Blah
I saw this bug, too, and doing what was suggested in #8 solved my
problems. Thanks, Serge!

-- 
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/994225

Title:
  Windows virtual machine no longer starts after upgrade to Ubuntu 12.04
  (Precise)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/994225/+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 1065883] Re: ceph rbd username and secret should be configured in nova-compute, not passed from nova-volume/cinder

2012-10-12 Thread James Page
Revised patch which ensures sheepdog handling does not get interfered
with

** Patch added: rbd-security.patch
   
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1065883/+attachment/3396139/+files/rbd-security.patch

-- 
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/1065883

Title:
  ceph rbd username and secret should be configured in nova-compute, not
  passed from nova-volume/cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1065883/+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 1065901] Re: cinder-volume should Suggest ceph-common, not python-ceph

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~openstack-ubuntu-testing/cinder/quantal-folsom

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

Title:
  cinder-volume should Suggest ceph-common, not python-ceph

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cinder/+bug/1065901/+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 1065926] [NEW] can't seem to install keystone on quantal

2012-10-12 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

I think I found a problem with the current keystone debian packaging
rules (latest revision: http://bazaar.launchpad.net/~ubuntu-
branches/ubuntu/quantal/keystone/quantal/revision/34).

When I try to install keystone in my system I get the following
stacktrace:

Traceback (most recent call last):
  File /usr/bin/keystone-manage, line 28, in module
cli.main(argv=sys.argv, config_files=config_files)
  File /usr/lib/python2.7/dist-packages/keystone/cli.py, line 164, in main
return run(cmd, (args[:1] + args[2:]))
  File /usr/lib/python2.7/dist-packages/keystone/cli.py, line 147, in run
return CMDS[cmd](argv=args).run()
  File /usr/lib/python2.7/dist-packages/keystone/cli.py, line 35, in run
return self.main()
  File /usr/lib/python2.7/dist-packages/keystone/cli.py, line 56, in main
driver.db_sync()
  File /usr/lib/python2.7/dist-packages/keystone/identity/backends/sql.py, 
line 136, in db_sync
migration.db_sync()
  File /usr/lib/python2.7/dist-packages/keystone/common/sql/migration.py, 
line 49, in db_sync
current_version = db_version()
  File /usr/lib/python2.7/dist-packages/keystone/common/sql/migration.py, 
line 61, in db_version
return versioning_api.db_version(CONF.sql.connection, repo_path)
  File string, line 2, in db_version
  File /usr/lib/python2.7/dist-packages/migrate/versioning/util/__init__.py, 
line 155, in with_engine
engine = construct_engine(url, **kw)
  File /usr/lib/python2.7/dist-packages/migrate/versioning/util/__init__.py, 
line 140, in construct_engine
return create_engine(engine, **kwargs)
  File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/__init__.py, line 
321, in create_engine
return strategy.create(*args, **kwargs)
  File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/strategies.py, line 
48, in create
u = url.make_url(name_or_url)
  File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/url.py, line 178, 
in make_url
return _parse_rfc1738_args(name_or_url)
  File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/url.py, line 219, 
in _parse_rfc1738_args
Could not parse rfc1738 URL from string '%s' % name)
sqlalchemy.exc.ArgumentError: Could not parse rfc1738 URL from string 
'_DBC_URL_'
dpkg: error processing keystone (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 keystone
E: Sub-process /usr/bin/dpkg returned an error code (1)

This is because keystone-manage is trying to dump the schema into a sqlite file 
in /root (my pwd) by using the keystone account. If I change directory to 
/var/lib/keystone, the error does not occur.
 
I managed to track this down to the fact that the keystone-manage db_sync 
(defined in keystone.postinst) is done outside the conditional block that 
verifies the default value of config_db defined in the keystone.templates.

Hope this help, but if I am completely off track I apologize for the
noise.

Cheers,
Armando

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

-- 
can't seem to install keystone on quantal
https://bugs.launchpad.net/bugs/1065926
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to keystone 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 1065926] [NEW] can't seem to install keystone on quantal

2012-10-12 Thread Armando Migliaccio
Public bug reported:

I think I found a problem with the current keystone debian packaging
rules (latest revision: http://bazaar.launchpad.net/~ubuntu-
branches/ubuntu/quantal/keystone/quantal/revision/34).

When I try to install keystone in my system I get the following
stacktrace:

Traceback (most recent call last):
  File /usr/bin/keystone-manage, line 28, in module
cli.main(argv=sys.argv, config_files=config_files)
  File /usr/lib/python2.7/dist-packages/keystone/cli.py, line 164, in main
return run(cmd, (args[:1] + args[2:]))
  File /usr/lib/python2.7/dist-packages/keystone/cli.py, line 147, in run
return CMDS[cmd](argv=args).run()
  File /usr/lib/python2.7/dist-packages/keystone/cli.py, line 35, in run
return self.main()
  File /usr/lib/python2.7/dist-packages/keystone/cli.py, line 56, in main
driver.db_sync()
  File /usr/lib/python2.7/dist-packages/keystone/identity/backends/sql.py, 
line 136, in db_sync
migration.db_sync()
  File /usr/lib/python2.7/dist-packages/keystone/common/sql/migration.py, 
line 49, in db_sync
current_version = db_version()
  File /usr/lib/python2.7/dist-packages/keystone/common/sql/migration.py, 
line 61, in db_version
return versioning_api.db_version(CONF.sql.connection, repo_path)
  File string, line 2, in db_version
  File /usr/lib/python2.7/dist-packages/migrate/versioning/util/__init__.py, 
line 155, in with_engine
engine = construct_engine(url, **kw)
  File /usr/lib/python2.7/dist-packages/migrate/versioning/util/__init__.py, 
line 140, in construct_engine
return create_engine(engine, **kwargs)
  File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/__init__.py, line 
321, in create_engine
return strategy.create(*args, **kwargs)
  File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/strategies.py, line 
48, in create
u = url.make_url(name_or_url)
  File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/url.py, line 178, 
in make_url
return _parse_rfc1738_args(name_or_url)
  File /usr/lib/python2.7/dist-packages/sqlalchemy/engine/url.py, line 219, 
in _parse_rfc1738_args
Could not parse rfc1738 URL from string '%s' % name)
sqlalchemy.exc.ArgumentError: Could not parse rfc1738 URL from string 
'_DBC_URL_'
dpkg: error processing keystone (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 keystone
E: Sub-process /usr/bin/dpkg returned an error code (1)

This is because keystone-manage is trying to dump the schema into a sqlite file 
in /root (my pwd) by using the keystone account. If I change directory to 
/var/lib/keystone, the error does not occur.
 
I managed to track this down to the fact that the keystone-manage db_sync 
(defined in keystone.postinst) is done outside the conditional block that 
verifies the default value of config_db defined in the keystone.templates.

Hope this help, but if I am completely off track I apologize for the
noise.

Cheers,
Armando

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

** Package changed: ubuntu = keystone (Ubuntu)

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

Title:
  can't seem to install keystone on quantal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/keystone/+bug/1065926/+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 1065883] Re: ceph rbd username and secret should be configured in nova-compute, not passed from nova-volume/cinder

2012-10-12 Thread Ubuntu Foundation's Bug Bot
** Tags added: patch

-- 
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/1065883

Title:
  ceph rbd username and secret should be configured in nova-compute, not
  passed from nova-volume/cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1065883/+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 1065903] Re: glance should Suggest: python-ceph, not ceph-common

2012-10-12 Thread Chuck Short
** Also affects: nova (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: nova (Ubuntu)
   Status: New = In Progress

-- 
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/1065903

Title:
  glance should Suggest: python-ceph, not ceph-common

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glance/+bug/1065903/+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 1065883] Re: ceph rbd username and secret should be configured in nova-compute, not passed from nova-volume/cinder

2012-10-12 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New = Invalid

** Changed in: nova (Ubuntu)
   Status: Invalid = 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/1065883

Title:
  ceph rbd username and secret should be configured in nova-compute, not
  passed from nova-volume/cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1065883/+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 1065903] Re: glance should Suggest: python-ceph, not ceph-common

2012-10-12 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: In Progress = Invalid

-- 
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/1065903

Title:
  glance should Suggest: python-ceph, not ceph-common

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glance/+bug/1065903/+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 1065903] Re: glance should Suggest: python-ceph, not ceph-common

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~openstack-ubuntu-testing/nova/quantal-folsom-
proposed

-- 
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/1065903

Title:
  glance should Suggest: python-ceph, not ceph-common

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glance/+bug/1065903/+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 1065883] Re: ceph rbd username and secret should be configured in nova-compute, not passed from nova-volume/cinder

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~openstack-ubuntu-testing/nova/quantal-folsom-
proposed

-- 
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/1065883

Title:
  ceph rbd username and secret should be configured in nova-compute, not
  passed from nova-volume/cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1065883/+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 1062314] Re: do_refresh_security_group_rules in nova.virt.firewall is very slow

2012-10-12 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: Confirmed = In Progress

-- 
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/1062314

Title:
  do_refresh_security_group_rules in nova.virt.firewall is very slow

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1062314/+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 1062314] Re: do_refresh_security_group_rules in nova.virt.firewall is very slow

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~openstack-ubuntu-testing/nova/quantal-folsom-
proposed

-- 
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/1062314

Title:
  do_refresh_security_group_rules in nova.virt.firewall is very slow

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1062314/+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 1065903] Re: glance should Suggest: python-ceph, not ceph-common

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-branches/ubuntu/quantal/glance/quantal-
proposed

-- 
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/1065903

Title:
  glance should Suggest: python-ceph, not ceph-common

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glance/+bug/1065903/+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 1065883] Re: ceph rbd username and secret should be configured in nova-compute, not passed from nova-volume/cinder

2012-10-12 Thread Josh Durgin
You can actually specify the uuid for the secret when you add it to
libvirt, so it can be the same on all compute hosts.

i.e.

secret ephemeral='no' private='no'
  usage type='ceph'
nameclient.volumes secret/name
  /usage
  uuida060c8a3-d905-45ec-84a6-0b5d7e25c5cb/uuid
/secret

Libvirt only generates a random uuid if you don't specify one. I'll
update the Ceph docs to clarify this.

Your patch does make sense if you want to control more finely which
rados user's your using on the compute nodes. It's easier than running
multiple (cinder|nova)-volume processes, but the long term solution
probably involves changing the volume driver to use different rados
pools and users based on volume_type or some other configuration.

However, with the current rbd volume driver using only a single pool,
I'm not sure how much finer-grained the compute node permissions could
be compared to the volume service permissions. What do you have in mind?

BTW, sheepdog and nbd don't have auth support through libvirt, so you
don't need to check specifically for rbd in your patch.

-- 
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/1065883

Title:
  ceph rbd username and secret should be configured in nova-compute, not
  passed from nova-volume/cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1065883/+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 978963] Re: add release note that OpenStack should be used on a protected network

2012-10-12 Thread James Page
Keystone and Horizon are the default external access routes to
OpenStack.

The default package configuration still uses http.

Added to quantal release notes.

** Changed in: keystone (Ubuntu)
   Status: Triaged = Fix Released

** Changed in: horizon (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  add release note that OpenStack should be used on a protected network

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/978963/+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 1064960] Re: Longpoll is broken (requests to /MAAS/longpoll return 404).

2012-10-12 Thread Andres Rodriguez
** Changed in: maas (Ubuntu Quantal)
   Status: In Progress = Fix Released

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

Title:
  Longpoll is broken (requests to /MAAS/longpoll return 404).

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1064960/+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 1064960] Re: Longpoll is broken (requests to /MAAS/longpoll return 404).

2012-10-12 Thread Scott Moser
This was uploaded in 0.1+bzr1264+dfsg-0ubuntu1 
with changelog entry:
 debian/maas-region-controller.postinst: Enable proxy_http module.
It did not correctly have a bug reference in it.

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

Title:
  Longpoll is broken (requests to /MAAS/longpoll return 404).

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1064960/+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 1027219] Re: [Precise] Default install assumes MaaS

2012-10-12 Thread Andres Rodriguez
** Changed in: cobbler (Ubuntu Quantal)
   Status: Fix Committed = Fix Released

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

Title:
  [Precise] Default install assumes MaaS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cobbler/+bug/1027219/+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 1065763] [NEW] UI URL gives HTTP error 200 after CD install

2012-10-12 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

I installed a MAAS server into a VM w/ the beta2 quantal cd:
  ubuntu-12.10-beta2-server-amd64.iso

I did pass console=ttyS0, and I am in an environment w/ no NTP server,
but other than that a very vanilla install. After the intall
completed, browsing to the UI page gave me an HTTP 200 error. I dug
through the apache logs, and found messages like this whenever I'd hit
refresh on the UI page:

== error.log ==
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] mod_wsgi (pid=1173): 
Target WSGI script '/usr/share/maas/wsgi.py' cannot be loaded as Python module.
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] mod_wsgi (pid=1173): 
Exception occurred processing WSGI script '/usr/share/maas/wsgi.py'.
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] Traceback (most 
recent call last):
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/share/maas/wsgi.py, line 30, in module
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] start_up()
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/maasserver/start_up.py, line 59, in start_up
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] inner_start_up()
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/maasserver/start_up.py, line 87, in 
inner_start_up
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] 
write_full_dns_config(reload_retry=True)
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/maasserver/dns.py, line 309, in 
write_full_dns_config
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] args=[['reload'], 
reload_retry]))
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/celery/app/task/__init__.py, line 353, in 
delay
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] return 
self.apply_async(args, kwargs)
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/celery/app/task/__init__.py, line 449, in 
apply_async
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] publish = 
publisher or self.app.amqp.publisher_pool.acquire(block=True)
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/connection.py, line 657, in acquire
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] R = 
self.prepare(R)
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/pools.py, line 54, in prepare
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] p = p()
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/pools.py, line 45, in lambda
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] return lambda: 
self.create_producer()
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/celery/app/amqp.py, line 265, in 
create_producer
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] pub = 
self.app.amqp.TaskPublisher(conn, auto_declare=False)
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/celery/app/amqp.py, line 328, in 
TaskPublisher
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] return 
TaskPublisher(*args, **self.app.merge(defaults, kwargs))
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/celery/app/amqp.py, line 158, in __init__
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] 
super(TaskPublisher, self).__init__(*args, **kwargs)
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/compat.py, line 61, in __init__
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] super(Publisher, 
self).__init__(connection, self.exchange, **kwargs)
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/messaging.py, line 79, in __init__
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] 
self.revive(self.channel)
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/messaging.py, line 168, in revive
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] channel = 
channel.default_channel
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/connection.py, line 581, in 
default_channel
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] self.connection
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/connection.py, line 574, in connection
[Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] self._connection 
= self._establish_connection()
[Thu 

[Bug 1062314] Re: do_refresh_security_group_rules in nova.virt.firewall is very slow

2012-10-12 Thread OpenStack Hudson
Reviewed:  https://review.openstack.org/14367
Committed: 
http://github.com/openstack/nova/commit/eee4dbb07e88e19ca891275f5ba1d381bd98b4e5
Submitter: Jenkins
Branch:stable/folsom

commit eee4dbb07e88e19ca891275f5ba1d381bd98b4e5
Author: Michael Still mi...@stillhq.com
Date:   Thu Oct 11 15:46:11 2012 +1100

Avoid RPC calls while holding iptables lock.

This exhibitied itself as very slow instance starts on a Canonical
test cluster. This was because do_referesh_security_group_rules()
was making rpc calls while holding the iptables lock. This refactor
avoids that while making no functional changes (I hope).

Fixes bug: 1062314
Change-Id: I36f805bd72f7bd06082cfe96c58d637203bcffb7
Cherry-picked: ba585524e32965697c1a44c8fd743dea060bb1af


** Changed in: nova/folsom
   Status: In Progress = 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/1062314

Title:
  do_refresh_security_group_rules in nova.virt.firewall is very slow

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1062314/+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 1065883] Re: ceph rbd username and secret should be configured in nova-compute, not passed from nova-volume/cinder

2012-10-12 Thread James Page
Hi Josh

I was aware that was possible; however I'm deploying openstack
automatically and I don't really want to pass the uuid around between
nova-volume and nova-compute nodes.

I simply want to provide each of the compute nodes with the cephx key it
needs to use and a generated username - and it will just configure its
own set of secrets and configure nova appropriately, overriding the
config that nova-volume may/will have sent.

My finer grained access control requirement was really around having
different keys for volume/cinder and compute - so if I add/remove
additional compute farms I can easily manage the keys on a per role
basis.

I guess I was just being hyper-cautious with the rbd check in the patch
:-)

-- 
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/1065883

Title:
  ceph rbd username and secret should be configured in nova-compute, not
  passed from nova-volume/cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1065883/+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 1059453] Re: The celery cluster worker is not properly stopped

2012-10-12 Thread Andres Rodriguez
** Changed in: maas (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  The celery cluster worker is not properly stopped

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1059453/+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 1050492] Re: MAAS uses the 'guest' account to communicate with RabbitMQ

2012-10-12 Thread Andres Rodriguez
** Changed in: maas (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  MAAS uses the 'guest' account to communicate with RabbitMQ

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1050492/+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 1065763] Re: UI URL gives HTTP error 200 after CD install

2012-10-12 Thread Andres Rodriguez
The reason of the bug is because that the RabbitMQ user is not created
during CD install.

In order for maas to create the user on installation, it needs RabbitMQ
running. RabbitMQ is started and successfully creates the credentials
for longpoll, however, it seems that it then gets killed and the
credentials for celery worker are not created.

** Project changed: maas = maas (Ubuntu)

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

Title:
  UI URL gives HTTP error 200 after CD install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1065763/+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 1065883] Re: ceph rbd username and secret should be configured in nova-compute, not passed from nova-volume/cinder

2012-10-12 Thread Josh Durgin
I see, that makes sense now. It'd be good to get this patch upstream for
grizzly.

-- 
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/1065883

Title:
  ceph rbd username and secret should be configured in nova-compute, not
  passed from nova-volume/cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1065883/+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 1044503] Re: kernel command line is not easily customizable

2012-10-12 Thread Scott Moser
 We should be as smart as we can and do everything we can before giving
 users a free-form field in which to enter extra bits of the command line.

I generally disagree with this.
I like the be as smart as ew can part, but after that it goes sour.

Accept that you can't know the right parameters for hardware.  Make it
configurable via some sort of free form field.

Other thing to note here, is we want kernel parameters for a node to copy
to the installer's preseed.  so that after the installer the system boots
with those parameters.

Example:
 I just did an install where I hacked the cmdline of the
ephemeral/commissioning and install via modifying
  config.commissioning.template and config.install.template
I added 'console=ttyS1,115200'.  Those parameters at least possibly should
make it into the preseed data so that the install also gets them.  At the
moment that doesn't happen.

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

Title:
  kernel command line is not easily customizable

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1044503/+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 1065883] Re: ceph rbd username and secret should be configured in nova-compute, not passed from nova-volume/cinder

2012-10-12 Thread James Page
I'll work on doing that as my first code contribution to OpenStack!

-- 
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/1065883

Title:
  ceph rbd username and secret should be configured in nova-compute, not
  passed from nova-volume/cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1065883/+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 1065903] Re: glance should Suggest: python-ceph, not ceph-common

2012-10-12 Thread Launchpad Bug Tracker
This bug was fixed in the package glance - 2012.2-0ubuntu2

---
glance (2012.2-0ubuntu2) quantal-proposed; urgency=low

  * Glance should suggest python-ceph, not ceph-common (LP: #1065903):
- debian/control: glance Suggests: ceph-common - python-ceph.
 -- James Page james.p...@ubuntu.com   Fri, 12 Oct 2012 15:43:54 +0100

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

-- 
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/1065903

Title:
  glance should Suggest: python-ceph, not ceph-common

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glance/+bug/1065903/+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 1032183] Re: maas commission repository mirror

2012-10-12 Thread Scott Moser
I've dropped the task from quantal.
This can mostly be accomplished running through a proxy. full offline mirror 
probably doesn't work completely yet though.

bug 1066020 mentions vaguely how you can get the enlistment environment
to use your proxy, and commissioning can also be accomplished.


** No longer affects: maas (Ubuntu Quantal)

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

Title:
  maas commission repository mirror

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1032183/+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 975472] Re: add high level design document(s)

2012-10-12 Thread Scott Moser
I dropped the precise and quantal tasks.
This is not going to make quantal. i someone wants to add these back, feel free 
to do so.


** No longer affects: maas (Ubuntu Quantal)

** No longer affects: maas (Ubuntu Precise)

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

Title:
  add high level design document(s)

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/975472/+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 975468] Re: consider implementing a 'security group' functionality

2012-10-12 Thread Scott Moser
I dropped the quantal and precise tasks.  If someone thinks that is
wrong, please feel free to re-add them.


** No longer affects: maas (Ubuntu Quantal)

** No longer affects: maas (Ubuntu Precise)

** Also affects: maas
   Importance: Undecided
   Status: New

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

Title:
  consider implementing a 'security group' functionality

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/975468/+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 1065763] Re: UI URL gives HTTP error 200 after CD install

2012-10-12 Thread Andres Rodriguez
** Tags added: release-p-tracking

** Tags removed: release-p-tracking
** Tags added: rls-p-tracking

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

Title:
  UI URL gives HTTP error 200 after CD install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1065763/+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 1065259] Re: Enlistment fails if multiple MAC addresses are sent

2012-10-12 Thread Andres Rodriguez
** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  Enlistment fails if multiple MAC addresses are sent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas-enlist/+bug/1065259/+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 975462] Re: add ability to use over https

2012-10-12 Thread Andres Rodriguez
I'm marking this Fix Released and this seems to have been fixed
upstream, hence, should be fixed in quantal

** Changed in: maas (Ubuntu Quantal)
   Status: Triaged = Fix Released

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

Title:
  add ability to use over https

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/975462/+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 1065763] Re: UI URL displays 200 Error page after CD install

2012-10-12 Thread dann frazier
** Summary changed:

- UI URL gives HTTP error 200 after CD install
+ UI URL displays 200 Error page after CD install

** Description changed:

  I installed a MAAS server into a VM w/ the beta2 quantal cd:
-   ubuntu-12.10-beta2-server-amd64.iso
+   ubuntu-12.10-beta2-server-amd64.iso
  
  I did pass console=ttyS0, and I am in an environment w/ no NTP server,
  but other than that a very vanilla install. After the intall
- completed, browsing to the UI page gave me an HTTP 200 error. I dug
+ completed, browsing to the UI page gave me a 200 Error page. I dug
  through the apache logs, and found messages like this whenever I'd hit
  refresh on the UI page:
  
  == error.log ==
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] mod_wsgi 
(pid=1173): Target WSGI script '/usr/share/maas/wsgi.py' cannot be loaded as 
Python module.
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] mod_wsgi 
(pid=1173): Exception occurred processing WSGI script '/usr/share/maas/wsgi.py'.
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] Traceback (most 
recent call last):
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/share/maas/wsgi.py, line 30, in module
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] start_up()
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/maasserver/start_up.py, line 59, in start_up
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] inner_start_up()
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/maasserver/start_up.py, line 87, in 
inner_start_up
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] 
write_full_dns_config(reload_retry=True)
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/maasserver/dns.py, line 309, in 
write_full_dns_config
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] 
args=[['reload'], reload_retry]))
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/celery/app/task/__init__.py, line 353, in 
delay
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] return 
self.apply_async(args, kwargs)
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/celery/app/task/__init__.py, line 449, in 
apply_async
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] publish = 
publisher or self.app.amqp.publisher_pool.acquire(block=True)
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/connection.py, line 657, in acquire
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] R = 
self.prepare(R)
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/pools.py, line 54, in prepare
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] p = p()
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/pools.py, line 45, in lambda
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] return lambda: 
self.create_producer()
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/celery/app/amqp.py, line 265, in 
create_producer
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] pub = 
self.app.amqp.TaskPublisher(conn, auto_declare=False)
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/celery/app/amqp.py, line 328, in 
TaskPublisher
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] return 
TaskPublisher(*args, **self.app.merge(defaults, kwargs))
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/celery/app/amqp.py, line 158, in __init__
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] 
super(TaskPublisher, self).__init__(*args, **kwargs)
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/compat.py, line 61, in __init__
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] 
super(Publisher, self).__init__(connection, self.exchange, **kwargs)
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/messaging.py, line 79, in __init__
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] 
self.revive(self.channel)
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/messaging.py, line 168, in revive
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107] channel = 
channel.default_channel
  [Thu Oct 11 18:03:33 2012] [error] [client 10.250.35.107]   File 
/usr/lib/python2.7/dist-packages/kombu/connection.py, line 581, in 
default_channel
  [Thu Oct 11 18:03:33 2012] [error] 

[Bug 1065785] Re: volume and snapshot IDs do not correctly map to UUIDs after folsom upgrade

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~openstack-ubuntu-testing/nova/quantal-folsom-
proposed

-- 
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/1065785

Title:
  volume and snapshot IDs do not correctly map to UUIDs after folsom
  upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1065785/+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 1065785] Re: volume and snapshot IDs do not correctly map to UUIDs after folsom upgrade

2012-10-12 Thread Vish Ishaya
** Changed in: nova
   Importance: Undecided = High

** Tags added: folsom-backport-potential

-- 
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/1065785

Title:
  volume and snapshot IDs do not correctly map to UUIDs after folsom
  upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1065785/+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

2012-10-12 Thread Dan Kegel
Running this script periodically seems to work around the problem.  Only
lightly tested.

** Attachment added: gc.sh
   
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1065589/+attachment/3396509/+files/gc.sh

-- 
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/lxc/+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 1065589] Re: initctl list shows 11974 instances of network-interface-security after two days of uptime

2012-10-12 Thread Dan Kegel
Oops, that only deleted one of the jobs.  This draft deletes both.


** Attachment added: gc.sh
   
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1065589/+attachment/3396518/+files/gc.sh

-- 
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/lxc/+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


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

2012-10-12 Thread Serge Hallyn
@Dan,

note that you can also compare the list of running 'network-interface'
jobs to the veth's in /sys/class/net/.  For those which are not there,
you can remove the network-interface job using
sudo initctl emit net-device-removed INTERFACE=$thenicyoufound

-- 
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/lxc/+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 1065589] Re: initctl list shows 11974 instances of network-interface-security after two days of uptime

2012-10-12 Thread Dan Kegel
Once more with feeling.

** Attachment added: bug1065589-gc.sh
   
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1065589/+attachment/3396522/+files/bug1065589-gc.sh

-- 
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/lxc/+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 1065766] Re: package dovecot-core (not installed) failed to install/upgrade: trying to overwrite '/etc/init.d/dovecot', which is also in package dovecot-common 1:2.0.19-0ubuntu2

2012-10-12 Thread Jamie Strandboge
** Visibility changed to: Public

** This bug is no longer flagged as a security vulnerability

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

Title:
  package dovecot-core (not installed) failed to install/upgrade: trying
  to overwrite '/etc/init.d/dovecot', which is also in package dovecot-
  common 1:2.0.19-0ubuntu2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dovecot/+bug/1065766/+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 1063175] Re: mysql 5.1.66 update

2012-10-12 Thread Jamie Strandboge
** Visibility changed to: Public

** This bug is no longer flagged as a security vulnerability

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

Title:
  mysql 5.1.66 update

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-dfsg-5.1/+bug/1063175/+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 1065766] Re: package dovecot-core (not installed) failed to install/upgrade: trying to overwrite '/etc/init.d/dovecot', which is also in package dovecot-common 1:2.0.19-0ubuntu2

2012-10-12 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 dovecot in Ubuntu.
https://bugs.launchpad.net/bugs/1065766

Title:
  package dovecot-core (not installed) failed to install/upgrade: trying
  to overwrite '/etc/init.d/dovecot', which is also in package dovecot-
  common 1:2.0.19-0ubuntu2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dovecot/+bug/1065766/+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 1049146] Re: cloud-init runs again after reboot in release upgraded instance

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/ubuntu/precise/cloud-init/sru

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

Title:
  cloud-init runs again after reboot in release upgraded instance

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1049146/+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 1042758] Re: landscape handler needs to set RUN=1 in /etc/default/landscape-client

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/ubuntu/precise/cloud-init/sru

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

Title:
  landscape handler needs to set RUN=1 in /etc/default/landscape-client

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1042758/+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 978127] Re: incorrect time on node causes failed oauth

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/ubuntu/precise/cloud-init/sru

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

Title:
  incorrect time on node causes failed oauth

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/978127/+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 1066084] [NEW] Permissions mangled when creating rootfs from cloud images

2012-10-12 Thread David Britton
Public bug reported:

Permissions on the created lxc container somehow are reflecting the
users /etc/password file:

ubuntu@dpb-local-landscape-client-0:~$ cat /etc/passwd |grep landscape
landscape:x:104:109::/var/lib/landscape:/bin/false
ubuntu@dpb-local-landscape-client-0:~$ ll /etc/landscape
total 12
drwxr-xr-x  2 root root 4096 Oct 12 17:48 ./
drwxr-xr-x 86 root root 4096 Oct 12 17:47 ../
-rw---  1  999 root  164 Oct 12 17:48 client.conf
ubuntu@dpb-local-landscape-client-0:~$ logout
Connection to 10.0.3.143 closed.

dpb@starbuck:dpb-local$ cat /etc/passwd |grep landscape
landscape:x:999:999::/var/lib/landscape:/bin/false
dpb@starbuck:dpb-local$

My hunch is where the tar happens from the mount of the downloaded image
in lxc/templates/lxc-ubuntu-cloud

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

-- 
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/1066084

Title:
  Permissions mangled when creating rootfs from cloud images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1066084/+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 1066084] Re: Permissions mangled when creating rootfs from cloud images

2012-10-12 Thread David Britton
The following fixes the problem:

dpb@starbuck:templates$ pwd
/usr/share/lxc/templates
dpb@starbuck:templates$ diff *.orig lxc-ubuntu-cloud
344c344
 tar -zxf $cache/$filename
---
 tar --numeric-owner -zxf $cache/$filename

-- 
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/1066084

Title:
  Permissions mangled when creating rootfs from cloud images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1066084/+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 1066084] Re: Permissions mangled when creating rootfs from cloud images

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/ubuntu/quantal/lxc/lp-1066084

-- 
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/1066084

Title:
  Permissions mangled when creating rootfs from cloud images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1066084/+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 1066084] Re: Permissions mangled when creating rootfs from cloud images

2012-10-12 Thread Serge Hallyn
** Changed in: lxc (Ubuntu)
   Status: New = Triaged

** Changed in: lxc (Ubuntu)
   Importance: Undecided = High

-- 
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/1066084

Title:
  Permissions mangled when creating rootfs from cloud images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1066084/+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 1062314] Re: do_refresh_security_group_rules in nova.virt.firewall is very slow

2012-10-12 Thread Michael Still
Upstream has chosen not to backport this fix to essex. Can we please
consider carrying this patch ourselves?

-- 
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/1062314

Title:
  do_refresh_security_group_rules in nova.virt.firewall is very slow

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1062314/+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 1062314] Re: do_refresh_security_group_rules in nova.virt.firewall is very slow

2012-10-12 Thread Pádraig Brady
To clarify, it's not in 2012.1.3 but will probably be added to the
2012.1.4 branch

-- 
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/1062314

Title:
  do_refresh_security_group_rules in nova.virt.firewall is very slow

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1062314/+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 996166] Re: installs wrong package in cc_salt_minion.py

2012-10-12 Thread Scott Moser
As far as I can tell, this is fix-released in precise.
It must have regressed and the been fixed in quantal's lifetime.

Please re-open if that is incorrect and I will sru this.


** Changed in: cloud-init (Ubuntu Precise)
   Status: Triaged = Fix Released

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

Title:
  installs wrong package in cc_salt_minion.py

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/996166/+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 1064096] Re: Please update clamav to 0.97.6

2012-10-12 Thread Scott Kitterman
Backports in lucid/hardy-backports.

** Changed in: hardy-backports
   Status: In Progress = Fix Released

** Changed in: lucid-backports
   Status: In Progress = Fix Released

** Tags added: verification-done-precise

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

Title:
  Please update clamav to 0.97.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/hardy-backports/+bug/1064096/+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 1064096] Re: Please update clamav to 0.97.6

2012-10-12 Thread Scott Kitterman
mdeslaur ran the test suite on precise and oneiric.  Marking
verification done for those releases based on that.

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

Title:
  Please update clamav to 0.97.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/hardy-backports/+bug/1064096/+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 1018554] Re: write timestamp to console on halt/reboot/shutdown

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/ubuntu/precise/cloud-init/sru

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

Title:
  write timestamp to console on halt/reboot/shutdown

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1018554/+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 974509] Re: cloud-init selects wrong mirror with dns server redirection

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/ubuntu/precise/cloud-init/sru

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

Title:
  cloud-init selects wrong mirror with dns server redirection

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/974509/+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 1006963] Re: sources.list configuration does not cover security

2012-10-12 Thread Scott Moser
** Also affects: cloud-init (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: cloud-init (Ubuntu)
   Status: New = Fix Released

** Changed in: cloud-init (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  sources.list configuration does not cover security

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1006963/+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 1006963] Re: sources.list configuration does not cover security

2012-10-12 Thread Scott Moser
** Also affects: cloud-init (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Changed in: cloud-init (Ubuntu Precise)
   Status: New = Triaged

** Changed in: cloud-init (Ubuntu Precise)
   Importance: Undecided = Medium

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

Title:
  sources.list configuration does not cover security

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1006963/+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 1064096] Re: Please update clamav to 0.97.6

2012-10-12 Thread Scott Kitterman
** Tags added: verification-done-oneiric

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

Title:
  Please update clamav to 0.97.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/hardy-backports/+bug/1064096/+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 1065785] Re: volume and snapshot IDs do not correctly map to UUIDs after folsom upgrade

2012-10-12 Thread OpenStack Hudson
Reviewed:  https://review.openstack.org/14372
Committed: 
http://github.com/openstack/nova/commit/43bf8344488a6af1046344c255bdb2edd7450475
Submitter: Jenkins
Branch:master

commit 43bf8344488a6af1046344c255bdb2edd7450475
Author: Adam Gandelman adam.gandel...@canonical.com
Date:   Thu Oct 11 18:49:54 2012 -0700

read_deleted snapshot and volume id mappings.

Since the migration that creates the volume_id_mappings and
snapshot_id_mappings tables does not populate the 'deleted' column,
queries to this table should not limit results to 'deleted=0'.
Limiting to non-deleted rows results in duplicate mappings being
created for existing instance mappings after an upgrade, and
throws off volume and snapshot ID to UUID mapping.

This is a stop-gap measure to ensure avoid serious breakage during
an upgrade.  The NULL columns in this table are actually unused
currently and can be populated in later grizzly migrations, if they
end up being used.

Fixes bug 1065785.

Change-Id: I893c994362a203288b9984f0ede24cbb274bfcc5


** Changed in: nova
   Status: In Progress = 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/1065785

Title:
  volume and snapshot IDs do not correctly map to UUIDs after folsom
  upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1065785/+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 1066144] [NEW] arguments to dbus_server_disconnect() were incorrect

2012-10-12 Thread Paul Larson
Public bug reported:

With postfix installed, I'm getting the following error in my boot.log
process 268: arguments to dbus_server_disconnect() were incorrect, assertion 
old_refcount  0 failed in file ../../dbus/dbus-server.c line 786
process 268: arguments to dbus_server_unref() were incorrect, assertion 
old_refcount  0 failed in file ../../dbus/dbus-server.c line 749

Complete boot.log can be seen at:
http://paste.ubuntu.com/1275728

If I remove postfix, the error goes away.  I've tried uninstalling
several other packages that actually depend on libdbus, but so far as
long as postfix is installed, it still gets the error.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: postfix 2.9.3-2ubuntu2
ProcVersionSignature: Ubuntu 3.5.0-17.28-generic 3.5.5
Uname: Linux 3.5.0-17-generic i686
ApportVersion: 2.6.1-0ubuntu3
Architecture: i386
Date: Fri Oct 12 16:27:53 2012
InstallationMedia: Ubuntu-Server 12.10 Quantal Quetzal - Release i386 
(20121012.1)
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: postfix
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 quantal

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

Title:
  arguments to dbus_server_disconnect() were incorrect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/1066144/+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 1066144] Re: arguments to dbus_server_disconnect() were incorrect

2012-10-12 Thread Ubuntu QA Website
This bug has been reported on the Ubuntu ISO testing tracker.

A list of all reports related to this bug can be found here:
http://iso.qa.ubuntu.com/qatracker/reports/bugs/1066144

** Tags added: iso-testing

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

Title:
  arguments to dbus_server_disconnect() were incorrect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/1066144/+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


[Blueprint servercloud-r-juju-appserver-support] Juju support for application server technologies (Django, JEE, RoR, etc)

2012-10-12 Thread Bruno Girin
Blueprint changed by Bruno Girin:

Whiteboard changed:
  User Stories:
+ 
+ As a sysop, I want to deploy a web application container on a cloud
+ node.
+ 
+ As a developer, I want to create a Juju charm to deploy my web
+ application on any compatible container. Example of compatible
+ container: Django app = Django container; JEE .war = servlet container
+ (e.g. Apache Tomcat) or JEE app server (e.g. JBoss); JEE .ear or .jar =
+ JEE app server (e.g. JBoss)
+ 
+ As a sysop, I want to deploy a web application onto a compatible
+ container node.
+ 
+ As a sysop, I want to define a named data source in a web app node and
+ add a relationship to a database node for that data source.
  
  Risks:
  
  Test Plans:
  
  Release Note:

-- 
Juju support for application server technologies (Django, JEE, RoR, etc)
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-juju-appserver-support

-- 
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 1066144] Re: arguments to dbus_server_disconnect() were incorrect

2012-10-12 Thread Scott Kitterman
Postfix doesn't use dbus.  Perhaps upstart is doing something.

** Package changed: postfix (Ubuntu) = upstart (Ubuntu)

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

Title:
  arguments to dbus_server_disconnect() were incorrect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/1066144/+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

2012-10-12 Thread Serge Hallyn
Email thread about a potential kernel patch to solve the problem:
http://lists.linuxfoundation.org/pipermail/containers/2012-October/030519.html

-- 
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/lxc/+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 1065589] Re: initctl list shows 11974 instances of network-interface-security after two days of uptime

2012-10-12 Thread Dan Kegel
Alas, that archive doesn't show attachments.   For the record, is there
a better archive somewhere?

-- 
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/lxc/+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 1065785] Fix proposed to nova (stable/folsom)

2012-10-12 Thread OpenStack Hudson
Fix proposed to branch: stable/folsom
Review: https://review.openstack.org/14416

-- 
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/1065785

Title:
  volume and snapshot IDs do not correctly map to UUIDs after folsom
  upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1065785/+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 991023] Re: mysql server cannot start

2012-10-12 Thread Clint Byrum
*** This bug is a duplicate of bug 986892 ***
https://bugs.launchpad.net/bugs/986892

** This bug has been marked a duplicate of bug 986892
   mysql-server postrm breaks apparmor profile for later versions on purge

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

Title:
  mysql server cannot start

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/991023/+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 1065883] Re: ceph rbd username and secret should be configured in nova-compute, not passed from nova-volume/cinder

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/quantal-proposed/nova

-- 
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/1065883

Title:
  ceph rbd username and secret should be configured in nova-compute, not
  passed from nova-volume/cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1065883/+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 1065785] Re: volume and snapshot IDs do not correctly map to UUIDs after folsom upgrade

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/quantal-proposed/nova

-- 
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/1065785

Title:
  volume and snapshot IDs do not correctly map to UUIDs after folsom
  upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1065785/+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 1065320] Re: /var/lib/nova/volumes is owned by root after Folsom upgrade

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/quantal-proposed/nova

-- 
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/1065320

Title:
  /var/lib/nova/volumes is owned by root after Folsom upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1065320/+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 1062314] Re: do_refresh_security_group_rules in nova.virt.firewall is very slow

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/quantal-proposed/nova

-- 
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/1062314

Title:
  do_refresh_security_group_rules in nova.virt.firewall is very slow

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1062314/+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 1059907] Re: python-nova depends on python-setuptools-git?

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/quantal-proposed/nova

-- 
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/1059907

Title:
  python-nova depends on python-setuptools-git?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1059907/+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 1066224] [NEW] package libdns81 1:9.8.1.dfsg.P1-4ubuntu0.4 failed to install/upgrade: eroare la scrierea în „standard output”: Success

2012-10-12 Thread paul iulian
Public bug reported:

Nu știu la ce se referă.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: libdns81 1:9.8.1.dfsg.P1-4ubuntu0.4
ProcVersionSignature: Ubuntu 3.2.0-32.51-generic-pae 3.2.30
Uname: Linux 3.2.0-32-generic-pae i686
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu14
Architecture: i386
Date: Thu Oct 11 09:14:39 2012
ErrorMessage: eroare la scrierea în „standard output”: Success
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 (20120423)
SourcePackage: bind9
Title: package libdns81 1:9.8.1.dfsg.P1-4ubuntu0.4 failed to install/upgrade: 
eroare la scrierea în „standard output”: Success
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-package i386 precise

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

Title:
  package libdns81 1:9.8.1.dfsg.P1-4ubuntu0.4 failed to install/upgrade:
  eroare la scrierea în „standard output”: Success

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1066224/+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

2012-10-12 Thread Serge Hallyn
Hm, I didn't know it did that.  The patch wasn't even an attachment,
just inline.

I'll attach the new version here.  There is another archive at sf.net,
but it doesn't seem to have oct 12 messages yet.

-- 
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/lxc/+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 1065589] Re: initctl list shows 11974 instances of network-interface-security after two days of uptime

2012-10-12 Thread Serge Hallyn
** Patch added: 
0001-dev_change_net_namespace-send-a-KOBJ_REMOVED-to-orig.patch
   
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1065589/+attachment/3396958/+files/0001-dev_change_net_namespace-send-a-KOBJ_REMOVED-to-orig.patch

-- 
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/lxc/+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 1065821] Re: emesene crashed with SIGSEGV in g_main_context_dispatch()

2012-10-12 Thread jrstravino
*** This bug is a duplicate of bug 1050358 ***
https://bugs.launchpad.net/bugs/1050358

** Visibility changed to: Public

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

Title:
  emesene crashed with SIGSEGV in g_main_context_dispatch()

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

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


[Bug 1065819] Re: selenium IDU IS not opening

2012-10-12 Thread Micah Gersten
Thank you for taking the time to report this bug and trying to help make
Ubuntu better.  However, it seems that you are not using a software
package provided by the official Ubuntu repositories.  Because of this
the Ubuntu project can not support or fix your particular bug.  Please
report this bug to the provider of the software package.  Thanks!

If you are interested in learning more about software repositories and
Ubuntu the following pages should be informative:

1. http://www.ubuntu.com/community/ubuntustory/components - information about 
Ubuntu repositories
2. https://help.ubuntu.com/community/Repositories - information regarding 
managing repositories.

** Changed in: firefox (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/1065819

Title:
  selenium IDU IS not opening

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

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


[Bug 1058320] Re: Gtk2Reactor object has no attribute simulate

2012-10-12 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/precise-proposed/deluge

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

Title:
  Gtk2Reactor object has no attribute simulate

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

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


[Bug 1065821] Re: emesene crashed with SIGSEGV in g_main_context_dispatch()

2012-10-12 Thread Apport retracing service
*** This bug is a duplicate of bug 1050358 ***
https://bugs.launchpad.net/bugs/1050358

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 #1050358, 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/1065821/+attachment/3395863/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1065821/+attachment/3395865/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1065821/+attachment/3395866/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1065821/+attachment/3395867/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1065821/+attachment/3395868/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1065821/+attachment/3395869/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1065821/+attachment/3395870/+files/ThreadStacktrace.txt

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

** 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/1065821

Title:
  emesene crashed with SIGSEGV in g_main_context_dispatch()

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

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


[Bug 1065784] Re: [Dell System XPS L502X, Realtek ALC665, Speaker, Internal] fails after a while

2012-10-12 Thread David Henningsson
*** This bug is a duplicate of bug 1064621 ***
https://bugs.launchpad.net/bugs/1064621

** This bug has been marked a duplicate of bug 1064621
   Internal speaker muted after a while, several Realtek codecs (Quantal)

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

Title:
  [Dell System XPS L502X, Realtek ALC665, Speaker, Internal] fails after
  a while

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1065784/+subscriptions

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


[Bug 1056922] Re: Spanish translation errors

2012-10-12 Thread Adolfo Jayme Barrientos
Hello MarioDebian, thanks for taking the time to report this bug.

Translations of Atomix are made in http://l10n.gnome.org. Please contact
the Gnome Spanish team at gnome-es-l...@gnome.org and send to them
your fixes, so they can apply them and eventually reach all
distributions like Ubuntu.

Thanks!

** Changed in: atomix (Ubuntu)
   Status: New = Invalid

** Also affects: ubuntu-translations
   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/1056922

Title:
  Spanish translation errors

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

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


[Bug 1065827] [NEW] bcmwl install failure

2012-10-12 Thread Scott Kitterman
Public bug reported:

Failed for Kubuntu final

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: jockey-kde 0.9.7-0ubuntu11
ProcVersionSignature: Ubuntu 3.5.0-17.28-generic 3.5.5
Uname: Linux 3.5.0-17-generic i686
ApportVersion: 2.6.1-0ubuntu3
Architecture: i386
CasperVersion: 1.327
CurrentDmesg:
 [   42.841138] r8169 :04:00.0: eth0: link down
 [   42.842220] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
 [   42.844635] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
 [  605.128386] r8169 :04:00.0: eth0: link up
 [  605.129245] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Date: Fri Oct 12 05:51:09 2012
LiveMediaBuild: Kubuntu 12.10 Quantal Quetzal - Release i386 (20121012)
MachineType: Dell Inc. Inspiron 1011
PackageArchitecture: all
ProcKernelCmdLine: noprompt cdrom-detect/try-usb=true 
file=/cdrom/preseed/username.seed boot=casper maybe-ubiquity 
initrd=/casper/initrd.lz quiet splash --
SourcePackage: jockey
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/20/2009
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A00
dmi.board.name: CN0Y53
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A00
dmi.modalias: 
dmi:bvnDellInc.:bvrA00:bd03/20/2009:svnDellInc.:pnInspiron1011:pvrA00:rvnDellInc.:rnCN0Y53:rvrA00:cvnDellInc.:ct8:cvrA00:
dmi.product.name: Inspiron 1011
dmi.product.version: A00
dmi.sys.vendor: Dell Inc.

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


** Tags: apport-bug i386 quantal

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

Title:
  bcmwl install failure

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

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


[Bug 1060483] Re: package lirc 0.9.0-0ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 128

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

** Changed in: lirc (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/1060483

Title:
  package lirc 0.9.0-0ubuntu1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 128

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

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


[Bug 1053785] Re: ubuntu patch 03_branding negatively effects localizations

2012-10-12 Thread Adolfo Jayme Barrientos
** Also affects: ubuntu-translations
   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/1053785

Title:
  ubuntu patch 03_branding negatively effects localizations

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

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


[Bug 1051249] Re: gMTP German Translation has illegal character set

2012-10-12 Thread Adolfo Jayme Barrientos
** Also affects: ubuntu-translations
   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/1051249

Title:
  gMTP German Translation has illegal character set

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

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


[Bug 1035628] Re: Alt+Tab/Alt+grave brings other window to the front but loses focus entirely.

2012-10-12 Thread Frank Groeneveld
Thanks a lot for fixing this! :)

When will we see this in the repo's for 12.04? Any estimates?

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

Title:
  Alt+Tab/Alt+grave brings other window to the front but loses focus
  entirely.

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

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


[Bug 985634] Re: Wrong translation during the installation process of Ubuntu 12.04 with choosing Simple Chinese as the installation language

2012-10-12 Thread Victor Zhou
I provided some translation suggestion here: 
https://translations.launchpad.net/ubuntu/quantal/+source/apt/+pots/apt-all/zh_CN/498/+translate
But don't know, how to make it used in the current build.

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

Title:
  Wrong translation during the installation process of Ubuntu 12.04 with
  choosing Simple Chinese as the installation language

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

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


[Bug 1065825] [NEW] usb-creator has bad window resize behavior

2012-10-12 Thread Marcelo Ruiz
Public bug reported:

This bug is very easy to find:
Just open the application and resize (expand) the window vertically.
The areas that display the ISO files and the disk to use (both are lists) 
should be the ONLY parts of the GUI affected by that operation. Instead, the 
whole window rearranges its content (for example increasing the distance from 
the Erase Disk button to the label 'When starting up )

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: usb-creator-gtk 0.2.38
ProcVersionSignature: Ubuntu 3.5.0-7.7-generic 3.5.0
Uname: Linux 3.5.0-7-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu13
Architecture: amd64
Date: Fri Oct 12 02:53:19 2012
InstallationMedia: Marcelo 12.04 - Release amd64
SourcePackage: usb-creator
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: usb-creator (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug precise running-unity

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

Title:
  usb-creator has bad window resize behavior

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/usb-creator/+bug/1065825/+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   9   10   >