[Openstack] Heat templates and Quantum resources

2013-02-05 Thread Simon Pasquier
Hi all,

I have some questions regarding the integration of Quantum in Heat:
- I haven't found a way to attach an instance resource to a Quantum port
that already exists. Is it possible?
- When I create a Quantum port in my template and binds the instance to
that port, why does Heat still create an additional port to the
tenant-owned network?

I have created a very simple template to test:

{
  AWSTemplateFormatVersion : 2010-09-09,

  Description : Test creation of Quantum resources with a very simple
instance,

  Parameters : {

KeyName : {
  Description : Name of an existing EC2 KeyPair to enable SSH access
to the instances,
  Type : String
},

NetworkUuid : {
  Description : Network UUID,
  Type : String
},

SubnetUuid : {
  Description : Network UUID,
  Type : String
}
  },

  Resources : {
QuantumPort: {
  Type: OS::Quantum::Port,
  Properties: {
network_id: { Ref : NetworkUuid },
device_id: { Ref: CirrosInstance },
fixed_ips: [{
  subnet_id: { Ref : SubnetUuid },
  ip_address: 10.0.0.100
}]
  }
},

DefaultSecurityGroup : {
  Type : AWS::EC2::SecurityGroup,
  Properties : {
GroupDescription : Enable ICMP plus SSH access,
SecurityGroupIngress : [
  {IpProtocol : icmp, FromPort : -1, ToPort : -1,
CidrIp : 0.0.0.0/0},
  {IpProtocol : tcp, FromPort : 22, ToPort : 22,
CidrIp : 0.0.0.0/0}
]
  }
},

CirrosInstance: {
  Type: AWS::EC2::Instance,
  Properties: {
ImageId : cirros-0.3.0-x86_64-uec,
InstanceType   : m1.nano,
KeyName: { Ref : KeyName },
SecurityGroups : [ {Ref : DefaultSecurityGroup} ]
  }
}
  },

  Outputs : {
InstanceIPAddress : {
  Value : { Fn::GetAtt : [CirrosInstance, PrivateIp] },
  Description: Private IP address of the instance
}
  }
}

For my tests, I use devstack and the Open vSwitch plugin. After the stack
is created, the instance is up and running but it is connected to 2 ports:

$ heat stack-show cirros
+--+-+
| Property | Value
  |
+--+-+
| capabilities | []
 |
| creation_time| 2013-02-05T09:11:39Z
 |
| description  | Test creation of Quantum resources with a very
simple   |
|  | instance
 |
| disable_rollback | True
 |
| id   | 8c161ed2-691e-42e8-a872-e90f26a83ac5
 |
| links|
http://192.168.1.94:8004/v1/bc7d29521a444d59b1d68f1e0a81ce90/stacks/cirros/8c161ed2-691e-42e8-a872-e90f26a83ac5|
| notification_topics  | []
 |
| outputs  | [
  |
|  |   {
  |
|  | output_value: 10.0.0.3,
  |
|  | description: Private IP address of the
instance,|
|  | output_key: InstanceIPAddress
  |
|  |   }
  |
|  | ]
  |
| parameters   | {
  |
|  |   NetworkUuid:
e5b6584f-9ca8-4219-b2d4-1a2f56a502fe,
   |
|  |   SubnetUuid:
1aa32a3e-ec28-44aa-867c-fcb4f774fa43,
|
|  |   AWS::StackName: cirros,
  |
|  |   KeyName: test,
 |
|  |   AWS::Region: ap-southeast-1
  |
|  | }
  |
| stack_name   | cirros
 |
| stack_status | CREATE_COMPLETE
  

[Openstack] [Nova] Unable to start nova-api

2013-02-05 Thread Trinath Somanchi
Hi-



When I start the nova-api  service, I’m getting this error:



Can anyone help me troubleshoot the issue



root@NewFolsomController:/etc/nova# nova-api --flagfile=/etc/nova/nova.conf

2013-02-05 12:29:29 DEBUG nova.utils [-] Inner Exception: No module named
api from (pid=19874) import_class
/usr/lib/python2.7/dist-packages/nova/utils.py:78

2013-02-05 12:29:29 CRITICAL nova [-] Class API could not be found: No
module named api

2013-02-05 12:29:29 TRACE nova Traceback (most recent call last):

2013-02-05 12:29:29 TRACE nova   File /usr/bin/nova-api, line 51, in
module

2013-02-05 12:29:29 TRACE nova servers.append(service.WSGIService(api))

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/service.py, line 326, in __init__

2013-02-05 12:29:29 TRACE nova self.app = self.loader.load_app(name)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/wsgi.py, line 388, in load_app

2013-02-05 12:29:29 TRACE nova return deploy.loadapp(config:%s %
self.config_path, name=name)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 247, in
loadapp

2013-02-05 12:29:29 TRACE nova return loadobj(APP, uri, name=name, **kw)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 272, in
loadobj

2013-02-05 12:29:29 TRACE nova return context.create()

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 710, in
create

2013-02-05 12:29:29 TRACE nova return self.object_type.invoke(self)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 144, in
invoke

2013-02-05 12:29:29 TRACE nova **context.local_conf)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/util.py, line 56, in
fix_call

2013-02-05 12:29:29 TRACE nova val = callable(*args, **kw)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/urlmap.py, line 25, in
urlmap_factory

2013-02-05 12:29:29 TRACE nova app = loader.get_app(app_name,
global_conf=global_conf)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 350, in
get_app

2013-02-05 12:29:29 TRACE nova name=name,
global_conf=global_conf).create()

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 710, in
create

2013-02-05 12:29:29 TRACE nova return self.object_type.invoke(self)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 144, in
invoke

2013-02-05 12:29:29 TRACE nova **context.local_conf)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/util.py, line 56, in
fix_call

2013-02-05 12:29:29 TRACE nova val = callable(*args, **kw)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/api/auth.py, line 48, in
pipeline_factory

2013-02-05 12:29:29 TRACE nova filters = [loader.get_filter(n) for n in
pipeline[:-1]]

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 354, in
get_filter

2013-02-05 12:29:29 TRACE nova name=name,
global_conf=global_conf).create()

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 366, in
filter_context

2013-02-05 12:29:29 TRACE nova FILTER, name=name,
global_conf=global_conf)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 458, in
get_context

2013-02-05 12:29:29 TRACE nova section)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 517, in
_context_from_explicit

2013-02-05 12:29:29 TRACE nova value = import_string(found_expr)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 22, in
import_string

2013-02-05 12:29:29 TRACE nova return
pkg_resources.EntryPoint.parse(x= + s).load(False)

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/pkg_resources.py, line 1989, in load

2013-02-05 12:29:29 TRACE nova entry = __import__(self.module_name,
globals(),globals(), ['__name__'])

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/api/ec2/__init__.py, line 30, in
module

2013-02-05 12:29:29 TRACE nova from nova.api.ec2 import apirequest

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/api/ec2/apirequest.py, line 27, in
module

2013-02-05 12:29:29 TRACE nova from nova.api.ec2 import ec2utils

2013-02-05 12:29:29 TRACE nova   File
/usr/lib/python2.7/dist-packages/nova/api/ec2/ec2utils.py, line 25, in
module

2013-02-05 12:29:29 TRACE nova from nova import network

2013-02-05 12:29:29 TRACE nova   File

Re: [Openstack] [Nova] Unable to start nova-api

2013-02-05 Thread Unmesh Gurjar
Trinath,

You probably have a wrong config setting. Please check the value of
'network_api_class' in your nova.conf and confirm that the module with the
specified class exists.

The default value of this parameter is nova.network.api.API, so you
should expect class 'API' in nova/network/api.py of your Nova codebase.

Regards,
Unmesh.

On Tue, Feb 5, 2013 at 3:23 PM, Trinath Somanchi trinath.soman...@gmail.com
 wrote:

 Hi-



 When I start the nova-api  service, I’m getting this error:



 Can anyone help me troubleshoot the issue



 root@NewFolsomController:/etc/nova# nova-api
 --flagfile=/etc/nova/nova.conf

 2013-02-05 12:29:29 DEBUG nova.utils [-] Inner Exception: No module named
 api from (pid=19874) import_class
 /usr/lib/python2.7/dist-packages/nova/utils.py:78

 2013-02-05 12:29:29 CRITICAL nova [-] Class API could not be found: No
 module named api

 2013-02-05 12:29:29 TRACE nova Traceback (most recent call last):

 2013-02-05 12:29:29 TRACE nova   File /usr/bin/nova-api, line 51, in
 module

 2013-02-05 12:29:29 TRACE nova servers.append(service.WSGIService(api))

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/nova/service.py, line 326, in __init__

 2013-02-05 12:29:29 TRACE nova self.app = self.loader.load_app(name)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/nova/wsgi.py, line 388, in load_app

 2013-02-05 12:29:29 TRACE nova return deploy.loadapp(config:%s %
 self.config_path, name=name)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 247, in
 loadapp

 2013-02-05 12:29:29 TRACE nova return loadobj(APP, uri, name=name,
 **kw)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 272, in
 loadobj

 2013-02-05 12:29:29 TRACE nova return context.create()

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 710, in
 create

 2013-02-05 12:29:29 TRACE nova return self.object_type.invoke(self)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 144, in
 invoke

 2013-02-05 12:29:29 TRACE nova **context.local_conf)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/util.py, line 56, in
 fix_call

 2013-02-05 12:29:29 TRACE nova val = callable(*args, **kw)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/urlmap.py, line 25, in
 urlmap_factory

 2013-02-05 12:29:29 TRACE nova app = loader.get_app(app_name,
 global_conf=global_conf)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 350, in
 get_app

 2013-02-05 12:29:29 TRACE nova name=name,
 global_conf=global_conf).create()

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 710, in
 create

 2013-02-05 12:29:29 TRACE nova return self.object_type.invoke(self)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 144, in
 invoke

 2013-02-05 12:29:29 TRACE nova **context.local_conf)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/util.py, line 56, in
 fix_call

 2013-02-05 12:29:29 TRACE nova val = callable(*args, **kw)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/nova/api/auth.py, line 48, in
 pipeline_factory

 2013-02-05 12:29:29 TRACE nova filters = [loader.get_filter(n) for n
 in pipeline[:-1]]

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 354, in
 get_filter

 2013-02-05 12:29:29 TRACE nova name=name,
 global_conf=global_conf).create()

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 366, in
 filter_context

 2013-02-05 12:29:29 TRACE nova FILTER, name=name,
 global_conf=global_conf)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 458, in
 get_context

 2013-02-05 12:29:29 TRACE nova section)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 517, in
 _context_from_explicit

 2013-02-05 12:29:29 TRACE nova value = import_string(found_expr)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 22, in
 import_string

 2013-02-05 12:29:29 TRACE nova return
 pkg_resources.EntryPoint.parse(x= + s).load(False)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/pkg_resources.py, line 1989, in load

 2013-02-05 12:29:29 TRACE nova entry = __import__(self.module_name,
 globals(),globals(), ['__name__'])

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/nova/api/ec2/__init__.py, line 30, in
 module

 

Re: [Openstack] [Nova] Unable to start nova-api

2013-02-05 Thread Trinath Somanchi
Hi-

Thanks a lot for the reply.

it solved the issue.




On Tue, Feb 5, 2013 at 3:47 PM, Unmesh Gurjar unmesh.gur...@gmail.comwrote:

 Trinath,

 You probably have a wrong config setting. Please check the value of
 'network_api_class' in your nova.conf and confirm that the module with the
 specified class exists.

 The default value of this parameter is nova.network.api.API, so you
 should expect class 'API' in nova/network/api.py of your Nova codebase.

 Regards,
 Unmesh.

 On Tue, Feb 5, 2013 at 3:23 PM, Trinath Somanchi 
 trinath.soman...@gmail.com wrote:

 Hi-



 When I start the nova-api  service, I’m getting this error:



 Can anyone help me troubleshoot the issue



 root@NewFolsomController:/etc/nova# nova-api
 --flagfile=/etc/nova/nova.conf

 2013-02-05 12:29:29 DEBUG nova.utils [-] Inner Exception: No module named
 api from (pid=19874) import_class
 /usr/lib/python2.7/dist-packages/nova/utils.py:78

 2013-02-05 12:29:29 CRITICAL nova [-] Class API could not be found: No
 module named api

 2013-02-05 12:29:29 TRACE nova Traceback (most recent call last):

 2013-02-05 12:29:29 TRACE nova   File /usr/bin/nova-api, line 51, in
 module

 2013-02-05 12:29:29 TRACE nova
 servers.append(service.WSGIService(api))

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/nova/service.py, line 326, in __init__

 2013-02-05 12:29:29 TRACE nova self.app = self.loader.load_app(name)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/nova/wsgi.py, line 388, in load_app

 2013-02-05 12:29:29 TRACE nova return deploy.loadapp(config:%s %
 self.config_path, name=name)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 247, in
 loadapp

 2013-02-05 12:29:29 TRACE nova return loadobj(APP, uri, name=name,
 **kw)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 272, in
 loadobj

 2013-02-05 12:29:29 TRACE nova return context.create()

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 710, in
 create

 2013-02-05 12:29:29 TRACE nova return self.object_type.invoke(self)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 144, in
 invoke

 2013-02-05 12:29:29 TRACE nova **context.local_conf)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/util.py, line 56, in
 fix_call

 2013-02-05 12:29:29 TRACE nova val = callable(*args, **kw)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/urlmap.py, line 25, in
 urlmap_factory

 2013-02-05 12:29:29 TRACE nova app = loader.get_app(app_name,
 global_conf=global_conf)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 350, in
 get_app

 2013-02-05 12:29:29 TRACE nova name=name,
 global_conf=global_conf).create()

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 710, in
 create

 2013-02-05 12:29:29 TRACE nova return self.object_type.invoke(self)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 144, in
 invoke

 2013-02-05 12:29:29 TRACE nova **context.local_conf)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/util.py, line 56, in
 fix_call

 2013-02-05 12:29:29 TRACE nova val = callable(*args, **kw)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/nova/api/auth.py, line 48, in
 pipeline_factory

 2013-02-05 12:29:29 TRACE nova filters = [loader.get_filter(n) for n
 in pipeline[:-1]]

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 354, in
 get_filter

 2013-02-05 12:29:29 TRACE nova name=name,
 global_conf=global_conf).create()

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 366, in
 filter_context

 2013-02-05 12:29:29 TRACE nova FILTER, name=name,
 global_conf=global_conf)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 458, in
 get_context

 2013-02-05 12:29:29 TRACE nova section)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 517, in
 _context_from_explicit

 2013-02-05 12:29:29 TRACE nova value = import_string(found_expr)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 22, in
 import_string

 2013-02-05 12:29:29 TRACE nova return
 pkg_resources.EntryPoint.parse(x= + s).load(False)

 2013-02-05 12:29:29 TRACE nova   File
 /usr/lib/python2.7/dist-packages/pkg_resources.py, line 1989, in load

 2013-02-05 12:29:29 TRACE nova entry = __import__(self.module_name,
 

[Openstack] Problem starting a VM

2013-02-05 Thread Guilherme Russi
Hello friends,

 I am getting problem when I try to start a VM, it keeps ate Scheduling
task and doesn't start the VM. It is happining after I made a apt-get
update and apt-get upgrade.
 I really don't know what to do, anybody can help me, please?

Thank you.

Guilherme.
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Problem starting a VM

2013-02-05 Thread Ronivon Costa
Have you looked the compute.log file? You should really start from there. :D
Also, if you really expect some help, you must provide some information.
Search in the logs for clues, and if it can't help or you don't understand
what you see,  then send it along as well.
Roni.
 No dia 5 de Fev de 2013 11:59, Guilherme Russi 
luisguilherme...@gmail.com escreveu:

 Hello friends,

  I am getting problem when I try to start a VM, it keeps ate Scheduling
 task and doesn't start the VM. It is happining after I made a apt-get
 update and apt-get upgrade.
  I really don't know what to do, anybody can help me, please?

 Thank you.

 Guilherme.

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Problem starting a VM

2013-02-05 Thread Guilherme Russi
Hello Roni, thank you for returning,

 I don't understand the logs yet, I'm working with that, but here is a
piece of my nova-compute.log:

2013-02-05 10:11:07 11592 DEBUG nova.utils [-] Got semaphore
compute_resources for method update_available_resource... inner
/usr/lib/python2.7/dist-packages/nova/utils.py:721
2013-02-05 10:11:12 11592 DEBUG nova.compute.resource_tracker [-]
Hypervisor: free ram (MB): 7136 _report_hypervisor_resource_view
/usr/lib/python2.7/dist-packages/nova/compute/resource_tracker.py:470
2013-02-05 10:11:12 11592 DEBUG nova.compute.resource_tracker [-]
Hypervisor: free disk (GB): 88 _report_hypervisor_resource_view
/usr/lib/python2.7/dist-packages/nova/compute/resource_tracker.py:471
2013-02-05 10:11:12 11592 DEBUG nova.compute.resource_tracker [-]
Hypervisor: free VCPUs: 4 _report_hypervisor_resource_view
/usr/lib/python2.7/dist-packages/nova/compute/resource_tracker.py:476
2013-02-05 10:11:12 11592 AUDIT nova.compute.resource_tracker [-] Free ram
(MB): 7354
2013-02-05 10:11:12 11592 AUDIT nova.compute.resource_tracker [-] Free disk
(GB): 93
2013-02-05 10:11:12 11592 AUDIT nova.compute.resource_tracker [-] Free
VCPUS: 4
2013-02-05 10:11:12 11592 INFO nova.compute.resource_tracker [-]
Compute_service record updated for tiresias
2013-02-05 10:11:12 11592 DEBUG nova.manager [-] Running periodic task
ComputeManager._poll_rebooting_instances periodic_tasks
/usr/lib/python2.7/dist-packages/nova/manager.py:172
2013-02-05 10:11:12 11592 DEBUG nova.manager [-] Skipping
ComputeManager._cleanup_running_deleted_instances, 4 ticks left until next
run periodic_tasks /usr/lib/python2.7/dist-packages/nova/manager.py:167
2013-02-05 10:11:12 11592 DEBUG nova.manager [-] Running periodic task
ComputeManager._check_instance_build_time periodic_tasks
/usr/lib/python2.7/dist-packages/nova/manager.py:172
2013-02-05 10:11:12 11592 DEBUG nova.manager [-] Running periodic task
ComputeManager._heal_instance_info_cache periodic_tasks
/usr/lib/python2.7/dist-packages/nova/manager.py:172
2013-02-05 10:11:12 11592 DEBUG nova.manager [-] Running periodic task
ComputeManager._run_image_cache_manager_pass periodic_tasks
/usr/lib/python2.7/dist-packages/nova/manager.py:172
2013-02-05 10:11:12 11592 DEBUG nova.manager [-] Running periodic task
ComputeManager._reclaim_queued_deletes periodic_tasks
/usr/lib/python2.7/dist-packages/nova/manager.py:172
2013-02-05 10:11:12 11592 DEBUG nova.compute.manager [-]
FLAGS.reclaim_instance_interval = 0, skipping... _reclaim_queued_deletes
/usr/lib/python2.7/dist-packages/nova/compute/manager.py:2790
2013-02-05 10:11:12 11592 DEBUG nova.manager [-] Running periodic task
ComputeManager._report_driver_status periodic_tasks
/usr/lib/python2.7/dist-packages/nova/manager.py:172
2013-02-05 10:11:12 11592 INFO nova.compute.manager [-] Updating host status
2013-02-05 10:11:12 11592 DEBUG nova.virt.libvirt.driver [-] Updating host
stats update_status
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/driver.py:3063
2013-02-05 10:11:18 11592 DEBUG nova.manager [-] Running periodic task
ComputeManager._poll_unconfirmed_resizes periodic_tasks
/usr/lib/python2.7/dist-packages/nova/manager.py:172

Regards.

Guilherme.


2013/2/5 Ronivon Costa ronivon.co...@gmail.com

 Have you looked the compute.log file? You should really start from there.
 :D
 Also, if you really expect some help, you must provide some information.
 Search in the logs for clues, and if it can't help or you don't understand
 what you see,  then send it along as well.
 Roni.
  No dia 5 de Fev de 2013 11:59, Guilherme Russi 
 luisguilherme...@gmail.com escreveu:

  Hello friends,

  I am getting problem when I try to start a VM, it keeps ate Scheduling
 task and doesn't start the VM. It is happining after I made a apt-get
 update and apt-get upgrade.
  I really don't know what to do, anybody can help me, please?

 Thank you.

 Guilherme.

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] [OpenStack] Keystone did not start - DevStack Installation

2013-02-05 Thread Antonio Tirri
Hi all,
actually i'm trying to install OpenStack through DevStack script.
Unfortunately the installation is not successful because the keystone
service doesn't start.

This is the log of the script:

2013-02-05 13:19:05 + SCREEN_NAME=stack
2013-02-05 13:19:05 + SCREENRC=/opt/stack/devstack/stack-screenrc
2013-02-05 13:19:05 + [[ ! -e /opt/stack/devstack/stack-screenrc ]]
2013-02-05 13:19:05 + grep key /opt/stack/devstack/stack-screenrc
2013-02-05 13:19:05 ++ echo -ne '\015'
2013-02-05 13:19:05 + NL=$'\r'
2013-02-05 13:19:05 + echo 'screen -t key bash'
2013-02-05 13:19:05 + echo 'stuff cd /opt/stack/keystone 
/opt/stack/keystone/bin/keystone-all --config-file
/etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d
--debug
'
2013-02-05 13:19:05 + screen -S stack -X screen -t key
2013-02-05 13:19:05 + sleep 1.5
2013-02-05 13:19:06 + [[ -n '' ]]
2013-02-05 13:19:06 + screen -S stack -p key -X stuff 'cd
/opt/stack/keystone  /opt/stack/keystone/bin/keystone-all --config-file
/etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d
--debug || touch /opt/stack/status/stack/key.failure
'
2013-02-05 13:19:06 + echo 'Waiting for keystone to start...'
2013-02-05 13:19:06 Waiting for keystone to start...
2013-02-05 13:19:06 + timeout 60 sh -c 'while ! http_proxy= curl -s
http://163.162.24.167:5000/v2.0/ /dev/null; do sleep 1; done'
]0;stack@openstack-controller:
~/devstackstack@openstack-controller:~/devstack$
2013-02-05 13:20:06 + echo 'keystone did not start'
2013-02-05 13:20:06 keystone did not start
2013-02-05 13:20:06 + exit 1
2013-02-05 13:20:06 + clean
2013-02-05 13:20:06 + local r=1
2013-02-05 13:20:06 ++ jobs -p
2013-02-05 13:20:06 + kill
2013-02-05 13:20:06 + exit 1

How this problem can be solved?

Antonio
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Problem starting a VM

2013-02-05 Thread Ronivon Costa
Your logs contain no useful information related to your problem. You should
send the piece of log that contains the information generated when you
launched
the vm.
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] Provider network problems

2013-02-05 Thread tra26
Third time is a charm, but is there a better list for these types of
questions?

I am trying to get multiple public ips working, I've tried multiple vifs
but got stuck so I switched to possibly using a provider network and just
patching the vms to the physical network
(https://lists.launchpad.net/openstack/msg20571.html).

I currently have the bridges setup with OVS and setup a flat provider
network in quantum. If I have a dhcp server on the provider network, the
nodes get an ip address but are inaccessible via that IP. Previously if
there was a private vm network also attached to the machine I could access
them via that and configure the interface, to the same result the
interface is effectively dead. I'm not sure if this is some sort of
firewall problem or something else entirely but I don't know how to debug
this one. Is there any way to test that I setup the network correctly or
does anyone have insight into this problem?

Thanks,
Trevor Adams


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] NFS + RDMA == stuck at Booting from hard disk

2013-02-05 Thread Mark Lehrer


Has anyone here been able to make Openstack + KVM work with Infiniband  
NFS-RDMA?


I finally found the solution to this and wanted to pass it along.

RDMA does not work with cache=none.  There is an auto-detect routine
deep within the python code that is supposed to switch this to
writeback, but it doesn't detect RDMA.  Luckily, the VM's that start
on this set of compute nodes are fine with cache=unsafe so I am
using that instead.

I can send a patch to detect RDMA if this is still a problem in Grizzly.

Thanks,
Mark

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Problem starting a VM

2013-02-05 Thread Pranav
I believe that you have broken your configuration files. Please do make
sure that your nova confi files are proper. I had similar issue where in i
had to change the libvirt option to QEMU because some KVM issue and the
images started spawning.
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Problem starting a VM

2013-02-05 Thread Guilherme Russi
I found a solution, I guess, well, I droped the tables from quantum and
create a network range again, and it worked again. Now I'm trying to figure
out how to insert a floating IP to ssh and ping in my VMs. Do you have any
ideas? I can login in the VM, but when I type sudo ifconfig -a it has no IP.

Thank you all.

Guilherme.


2013/2/5 Pranav pps.pra...@gmail.com

 I believe that you have broken your configuration files. Please do make
 sure that your nova confi files are proper. I had similar issue where in i
 had to change the libvirt option to QEMU because some KVM issue and the
 images started spawning.

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [OpenStack] Keystone did not start - DevStack Installation

2013-02-05 Thread Adam Young

On 02/05/2013 08:00 AM, Antonio Tirri wrote:

Hi all,
actually i'm trying to install OpenStack through DevStack script. 
Unfortunately the installation is not successful because the keystone 
service doesn't start.


This is the log of the script:

2013-02-05 13:19:05 + SCREEN_NAME=stack
2013-02-05 13:19:05 + SCREENRC=/opt/stack/devstack/stack-screenrc
2013-02-05 13:19:05 + [[ ! -e /opt/stack/devstack/stack-screenrc ]]
2013-02-05 13:19:05 + grep key /opt/stack/devstack/stack-screenrc
2013-02-05 13:19:05 ++ echo -ne '\015'
2013-02-05 13:19:05 + NL=$'\r'
2013-02-05 13:19:05 + echo 'screen -t key bash'
2013-02-05 13:19:05 + echo 'stuff cd /opt/stack/keystone  
/opt/stack/keystone/bin/keystone-all --config-file 
/etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d 
--debug

'
2013-02-05 13:19:05 + screen -S stack -X screen -t key
2013-02-05 13:19:05 + sleep 1.5
2013-02-05 13:19:06 + [[ -n '' ]]
2013-02-05 13:19:06 + screen -S stack -p key -X stuff 'cd 
/opt/stack/keystone  /opt/stack/keystone/bin/keystone-all 
--config-file /etc/keystone/keystone.conf --log-config 
/etc/keystone/logging.conf -d --debug || touch 
/opt/stack/status/stack/key.failure

'
2013-02-05 13:19:06 + echo 'Waiting for keystone to start...'
2013-02-05 13:19:06 Waiting for keystone to start...
2013-02-05 13:19:06 + timeout 60 sh -c 'while ! http_proxy= curl -s 
http://163.162.24.167:5000/v2.0/ /dev/null; do sleep 1; done'
]0;stack@openstack-controller: 
~/devstackstack@openstack-controller:~/devstack$ 2013-02-05 13:20:06 
+ echo 'keystone did not start'

2013-02-05 13:20:06 keystone did not start
2013-02-05 13:20:06 + exit 1
2013-02-05 13:20:06 + clean
2013-02-05 13:20:06 + local r=1
2013-02-05 13:20:06 ++ jobs -p
2013-02-05 13:20:06 + kill
2013-02-05 13:20:06 + exit 1

How this problem can be solved?

Antonio


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp
screen -S stack -p key -X stuff 'cd /opt/stack/keystone  
/opt/stack/keystone/bin/keystone-all --config-file 
/etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d 
--debug || touch /opt/stack/status/stack/key.failure



Is the command that starts keystone.  From the above, it not clear why 
it is failing.  You should be able to run it interactively with:


cd /opt/stack/keystone

/opt/stack/keystone/bin/keystone-all --config-file 
/etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d 
--debug


And get more output.  If it swallows all the output, look in 
/etc/keystone/logging.conf to see what it is set at.  It might be 
sending it to a log file, such as /var/log/keystone






___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] [OSSA 2013-003] Keystone denial of service through invalid token requests (CVE-2013-0247)

2013-02-05 Thread Thierry Carrez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

OpenStack Security Advisory: 2013-003
CVE: CVE-2013-0247
Date: February 5, 2013
Title: Keystone denial of service through invalid token requests
Reporter: Dan Prince (Red Hat)
Products: Keystone
Affects: All versions

Description:
Dan Prince of Red Hat reported a vulnerability in token creation error
handling in Keystone. By requesting lots of invalid tokens, an
unauthenticated user may fill up logs on Keystone API servers disks,
potentially resulting in a denial of service attack against Keystone.

Grizzly (development branch) fix:
https://github.com/openstack/keystone/commit/8ec247bf61be0e487332d5d891246d2b7b606989

Folsom fix:
https://github.com/openstack/keystone/commit/bb2226f944aaa38beb7fc08ce0a78796e51e2680

Essex fix:
https://review.openstack.org/#/c/21216/

References:
https://bugs.launchpad.net/keystone/+bug/1098307
http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=2013-0247

- -- 
Thierry Carrez (ttx)
OpenStack Vulnerability Management Team
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with undefined - http://www.enigmail.net/

iQIcBAEBCAAGBQJRETGUAAoJEFB6+JAlsQQjbC0QAIzjY1gNe/Lr2X+xDOvz+q2v
7O6Tn2ZV3X1/fgdVbicl4CVnNzkb3mbG1/pIEl7FbpSFfY6a3a8leJZD7u9bKB6z
M4xNGXITGJoT7HBo8ABvDH4X6p5oA/LDkuCZVotY4SHa5xIYRcQk884DbnIYoGe7
zXEek352gHgX7m0DmABm8Pz8E+IpyFIp8rdPEv4w9EeVDJmjhZvcgsMhKZmNahph
DyBMDvdGY7nXeurzI43tMdWHkqYCljq1qagLqzNxjXJj796FNixUdwnBfmvkRuDI
XvNOGQEnwWMdwRhHgQm9C6o9Y8OYnA2XXLxjKhYuNOYT09c2ZPqhITuT1Aka8eg4
Xnqt6OnGLhA8qq0zYfRPGAZFXghQ20NqSDU4CaZntYS9bFUZjQegnKA9qmo2bdJp
TbtE/UoZgDAxAvm5n0myHuT2nw75RCM0FWvbKA6VpgK2qikx77rK6/Y5M68F1288
hj7qxMUrbsj0aNBPoWkgpUdIzH3oLsvVq4tRxhSUGj06UIOtXo9QVpxRjmOU46eM
HKKL0n2Gfmi+kXgJfUdlGeQjlYUnNIx4pljn0RHRwyc5nLGdLUTy6ufnRclYRKSY
roS2qlrR+gDkKeHP3JS1zcdFblg/VKrAK5IN+JIeKRbZ+l/g2ghFemoVYjdduR3E
IRB0CC4khRi7njgBdDl1
=CzsK
-END PGP SIGNATURE-

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [OpenStack] Keystone did not start - DevStack Installation

2013-02-05 Thread Antonio Tirri
Hi Adam,
thanks for your answer.

First of all, the full log of my script is here
www.forumaltavilla.it/joomla/Documenti/log_devstack.txt

It seems that there are some problems in managing user permissions. Even if
I included the stack user in /etc/sudoers adding the following line

stack ALL=(ALL) NOPASSWD: ALL

Moreover, i can't execute the script as root because, by default, it switch
to the stack user.

however, the output of the command
/opt/stack/keystone/bin/keystone-all --config-file
/etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d
--debug

 is

stack@openstack-controller:~/keystone$ /opt/stack/keystone/bin/keystone-all
--config-file /etc/keystone/keystone.conf --log-config
/etc/keystone/logging.conf -d --debug
Traceback (most recent call last):
  File /opt/stack/keystone/bin/keystone-all, line 82, in module
config.setup_logging(CONF)
  File /opt/stack/keystone/keystone/config.py, line 41, in setup_logging
logging.config.fileConfig(conf.log_config)
  File /usr/lib/python2.7/logging/config.py, line 78, in fileConfig
handlers = _install_handlers(cp, formatters)
  File /usr/lib/python2.7/logging/config.py, line 156, in
_install_handlers
h = klass(*args)
  File /usr/lib/python2.7/logging/__init__.py, line 897, in __init__
StreamHandler.__init__(self, self._open())
  File /usr/lib/python2.7/logging/__init__.py, line 916, in _open
stream = open(self.baseFilename, self.mode)
IOError: [Errno 13] Permission denied: '/opt/stack/keystone/keystone.log'

while if i launch that command with sudo, it seems that it runs.

Thank you,
Antonio

On 5 February 2013 17:04, Adam Young ayo...@redhat.com wrote:

  On 02/05/2013 08:00 AM, Antonio Tirri wrote:

 Hi all,
 actually i'm trying to install OpenStack through DevStack script.
 Unfortunately the installation is not successful because the keystone
 service doesn't start.

 This is the log of the script:

 2013-02-05 13:19:05 + SCREEN_NAME=stack
 2013-02-05 13:19:05 + SCREENRC=/opt/stack/devstack/stack-screenrc
 2013-02-05 13:19:05 + [[ ! -e /opt/stack/devstack/stack-screenrc ]]
 2013-02-05 13:19:05 + grep key /opt/stack/devstack/stack-screenrc
 2013-02-05 13:19:05 ++ echo -ne '\015'
 2013-02-05 13:19:05 + NL=$'\r'
 2013-02-05 13:19:05 + echo 'screen -t key bash'
 2013-02-05 13:19:05 + echo 'stuff cd /opt/stack/keystone 
 /opt/stack/keystone/bin/keystone-all --config-file
 /etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d
 --debug
 '
 2013-02-05 13:19:05 + screen -S stack -X screen -t key
 2013-02-05 13:19:05 + sleep 1.5
 2013-02-05 13:19:06 + [[ -n '' ]]
 2013-02-05 13:19:06 + screen -S stack -p key -X stuff 'cd
 /opt/stack/keystone  /opt/stack/keystone/bin/keystone-all --config-file
 /etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d
 --debug || touch /opt/stack/status/stack/key.failure
 '
 2013-02-05 13:19:06 + echo 'Waiting for keystone to start...'
 2013-02-05 13:19:06 Waiting for keystone to start...
 2013-02-05 13:19:06 + timeout 60 sh -c 'while ! http_proxy= curl -s
 http://163.162.24.167:5000/v2.0/ /dev/null; do sleep 1; done'
 ]0;stack@openstack-controller: ~/devstack 
 stack@openstack-controller:~/devstack$
 2013-02-05 13:20:06 + echo 'keystone did not start'
 2013-02-05 13:20:06 keystone did not start
 2013-02-05 13:20:06 + exit 1
 2013-02-05 13:20:06 + clean
 2013-02-05 13:20:06 + local r=1
 2013-02-05 13:20:06 ++ jobs -p
 2013-02-05 13:20:06 + kill
 2013-02-05 13:20:06 + exit 1

 How this problem can be solved?

 Antonio


 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp

  screen -S stack -p key -X stuff 'cd /opt/stack/keystone 
 /opt/stack/keystone/bin/keystone-all --config-file
 /etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d
 --debug || touch /opt/stack/status/stack/key.failure


 Is the command that starts keystone.  From the above, it not clear why it
 is failing.  You should be able to run it interactively with:

 cd /opt/stack/keystone


 /opt/stack/keystone/bin/keystone-all --config-file
 /etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d
 --debug

 And get more output.  If it swallows all the output, look in
 /etc/keystone/logging.conf to see what it is set at.  It might be sending
 it to a log file, such as /var/log/keystone






 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] Unable to start swift proxy service

2013-02-05 Thread Guillaume Hilt

Hello,

I installed swift on Ubuntu 12.04 AMD64 following this howto:
http://docs.openstack.org/developer/swift/howto_installmultinode.html

However, although the storage nodes work fine, I can't start the proxy 
node :
Feb  5 18:00:06 srv13 proxy-server UNCAUGHT EXCEPTION Traceback (most 
recent call last):   File /usr/bin/swift-proxy-server, line 22, in 
module run_wsgi(conf_file, 'proxy-server', default_port=8080, 
**options)   File 
/usr/lib/python2.7/dist-packages/swift/common/wsgi.py, line 125, in 
run_wsgi capture_stdio(logger)   File 
/usr/lib/python2.7/dist-packages/swift/common/utils.py, line 499, in 
capture_stdio with open(os.devnull, 'r+b') as nullfile: IOError: 
[Errno 13] Permission denied: '/dev/null'


/dev# ll null
crw-r--r-- 1 root root 1, 3 Jan 25 17:43 null

Any idea ?

Thanks,

--
  Guillaume Hilt


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [OpenStack] Keystone did not start - DevStack Installation

2013-02-05 Thread Adam Young

You probably created
/opt/stack/keystone/keystone.log

as root at one point.  Either delete it, or chown it to the stack user.

On 02/05/2013 12:05 PM, Antonio Tirri wrote:

Hi Adam,
thanks for your answer.

First of all, the full log of my script is here
www.forumaltavilla.it/joomla/Documenti/log_devstack.txt 
http://www.forumaltavilla.it/joomla/Documenti/log_devstack.txt


It seems that there are some problems in managing user permissions. 
Even if I included the stack user in /etc/sudoers adding the following 
line


stack ALL=(ALL) NOPASSWD: ALL

Moreover, i can't execute the script as root because, by default, it 
switch to the stack user.


however, the output of the command
/opt/stack/keystone/bin/keystone-all --config-file 
/etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d 
--debug


 is

stack@openstack-controller:~/keystone$ 
/opt/stack/keystone/bin/keystone-all --config-file 
/etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d 
--debug

Traceback (most recent call last):
  File /opt/stack/keystone/bin/keystone-all, line 82, in module
config.setup_logging(CONF)
  File /opt/stack/keystone/keystone/config.py, line 41, in setup_logging
logging.config.fileConfig(conf.log_config)
  File /usr/lib/python2.7/logging/config.py, line 78, in fileConfig
handlers = _install_handlers(cp, formatters)
  File /usr/lib/python2.7/logging/config.py, line 156, in 
_install_handlers

h = klass(*args)
  File /usr/lib/python2.7/logging/__init__.py, line 897, in __init__
StreamHandler.__init__(self, self._open())
  File /usr/lib/python2.7/logging/__init__.py, line 916, in _open
stream = open(self.baseFilename, self.mode)
IOError: [Errno 13] Permission denied: '/opt/stack/keystone/keystone.log'

while if i launch that command with sudo, it seems that it runs.

Thank you,
Antonio

On 5 February 2013 17:04, Adam Young ayo...@redhat.com 
mailto:ayo...@redhat.com wrote:


On 02/05/2013 08:00 AM, Antonio Tirri wrote:

Hi all,
actually i'm trying to install OpenStack through DevStack script.
Unfortunately the installation is not successful because the
keystone service doesn't start.

This is the log of the script:

2013-02-05 13:19:05 + SCREEN_NAME=stack
2013-02-05 13:19:05 + SCREENRC=/opt/stack/devstack/stack-screenrc
2013-02-05 13:19:05 + [[ ! -e /opt/stack/devstack/stack-screenrc ]]
2013-02-05 13:19:05 + grep key /opt/stack/devstack/stack-screenrc
2013-02-05 13:19:05 ++ echo -ne '\015'
2013-02-05 13:19:05 + NL=$'\r'
2013-02-05 13:19:05 + echo 'screen -t key bash'
2013-02-05 13:19:05 + echo 'stuff cd /opt/stack/keystone 
/opt/stack/keystone/bin/keystone-all --config-file
/etc/keystone/keystone.conf --log-config
/etc/keystone/logging.conf -d --debug
'
2013-02-05 13:19:05 + screen -S stack -X screen -t key
2013-02-05 13:19:05 + sleep 1.5
2013-02-05 13:19:06 + [[ -n '' ]]
2013-02-05 13:19:06 + screen -S stack -p key -X stuff 'cd
/opt/stack/keystone  /opt/stack/keystone/bin/keystone-all
--config-file /etc/keystone/keystone.conf --log-config
/etc/keystone/logging.conf -d --debug || touch
/opt/stack/status/stack/key.failure
'
2013-02-05 13:19:06 + echo 'Waiting for keystone to start...'
2013-02-05 13:19:06 Waiting for keystone to start...
2013-02-05 13:19:06 + timeout 60 sh -c 'while ! http_proxy= curl
-s http://163.162.24.167:5000/v2.0/ /dev/null; do sleep 1; done'
]0;stack@openstack-controller: ~/devstack
stack@openstack-controller:~/devstack$ 2013-02-05 13:20:06 + echo
'keystone did not start'
2013-02-05 13:20:06 keystone did not start
2013-02-05 13:20:06 + exit 1
2013-02-05 13:20:06 + clean
2013-02-05 13:20:06 + local r=1
2013-02-05 13:20:06 ++ jobs -p
2013-02-05 13:20:06 + kill
2013-02-05 13:20:06 + exit 1

How this problem can be solved?

Antonio


___
Mailing list:https://launchpad.net/~openstack  
https://launchpad.net/%7Eopenstack
Post to :openstack@lists.launchpad.net  
mailto:openstack@lists.launchpad.net
Unsubscribe :https://launchpad.net/~openstack  
https://launchpad.net/%7Eopenstack
More help   :https://help.launchpad.net/ListHelp

screen -S stack -p key -X stuff 'cd /opt/stack/keystone 
/opt/stack/keystone/bin/keystone-all --config-file
/etc/keystone/keystone.conf --log-config
/etc/keystone/logging.conf -d --debug || touch
/opt/stack/status/stack/key.failure


Is the command that starts keystone.  From the above, it not clear
why it is failing.  You should be able to run it interactively with:

cd /opt/stack/keystone


/opt/stack/keystone/bin/keystone-all --config-file
/etc/keystone/keystone.conf --log-config
/etc/keystone/logging.conf -d --debug

And get more output.  If it swallows all the output, look in
/etc/keystone/logging.conf to see what it is set at.  It 

[Openstack] Help with VMs

2013-02-05 Thread Harvey West
Not used openstack or this email forum before.

Have installed openstack on unbuntu 12.4.1 LTS. Seems to work with the default 
unbuntu VM image.

How do I create a new image. I would to create a FreeBSS VM instance. Is this 
possible?

Harvey___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Problem starting a VM

2013-02-05 Thread Guilherme Russi
Guys, I'm trying to create the network to connect my VMs, but they don't
receive the IP, my network configs in the controller node is:

# eth1 - link external with the internet
address 10.3.77.51

# eth0 - link internal to connect the compute nodes
address 192.168.3.1

And in my compute note I have:


# eth1 - link external with the internet
address 10.3.77.52

# eth0 - link internal to connect to the cloud
address 192.168.3.2

What am I doing wrong?

Regards.

Guilherme.


2013/2/5 Guilherme Russi luisguilherme...@gmail.com

 I found a solution, I guess, well, I droped the tables from quantum and
 create a network range again, and it worked again. Now I'm trying to figure
 out how to insert a floating IP to ssh and ping in my VMs. Do you have any
 ideas? I can login in the VM, but when I type sudo ifconfig -a it has no IP.

 Thank you all.

 Guilherme.


 2013/2/5 Pranav pps.pra...@gmail.com

  I believe that you have broken your configuration files. Please do make
 sure that your nova confi files are proper. I had similar issue where in i
 had to change the libvirt option to QEMU because some KVM issue and the
 images started spawning.

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp



___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Unable to start swift proxy service

2013-02-05 Thread Samuel Merritt

On 2/5/13 9:04 AM, Guillaume Hilt wrote:

Hello,

I installed swift on Ubuntu 12.04 AMD64 following this howto:
http://docs.openstack.org/developer/swift/howto_installmultinode.html

However, although the storage nodes work fine, I can't start the proxy
node :
Feb  5 18:00:06 srv13 proxy-server UNCAUGHT EXCEPTION Traceback (most
recent call last):   File /usr/bin/swift-proxy-server, line 22, in
module run_wsgi(conf_file, 'proxy-server', default_port=8080,
**options)   File
/usr/lib/python2.7/dist-packages/swift/common/wsgi.py, line 125, in
run_wsgi capture_stdio(logger)   File
/usr/lib/python2.7/dist-packages/swift/common/utils.py, line 499, in
capture_stdio with open(os.devnull, 'r+b') as nullfile: IOError:
[Errno 13] Permission denied: '/dev/null'

/dev# ll null
crw-r--r-- 1 root root 1, 3 Jan 25 17:43 null


Looks like something screwed up the permissions on your /dev/null. It 
should be world-writable (mode 0666).



___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Help with VMs

2013-02-05 Thread Lloyd Dewolf
On Tue, Feb 5, 2013 at 10:19 AM, Harvey West harvey.w...@btinternet.comwrote:

 Not used openstack or this email forum before.

 Have installed openstack on unbuntu 12.4.1 LTS. Seems to work with the
 default unbuntu VM image.

 How do I create a new image. I would to create a FreeBSS VM instance. Is
 this possible?


Hi Harvey,


I have not created any BSD images, but as is no surprise it is fully
supported by KVM, http://www.linux-kvm.org/page/Guest_Support_Status

My searching for bsd guest kvm returns a lot of encouraging results, and
the content should generally be applicable.

http://cssoss.wordpress.com/2011/11/28/bundling-freebsd-image-for-openstack/still
looks good, though you'll want to use the native image API (glance
client) for uploading the image.



Hope that helps,
--
@lloyddewolf
http://www.pistoncloud.com/
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Heat templates and Quantum resources

2013-02-05 Thread Steve Baker
Hi Simon

There is an existing Launchpad bug for this issue:
https://bugs.launchpad.net/heat/+bug/1096013

I've added your email to the comments.  I'll most likely be working on
this area next so I'll let you know when there is a change in the
current behavior.

cheers

On 02/05/2013 10:40 PM, Simon Pasquier wrote:
 Hi all,

 I have some questions regarding the integration of Quantum in Heat:
 - I haven't found a way to attach an instance resource to a Quantum
 port that already exists. Is it possible?
 - When I create a Quantum port in my template and binds the instance
 to that port, why does Heat still create an additional port to the
 tenant-owned network?

 I have created a very simple template to test:

 {
   AWSTemplateFormatVersion : 2010-09-09,

   Description : Test creation of Quantum resources with a very
 simple instance,

   Parameters : {

 KeyName : {
   Description : Name of an existing EC2 KeyPair to enable SSH
 access to the instances,
   Type : String
 },

 NetworkUuid : {
   Description : Network UUID,
   Type : String
 },

 SubnetUuid : {
   Description : Network UUID,
   Type : String
 }
   },

   Resources : {
 QuantumPort: {
   Type: OS::Quantum::Port,
   Properties: {
 network_id: { Ref : NetworkUuid },
 device_id: { Ref: CirrosInstance },
 fixed_ips: [{
   subnet_id: { Ref : SubnetUuid },
   ip_address: 10.0.0.100
 }]
   }
 },

 DefaultSecurityGroup : {
   Type : AWS::EC2::SecurityGroup,
   Properties : {
 GroupDescription : Enable ICMP plus SSH access,
 SecurityGroupIngress : [
   {IpProtocol : icmp, FromPort : -1, ToPort : -1,
 CidrIp : 0.0.0.0/0 http://0.0.0.0/0},
   {IpProtocol : tcp, FromPort : 22, ToPort : 22,
 CidrIp : 0.0.0.0/0 http://0.0.0.0/0}
 ]
   }
 },

 CirrosInstance: {
   Type: AWS::EC2::Instance,
   Properties: {
 ImageId : cirros-0.3.0-x86_64-uec,
 InstanceType   : m1.nano,
 KeyName: { Ref : KeyName },
 SecurityGroups : [ {Ref : DefaultSecurityGroup} ]
   }
 }
   },

   Outputs : {
 InstanceIPAddress : {
   Value : { Fn::GetAtt : [CirrosInstance, PrivateIp] },
   Description: Private IP address of the instance
 }
   }
 }

 For my tests, I use devstack and the Open vSwitch plugin. After the
 stack is created, the instance is up and running but it is connected
 to 2 ports:

 $ heat stack-show cirros
 +--+-+
 | Property | Value
   |
 +--+-+
 | capabilities | []  
|
 | creation_time| 2013-02-05T09:11:39Z
|
 | description  | Test creation of Quantum resources with a
 very simple   |
 |  | instance
|
 | disable_rollback | True
|
 | id   | 8c161ed2-691e-42e8-a872-e90f26a83ac5
|
 | links|
 http://192.168.1.94:8004/v1/bc7d29521a444d59b1d68f1e0a81ce90/stacks/cirros/8c161ed2-691e-42e8-a872-e90f26a83ac5
 |
 | notification_topics  | []  
|
 | outputs  | [
   |
 |  |   {  
   |
 |  | output_value: 10.0.0.3,  
   |
 |  | description: Private IP address of the
 instance,|
 |  | output_key: InstanceIPAddress
   |
 |  |   }  
   |
 |  | ]
 

[Openstack] How the linux bridge work in Quantum

2013-02-05 Thread Lei Zhang
Hi all,
I am learning the Quantum project. But I am confused about the whole
architecture. Is there any article to explain how the package flow in the
network model, which will help me to debug the network issue.
For example, how the ping package flow from the VMs to the external
internet?

-- 
Lei Zhang

Blog: http://jeffrey4l.github.com
twitter/weibo: @jeffrey4l
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] How the linux bridge work in Quantum

2013-02-05 Thread Lei Zhang
Directly, here is the issue I meet.

I start a all-in-one openstack Folsom with Quantum network( using linux
bridge plugin)

   - First I can not ping outside of the host. Following is the network
   setting. I think this should be work. But I can ping 10.10.0.1(gate way) in
   the host
   - Second, what's the usage for ns-1c37cab7-6b qg-82fef397-e1
   qg-82fef397-e1, they are attached on nothing bridge.

eth0: public Ethernet 10.10.0.0/24
eth1: private Ethernet 192.168.101.0/24
eth2: manage Ethernet 10.12.0.0/24


[root@all-in-one ~]# brctl show
bridge namebridge idSTP enabledinterfaces
brq3958ea96-9d8000.080027f1f512noeth0
tap82fef397-e1
brq399d07f4-8c8000.080027b61c6fnoeth1.101
tap1c37cab7-6b
tap21afddbd-80
tap629410b3-2d

*Part of ip link*

[root@all-in-one ~]# ip link

2: eth0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast
state UP qlen 1000
link/ether 08:00:27:f1:f5:12 brd ff:ff:ff:ff:ff:ff
3: eth1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast
state UP qlen 1000
link/ether 08:00:27:b6:1c:6f brd ff:ff:ff:ff:ff:ff
10: eth1.101@eth1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc
noqueue state UP
link/ether 08:00:27:b6:1c:6f brd ff:ff:ff:ff:ff:ff

* Part of ip addr*

[root@all-in-one instance-0005]# ip a

2: eth0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast
state UP qlen 1000
link/ether 08:00:27:f1:f5:12 brd ff:ff:ff:ff:ff:ff
inet6 fe80::a00:27ff:fef1:f512/64 scope link
   valid_lft forever preferred_lft forever
3: eth1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast
state UP qlen 1000
link/ether 08:00:27:b6:1c:6f brd ff:ff:ff:ff:ff:ff
inet6 fe80::a00:27ff:feb6:1c6f/64 scope link
   valid_lft forever preferred_lft forever
8: qr-21afddbd-80: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc
pfifo_fast state UP qlen 1000
link/ether 22:af:8e:70:bf:43 brd ff:ff:ff:ff:ff:ff
inet 192.168.101.1/24 brd 192.168.101.255 scope global qr-21afddbd-80
inet6 fe80::20af:8eff:fe70:bf43/64 scope link
   valid_lft forever preferred_lft forever
10: eth1.101@eth1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc
noqueue state UP
link/ether 08:00:27:b6:1c:6f brd ff:ff:ff:ff:ff:ff
inet6 fe80::a00:27ff:feb6:1c6f/64 scope link
   valid_lft forever preferred_lft forever
11: brq399d07f4-8c: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc
noqueue state UNKNOWN
link/ether 08:00:27:b6:1c:6f brd ff:ff:ff:ff:ff:ff
inet6 fe80::a0ef:23ff:fe72:8085/64 scope link
   valid_lft forever preferred_lft forever
12: qg-82fef397-e1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc
pfifo_fast state UP qlen 1000
link/ether 42:de:03:55:d6:96 brd ff:ff:ff:ff:ff:ff
inet 10.10.0.2/24 brd 10.10.0.255 scope global qg-82fef397-e1
inet6 fe80::40de:3ff:fe55:d696/64 scope link
   valid_lft forever preferred_lft forever
14: brq3958ea96-9d: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc
noqueue state UNKNOWN
link/ether 08:00:27:f1:f5:12 brd ff:ff:ff:ff:ff:ff
inet 10.10.0.200/24 brd 10.10.0.255 scope global brq3958ea96-9d
inet6 fe80::b4a2:c5ff:fe8c:3b1c/64 scope link
   valid_lft forever preferred_lft forever
15: ns-1c37cab7-6b: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc
pfifo_fast state UP qlen 1000
link/ether 2e:0d:c2:31:23:23 brd ff:ff:ff:ff:ff:ff
inet 192.168.101.2/24 brd 192.168.101.255 scope global ns-1c37cab7-6b
inet6 fe80::2c0d:c2ff:fe31:2323/64 scope link
   valid_lft forever preferred_lft forever

* ip route *

[root@all-in-one instance-0005]# ip r 192.168.101.0/24 dev
ns-1c37cab7-6b  proto kernel  scope link  src 192.168.101.2
192.168.101.0/24 dev qr-21afddbd-80  proto kernel  scope link  src
192.168.101.1 10.10.0.0/24 dev qg-82fef397-e1  proto kernel  scope
link  src 10.10.0.2 10.10.0.0/24 dev brq3958ea96-9d  proto kernel
scope link  src 10.10.0.200 10.12.0.0/24 dev eth2  proto kernel  scope
link  src 10.12.0.2 169.254.0.0/16 dev eth1  scope link  metric 1003
default via 10.10.0.1 dev brq3958ea96-9d  metric 100



On Wed, Feb 6, 2013 at 1:31 PM, Lei Zhang zhang.lei@gmail.com wrote:

 Hi all,
 I am learning the Quantum project. But I am confused about the whole
 architecture. Is there any article to explain how the package flow in the
 network model, which will help me to debug the network issue.
 For example, how the ping package flow from the VMs to the external
 internet?

 --
 Lei Zhang

 Blog: http://jeffrey4l.github.com
 twitter/weibo: @jeffrey4l




-- 
Lei Zhang

Blog: http://jeffrey4l.github.com
twitter/weibo: @jeffrey4l
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] How the linux bridge work in Quantum

2013-02-05 Thread Lei Zhang
I am following the steps from
http://d.hatena.ne.jp/enakai00/20121118/1353226066


On Wed, Feb 6, 2013 at 2:36 PM, Lei Zhang zhang.lei@gmail.com wrote:

  Directly, here is the issue I meet.

 I start a all-in-one openstack Folsom with Quantum network( using linux
 bridge plugin)

- First I can not ping outside of the host. Following is the network
setting. I think this should be work. But I can ping 10.10.0.1(gate way) in
the host
- Second, what's the usage for ns-1c37cab7-6b qg-82fef397-e1
qg-82fef397-e1, they are attached on nothing bridge.

 eth0: public Ethernet 10.10.0.0/24
 eth1 http://10.10.0.0/24eth1: private Ethernet 192.168.101.0/24
 eth2 http://192.168.101.0/24eth2: manage Ethernet 10.12.0.0/24


 [root@all-in-one ~]# brctl show
 bridge namebridge idSTP enabledinterfaces
 brq3958ea96-9d8000.080027f1f512noeth0
 tap82fef397-e1
 brq399d07f4-8c8000.080027b61c6fnoeth1.101
 tap1c37cab7-6b
 tap21afddbd-80
 tap629410b3-2d

 *Part of ip link*

 [root@all-in-one ~]# ip link

 2: eth0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast state UP 
 qlen 1000
 link/ether 08:00:27:f1:f5:12 brd ff:ff:ff:ff:ff:ff
 3: eth1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast state UP 
 qlen 1000
 link/ether 08:00:27:b6:1c:6f brd ff:ff:ff:ff:ff:ff
 10: eth1.101@eth1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue 
 state UP
 link/ether 08:00:27:b6:1c:6f brd ff:ff:ff:ff:ff:ff

 * Part of ip addr*

 [root@all-in-one instance-0005]# ip a

 2: eth0: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast state UP 
 qlen 1000
 link/ether 08:00:27:f1:f5:12 brd ff:ff:ff:ff:ff:ff
 inet6 fe80::a00:27ff:fef1:f512/64 scope link
valid_lft forever preferred_lft forever
 3: eth1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc pfifo_fast state UP 
 qlen 1000
 link/ether 08:00:27:b6:1c:6f brd ff:ff:ff:ff:ff:ff
 inet6 fe80::a00:27ff:feb6:1c6f/64 scope link
valid_lft forever preferred_lft forever
 8: qr-21afddbd-80: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc 
 pfifo_fast state UP qlen 1000
 link/ether 22:af:8e:70:bf:43 brd ff:ff:ff:ff:ff:ff
 inet 192.168.101.1/24 brd 192.168.101.255 scope global qr-21afddbd-80
 inet6 fe80::20af:8eff:fe70:bf43/64 scope link
valid_lft forever preferred_lft forever
 10: eth1.101@eth1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue 
 state UP
 link/ether 08:00:27:b6:1c:6f brd ff:ff:ff:ff:ff:ff
 inet6 fe80::a00:27ff:feb6:1c6f/64 scope link
valid_lft forever preferred_lft forever
 11: brq399d07f4-8c: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue 
 state UNKNOWN
 link/ether 08:00:27:b6:1c:6f brd ff:ff:ff:ff:ff:ff
 inet6 fe80::a0ef:23ff:fe72:8085/64 scope link
valid_lft forever preferred_lft forever
 12: qg-82fef397-e1: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc 
 pfifo_fast state UP qlen 1000
 link/ether 42:de:03:55:d6:96 brd ff:ff:ff:ff:ff:ff
 inet 10.10.0.2/24 brd 10.10.0.255 scope global qg-82fef397-e1
 inet6 fe80::40de:3ff:fe55:d696/64 scope link
valid_lft forever preferred_lft forever
 14: brq3958ea96-9d: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc noqueue 
 state UNKNOWN
 link/ether 08:00:27:f1:f5:12 brd ff:ff:ff:ff:ff:ff
 inet 10.10.0.200/24 brd 10.10.0.255 scope global brq3958ea96-9d
 inet6 fe80::b4a2:c5ff:fe8c:3b1c/64 scope link
valid_lft forever preferred_lft forever
 15: ns-1c37cab7-6b: BROADCAST,MULTICAST,UP,LOWER_UP mtu 1500 qdisc 
 pfifo_fast state UP qlen 1000
 link/ether 2e:0d:c2:31:23:23 brd ff:ff:ff:ff:ff:ff
 inet 192.168.101.2/24 brd 192.168.101.255 scope global ns-1c37cab7-6b
 inet6 fe80::2c0d:c2ff:fe31:2323/64 scope link
valid_lft forever preferred_lft forever

 * ip route *

 [root@all-in-one instance-0005]# ip r 192.168.101.0/24 dev ns-1c37cab7-6b 
  proto kernel  scope link  src 192.168.101.2 192.168.101.0/24 dev 
 qr-21afddbd-80  proto kernel  scope link  src 192.168.101.1 10.10.0.0/24 dev 
 qg-82fef397-e1  proto kernel  scope link  src 10.10.0.2 10.10.0.0/24 dev 
 brq3958ea96-9d  proto kernel  scope link  src 10.10.0.200 10.12.0.0/24 dev 
 eth2  proto kernel  scope link  src 10.12.0.2 169.254.0.0/16 dev eth1  scope 
 link  metric 1003
 default via 10.10.0.1 dev brq3958ea96-9d  metric 100



 On Wed, Feb 6, 2013 at 1:31 PM, Lei Zhang zhang.lei@gmail.com wrote:

 Hi all,
 I am learning the Quantum project. But I am confused about the whole
 architecture. Is there any article to explain how the package flow in the
 network model, which will help me to debug the network issue.
 For example, how the ping package flow from the VMs to the external
 internet?

 --
 Lei Zhang

 Blog: http://jeffrey4l.github.com
 twitter/weibo: @jeffrey4l




 --
 Lei Zhang

 Blog: 

[Openstack] [Quantum] Unable to install Quantum DHCP and L3 agents

2013-02-05 Thread Trinath Somanchi
Hi-

When I install Quantum DHCP and L3 agents.

I  get this error

root@NewFolsomController:~# apt-get install
quantum-plugin-openvswitch-agent quantum-dhcp-agent quantum-l3-agent
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package quantum-dhcp-agent
E: Unable to locate package quantum-l3-agent

Kindly help me resolve the issue

-- 
Regards,
--
Trinath Somanchi,
+91 9866 235 130
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [Quantum] Unable to install Quantum DHCP and L3 agents

2013-02-05 Thread Veera Reddy
Hi Trinath,

Before installing folsom

To Below Step

Edit */etc/apt/sources.list.d/cloud-archive.list *:

deb http://ubuntu-cloud.archive.canonical.com/ubuntu precise-updates/folsom
main



Upgrade the system (and reboot if you need) :

apt-get update  apt-get upgrade

Regards,
Veera.


On Wed, Feb 6, 2013 at 12:30 PM, Trinath Somanchi 
trinath.soman...@gmail.com wrote:

 Hi-

 When I install Quantum DHCP and L3 agents.

 I  get this error

 root@NewFolsomController:~# apt-get install
 quantum-plugin-openvswitch-agent quantum-dhcp-agent quantum-l3-agent
 Reading package lists... Done
 Building dependency tree
 Reading state information... Done
 E: Unable to locate package quantum-dhcp-agent
 E: Unable to locate package quantum-l3-agent

 Kindly help me resolve the issue

 --
 Regards,
 --
 Trinath Somanchi,
 +91 9866 235 130

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp




-- 
Regards,
VeeraReddy.B
9959236555.
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [Quantum] Unable to install Quantum DHCP and L3 agents

2013-02-05 Thread Martinx - ジェームズ
Before run apt-get update, run apt-get install ubuntu-cloud-keyring

On 6 February 2013 05:06, Veera Reddy veerare...@gmail.com wrote:

 Hi Trinath,

 Before installing folsom

 To Below Step

 Edit */etc/apt/sources.list.d/cloud-archive.list *:

 deb http://ubuntu-cloud.archive.canonical.com/ubuntuprecise-updates/folsom 
 main



 Upgrade the system (and reboot if you need) :

 apt-get update  apt-get upgrade

 Regards,
 Veera.


 On Wed, Feb 6, 2013 at 12:30 PM, Trinath Somanchi 
 trinath.soman...@gmail.com wrote:

 Hi-

 When I install Quantum DHCP and L3 agents.

 I  get this error

 root@NewFolsomController:~# apt-get install
 quantum-plugin-openvswitch-agent quantum-dhcp-agent quantum-l3-agent
 Reading package lists... Done
 Building dependency tree
 Reading state information... Done
 E: Unable to locate package quantum-dhcp-agent
 E: Unable to locate package quantum-l3-agent

 Kindly help me resolve the issue

 --
 Regards,
 --
 Trinath Somanchi,
 +91 9866 235 130

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp




 --
 Regards,
 VeeraReddy.B
 9959236555.

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [Quantum] Unable to install Quantum DHCP and L3 agents

2013-02-05 Thread Atul Jha

Trinath

snip
Hi-

When I install Quantum DHCP and L3 agents.

I  get this error

root@NewFolsomController:~# apt-get install quantum-plugin-openvswitch-agent 
quantum-dhcp-agent quantum-l3-agent
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package quantum-dhcp-agent
E: Unable to locate package quantum-l3-agent

Kindly help me resolve the issue
/snip

If you see the docs its clearly mentioned 
http://docs.openstack.org/folsom/basic-install/content/basic-install_controller.html

Care to follow the docs before shooting it here. :)

Cheers!!

Atul Jha

http://www.csscorp.com/common/email-disclaimer.php

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_keystone_trunk #116

2013-02-05 Thread openstack-testing-bot
Title: raring_grizzly_keystone_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_keystone_trunk/116/Project:raring_grizzly_keystone_trunkDate of build:Tue, 05 Feb 2013 06:31:10 -0500Build duration:5 min 54 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFixes not in operator usageby zhongyue.naheditkeystone/middleware/core.pyeditHACKING.rsteditkeystone/identity/backends/sql.pyeditkeystone/middleware/s3_token.pyeditkeystone/contrib/ec2/core.pyeditkeystone/identity/backends/kvs.pyeditkeystone/identity/controllers.pyConsole Output[...truncated 15050 lines...]Status: attemptedVersion: 2013.1+git201302050631~raring-0ubuntu1Finished at 20130205-0637Build needed 00:02:40, 13068k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201302050631~raring-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201302050631~raring-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/keystone/grizzly /tmp/tmp4asqQf/keystonemk-build-deps -i -r -t apt-get -y /tmp/tmp4asqQf/keystone/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 4b2b3af2e3346ef7d0ef7dc8e3e314d568779861..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/keystone/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201302050631~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [0bc423a] Imported Translations from Transifexdch -a [74c3e87] Delete Roles for User and Project LDAPdch -a [08baaa4] Why .pop()'ing urls first is importantdch -a [4cd7aba] Fixes 'not in' operator usagedch -a [4722c84] Updates migration 008 to work on PostgreSQL.dch -a [5bc46d8] Create a default domain (bp default-domain)dch -a [02da3af] Enable/disable domains (bug 1100145)dch -a [3ef0346] Readme: use 'doc' directory not 'docs'dch -a [a5b7fcf] Update to requests>=1.0.0 for keystoneclient.dch -a [0b2ef0d] Document user group LDAP optionsdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC keystone_2013.1+git201302050631~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A keystone_2013.1+git201302050631~raring-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201302050631~raring-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201302050631~raring-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: precise_grizzly_quantum_trunk #264

2013-02-05 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/264/Project:precise_grizzly_quantum_trunkDate of build:Tue, 05 Feb 2013 08:01:10 -0500Build duration:1 min 19 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesDefine root_helper variable under the [AGENT] sectionby gkottoneditquantum/agent/dhcp_agent.pyeditquantum/debug/debug_agent.pyeditquantum/agent/l3_agent.pyeditquantum/agent/netns_cleanup_util.pyeditquantum/agent/common/config.pyeditquantum/plugins/linuxbridge/common/config.pyeditetc/dhcp_agent.inieditquantum/debug/shell.pyeditetc/quantum/plugins/openvswitch/ovs_quantum_plugin.inieditquantum/agent/ovs_cleanup_util.pyeditquantum/tests/unit/test_agent_netns_cleanup.pyeditquantum/tests/unit/test_agent_config.pyeditquantum/plugins/nec/common/config.pyeditquantum/tests/unit/test_l3_agent.pyeditquantum/tests/unit/test_linux_interface.pyeditetc/quantum/plugins/ryu/ryu.inieditquantum/plugins/openvswitch/common/config.pyeditetc/metadata_agent.inieditquantum/plugins/ryu/common/config.pyeditetc/quantum.confeditetc/quantum/plugins/linuxbridge/linuxbridge_conf.inieditetc/l3_agent.inieditquantum/agent/linux/interface.pyConsole Output[...truncated 3020 lines...]patching file etc/quantum.confpatching file etc/metadata_agent.iniHunk #1 FAILED at 12.1 out of 1 hunk FAILED -- rejects in file etc/metadata_agent.inipatching file etc/quantum/plugins/openvswitch/ovs_quantum_plugin.iniHunk #2 FAILED at 98.1 out of 2 hunks FAILED -- rejects in file etc/quantum/plugins/openvswitch/ovs_quantum_plugin.inipatching file etc/quantum/plugins/nec/nec.inipatching file etc/quantum/plugins/nicira/nvp.inipatching file etc/quantum/plugins/ryu/ryu.iniHunk #2 FAILED at 52.1 out of 2 hunks FAILED -- rejects in file etc/quantum/plugins/ryu/ryu.inipatching file etc/quantum/plugins/bigswitch/restproxy.iniPatch fix-quantum-configuration.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-f0a67f60-f10e-428a-884c-88841183f413', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-f0a67f60-f10e-428a-884c-88841183f413', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/quantum/grizzly /tmp/tmpVhyFJL/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpVhyFJL/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d411308f7e5e18133653fc656281a56fe635bb9b..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201302050801~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [1b7565b] Define root_helper variable under the [AGENT] sectiondch -a [dc1c36f] Imported Translations from Transifexdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-f0a67f60-f10e-428a-884c-88841183f413', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-f0a67f60-f10e-428a-884c-88841183f413', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: raring_grizzly_quantum_trunk #271

2013-02-05 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/271/Project:raring_grizzly_quantum_trunkDate of build:Tue, 05 Feb 2013 08:01:10 -0500Build duration:2 min 33 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesDefine root_helper variable under the [AGENT] sectionby gkottoneditquantum/plugins/openvswitch/common/config.pyeditquantum/agent/l3_agent.pyeditetc/dhcp_agent.inieditquantum/tests/unit/test_agent_config.pyeditquantum/agent/common/config.pyeditquantum/debug/shell.pyeditetc/quantum.confeditquantum/tests/unit/test_agent_netns_cleanup.pyeditquantum/tests/unit/test_linux_interface.pyeditquantum/agent/linux/interface.pyeditetc/l3_agent.inieditquantum/agent/netns_cleanup_util.pyeditquantum/tests/unit/test_l3_agent.pyeditquantum/agent/ovs_cleanup_util.pyeditetc/metadata_agent.inieditetc/quantum/plugins/ryu/ryu.inieditquantum/debug/debug_agent.pyeditquantum/plugins/linuxbridge/common/config.pyeditetc/quantum/plugins/linuxbridge/linuxbridge_conf.inieditetc/quantum/plugins/openvswitch/ovs_quantum_plugin.inieditquantum/agent/dhcp_agent.pyeditquantum/plugins/ryu/common/config.pyeditquantum/plugins/nec/common/config.pyConsole Output[...truncated 3680 lines...]patching file etc/quantum.confpatching file etc/metadata_agent.iniHunk #1 FAILED at 12.1 out of 1 hunk FAILED -- rejects in file etc/metadata_agent.inipatching file etc/quantum/plugins/openvswitch/ovs_quantum_plugin.iniHunk #2 FAILED at 98.1 out of 2 hunks FAILED -- rejects in file etc/quantum/plugins/openvswitch/ovs_quantum_plugin.inipatching file etc/quantum/plugins/nec/nec.inipatching file etc/quantum/plugins/nicira/nvp.inipatching file etc/quantum/plugins/ryu/ryu.iniHunk #2 FAILED at 52.1 out of 2 hunks FAILED -- rejects in file etc/quantum/plugins/ryu/ryu.inipatching file etc/quantum/plugins/bigswitch/restproxy.iniPatch fix-quantum-configuration.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-66bcac4f-08c5-4006-8a5f-42829404f5f9', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-66bcac4f-08c5-4006-8a5f-42829404f5f9', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/quantum/grizzly /tmp/tmpHbJPcU/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpHbJPcU/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d411308f7e5e18133653fc656281a56fe635bb9b..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201302050801~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [1b7565b] Define root_helper variable under the [AGENT] sectiondch -a [dc1c36f] Imported Translations from Transifexdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-66bcac4f-08c5-4006-8a5f-42829404f5f9', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-66bcac4f-08c5-4006-8a5f-42829404f5f9', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_grizzly_nova_trunk #610

2013-02-05 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/610/Project:precise_grizzly_nova_trunkDate of build:Tue, 05 Feb 2013 08:01:11 -0500Build duration:13 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesAllow for specifying nfs mount optionsby rafieditnova/virt/libvirt/volume_nfs.pyMake get_dev_name_for_instance() use stashed instance_type infoby danmseditnova/compute/utils.pyConsole Output[...truncated 17279 lines...]git log -n1 --no-merges --pretty=format:%Hgit log a38ae113e17466ab0bb6612888b619e80d52bc7f..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201302050802~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [4a980db] Make get_dev_name_for_instance() use stashed instance_type infodch -a [a1e2c9f] Remove remaining instance_types query from compute/managerdch -a [a053c44] Make cells_api fetch stashed instance_type infodch -a [6371c09] Teach resource tracker about stashed instance typesdch -a [734b48b] Fix up instance types in sys meta for resizesdch -a [eaef552] VMware VC Compute Driverdch -a [064fefb] Adds evacuate method to compute.apidch -a [7d585b2] Fix incorrect logs in networkdch -a [8962958] Update HACKING.rst per recent changesdch -a [bffa08e] Allow for specifying nfs mount optionsdch -a [2667e8f] Make NFS mount hashes consistent with Cinderdch -a [3793b06] Imported Translations from Transifexdch -a [655ae2e] Optimize floating ip list to make one db querydch -a [ed45c0b] Reimplement is_valid_ipv4().dch -a [795d1bc] Tweakify is_valid_boolstr().dch -a [acc30a8] Make system_metadata update in placedch -a [61bb91f] Mark password config options with secretdch -a [250230b] Record instance actions and eventsdch -a [df4e4b6] Postgres does not like empty strings for type inetdch -a [64ded79] import tools/flakes from oslodch -a [2fc0097] Quantum metadata handler now uses X-Forwarded-Fordch -a [cba2d8a] instance.update notifications don't always identify the servicedch -a [8d68cf8] Condense multiple authorizers into a single one.dch -a [3937388] Extend extension_authorizer to enable cleaner code.dch -a [194b23c] Merge LibvirtOpenVswitchDriver class into LibvirtGenericVIFDriverdch -a [11aec7e] Merge QuantumLinuxBridgeVIFDriver into LibvirtGenericVIFDriverdch -a [e0333fa] Remove deprecation notice in LibvirtBridgeDriverdch -a [7965336] Add option to control where bridges forwarddch -a [b8cc034] fix nova-baremetal-manage version printingdch -a [16599c0] Refactoring/cleanup of compute and db apisdch -a [a692518] Relax API restrictions around the use of rebootdch -a [e12339d] populate dnsmasq lease db with valid leasesdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.1+git201302050802~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A nova_2013.1+git201302050802~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing nova_2013.1+git201302050802~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-grizzly nova_2013.1+git201302050802~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/nova/precise-grizzly+ [ ! 0 ]+ jenkins-cli build precise_grizzly_deployEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_ceilometer_trunk #71

2013-02-05 Thread openstack-testing-bot
Title: precise_grizzly_ceilometer_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_ceilometer_trunk/71/Project:precise_grizzly_ceilometer_trunkDate of build:Tue, 05 Feb 2013 08:31:13 -0500Build duration:2 min 47 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesMock more conductor API methods to unblock testsby doug.hellmannedittests/compute/test_nova_notifier.pyConsole Output[...truncated 2001 lines...]Version: 2013.1+git201302050831~precise-0ubuntu1Finished at 20130205-0832Build needed 00:00:00, 0k disc spaceE: Package build dependencies not satisfied; skippingERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050831~precise-0ubuntu1.dsc']' returned non-zero exit status 3ERROR:root:Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050831~precise-0ubuntu1.dsc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmpeil244/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmpeil244/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log baee82420e7aac8e4060f788098b64fad2de05b4..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201302050831~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [858ff92] Mock more conductor API methods to unblock testsdch -a [c4cb46a] setup: fix typo in package datadch -a [9c836e5] Fix formatting issue with v1 API parametersdch -a [a004624] Multiple publisher pipeline frameworkdch -a [f85bbce] Remove setuptools_git from setup_requires.dch -a [01246fb] Use WSME 0.5b1dch -a [3ebf760] Fixed the TemplateNotFound error in v1 api.dch -a [a0220bd] Fix documentation formatting issuesdch -a [a5bc34d] Simplify ceilometer-api and checks Keystone middleware parsingdch -a [008e8e4] Rename run_tests.sh to wrap_nosetests.shdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201302050831~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A ceilometer_2013.1+git201302050831~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050831~precise-0ubuntu1.dsc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050831~precise-0ubuntu1.dsc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_ceilometer_trunk #75

2013-02-05 Thread openstack-testing-bot
Title: raring_grizzly_ceilometer_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_ceilometer_trunk/75/Project:raring_grizzly_ceilometer_trunkDate of build:Tue, 05 Feb 2013 08:31:13 -0500Build duration:3 min 49 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesMock more conductor API methods to unblock testsby doug.hellmannedittests/compute/test_nova_notifier.pyConsole Output[...truncated 2569 lines...]Version: 2013.1+git201302050831~raring-0ubuntu1Finished at 20130205-0834Build needed 00:00:00, 0k disc spaceE: Package build dependencies not satisfied; skippingERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050831~raring-0ubuntu1.dsc']' returned non-zero exit status 3ERROR:root:Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050831~raring-0ubuntu1.dsc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmp62kSKS/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmp62kSKS/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log baee82420e7aac8e4060f788098b64fad2de05b4..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201302050831~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [858ff92] Mock more conductor API methods to unblock testsdch -a [c4cb46a] setup: fix typo in package datadch -a [9c836e5] Fix formatting issue with v1 API parametersdch -a [a004624] Multiple publisher pipeline frameworkdch -a [f85bbce] Remove setuptools_git from setup_requires.dch -a [01246fb] Use WSME 0.5b1dch -a [3ebf760] Fixed the TemplateNotFound error in v1 api.dch -a [a0220bd] Fix documentation formatting issuesdch -a [a5bc34d] Simplify ceilometer-api and checks Keystone middleware parsingdch -a [008e8e4] Rename run_tests.sh to wrap_nosetests.shdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201302050831~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A ceilometer_2013.1+git201302050831~raring-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050831~raring-0ubuntu1.dsc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050831~raring-0ubuntu1.dsc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_ceilometer_trunk #72

2013-02-05 Thread openstack-testing-bot
Title: precise_grizzly_ceilometer_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_ceilometer_trunk/72/Project:precise_grizzly_ceilometer_trunkDate of build:Tue, 05 Feb 2013 09:01:11 -0500Build duration:2 min 12 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesUpdate V2 API documentationby doug.hellmannadddoc/source/ceilext/__init__.pyeditceilometer/api/controllers/v2.pyeditdoc/source/webapi/v2.rsteditdoc/source/conf.pyadddoc/source/ceilext/api.pyUpdate pollsters to return counter listby yunhong.jiangeditceilometer/plugin.pyeditceilometer/network/floatingip.pyedittests/compute/test_pollsters.pyeditceilometer/image/glance.pyeditceilometer/objectstore/swift.pyeditceilometer/energy/kwapi.pyedittests/objectstore/test_swift.pyeditceilometer/compute/pollsters.pyedittests/image/test_glance.pyedittests/network/test_floatingip.pyedittests/energy/test_kwapi.pyConsole Output[...truncated 2010 lines...]Finished at 20130205-0902Build needed 00:00:00, 0k disc spaceE: Package build dependencies not satisfied; skippingERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050901~precise-0ubuntu1.dsc']' returned non-zero exit status 3ERROR:root:Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050901~precise-0ubuntu1.dsc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmpwAQC0Q/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmpwAQC0Q/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log baee82420e7aac8e4060f788098b64fad2de05b4..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201302050901~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [858ff92] Mock more conductor API methods to unblock testsdch -a [0425a42] Update pollsters to return counter listdch -a [e14b326] Update V2 API documentationdch -a [c4cb46a] setup: fix typo in package datadch -a [9c836e5] Fix formatting issue with v1 API parametersdch -a [a004624] Multiple publisher pipeline frameworkdch -a [f85bbce] Remove setuptools_git from setup_requires.dch -a [01246fb] Use WSME 0.5b1dch -a [3ebf760] Fixed the TemplateNotFound error in v1 api.dch -a [a0220bd] Fix documentation formatting issuesdch -a [a5bc34d] Simplify ceilometer-api and checks Keystone middleware parsingdch -a [008e8e4] Rename run_tests.sh to wrap_nosetests.shdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201302050901~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A ceilometer_2013.1+git201302050901~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050901~precise-0ubuntu1.dsc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050901~precise-0ubuntu1.dsc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_ceilometer_trunk #76

2013-02-05 Thread openstack-testing-bot
Title: raring_grizzly_ceilometer_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_ceilometer_trunk/76/Project:raring_grizzly_ceilometer_trunkDate of build:Tue, 05 Feb 2013 09:01:09 -0500Build duration:3 min 9 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesUpdate V2 API documentationby doug.hellmannadddoc/source/ceilext/api.pyeditceilometer/api/controllers/v2.pyadddoc/source/ceilext/__init__.pyeditdoc/source/conf.pyeditdoc/source/webapi/v2.rstUpdate pollsters to return counter listby yunhong.jiangeditceilometer/plugin.pyedittests/objectstore/test_swift.pyeditceilometer/network/floatingip.pyedittests/network/test_floatingip.pyedittests/image/test_glance.pyeditceilometer/compute/pollsters.pyedittests/compute/test_pollsters.pyeditceilometer/objectstore/swift.pyeditceilometer/energy/kwapi.pyedittests/energy/test_kwapi.pyeditceilometer/image/glance.pyConsole Output[...truncated 2578 lines...]Finished at 20130205-0903Build needed 00:00:00, 0k disc spaceE: Package build dependencies not satisfied; skippingERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050901~raring-0ubuntu1.dsc']' returned non-zero exit status 3ERROR:root:Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050901~raring-0ubuntu1.dsc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmpwVMH4E/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmpwVMH4E/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log baee82420e7aac8e4060f788098b64fad2de05b4..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201302050901~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [858ff92] Mock more conductor API methods to unblock testsdch -a [0425a42] Update pollsters to return counter listdch -a [e14b326] Update V2 API documentationdch -a [c4cb46a] setup: fix typo in package datadch -a [9c836e5] Fix formatting issue with v1 API parametersdch -a [a004624] Multiple publisher pipeline frameworkdch -a [f85bbce] Remove setuptools_git from setup_requires.dch -a [01246fb] Use WSME 0.5b1dch -a [3ebf760] Fixed the TemplateNotFound error in v1 api.dch -a [a0220bd] Fix documentation formatting issuesdch -a [a5bc34d] Simplify ceilometer-api and checks Keystone middleware parsingdch -a [008e8e4] Rename run_tests.sh to wrap_nosetests.shdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201302050901~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A ceilometer_2013.1+git201302050901~raring-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050901~raring-0ubuntu1.dsc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050901~raring-0ubuntu1.dsc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_ceilometer_trunk #77

2013-02-05 Thread openstack-testing-bot
Title: raring_grizzly_ceilometer_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_ceilometer_trunk/77/Project:raring_grizzly_ceilometer_trunkDate of build:Tue, 05 Feb 2013 09:31:12 -0500Build duration:3 min 10 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesMore robust mocking of nova conductorby doug.hellmannedittests/compute/test_nova_notifier.pyConsole Output[...truncated 2581 lines...]Build needed 00:00:00, 0k disc spaceE: Package build dependencies not satisfied; skippingERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050931~raring-0ubuntu1.dsc']' returned non-zero exit status 3ERROR:root:Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050931~raring-0ubuntu1.dsc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmpgi1Ko3/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmpgi1Ko3/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log baee82420e7aac8e4060f788098b64fad2de05b4..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201302050931~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [d6782ad] More robust mocking of nova conductordch -a [858ff92] Mock more conductor API methods to unblock testsdch -a [0425a42] Update pollsters to return counter listdch -a [e14b326] Update V2 API documentationdch -a [c4cb46a] setup: fix typo in package datadch -a [9c836e5] Fix formatting issue with v1 API parametersdch -a [a004624] Multiple publisher pipeline frameworkdch -a [f85bbce] Remove setuptools_git from setup_requires.dch -a [01246fb] Use WSME 0.5b1dch -a [3ebf760] Fixed the TemplateNotFound error in v1 api.dch -a [a0220bd] Fix documentation formatting issuesdch -a [a5bc34d] Simplify ceilometer-api and checks Keystone middleware parsingdch -a [008e8e4] Rename run_tests.sh to wrap_nosetests.shdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201302050931~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A ceilometer_2013.1+git201302050931~raring-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050931~raring-0ubuntu1.dsc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302050931~raring-0ubuntu1.dsc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_ceilometer_trunk #74

2013-02-05 Thread openstack-testing-bot
Title: precise_grizzly_ceilometer_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_ceilometer_trunk/74/Project:precise_grizzly_ceilometer_trunkDate of build:Tue, 05 Feb 2013 12:01:10 -0500Build duration:6 min 6 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesUse the same Keystone client instance for pollsterby julienedittests/central/test_manager.pyedittests/energy/test_kwapi.pyeditceilometer/objectstore/swift.pyedittests/objectstore/test_swift.pyedittests/image/test_glance.pyeditceilometer/central/manager.pyeditceilometer/energy/kwapi.pyeditceilometer/image/glance.pyedittests/network/test_floatingip.pyConsole Output[...truncated 1992 lines...]E: Package build dependencies not satisfied; skippingERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302051205~precise-0ubuntu1.dsc']' returned non-zero exit status 3ERROR:root:Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302051205~precise-0ubuntu1.dsc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmpAquPzz/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmpAquPzz/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log baee82420e7aac8e4060f788098b64fad2de05b4..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201302051205~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [8658618] Use the same Keystone client instance for pollsterdch -a [d6782ad] More robust mocking of nova conductordch -a [858ff92] Mock more conductor API methods to unblock testsdch -a [0425a42] Update pollsters to return counter listdch -a [e14b326] Update V2 API documentationdch -a [c4cb46a] setup: fix typo in package datadch -a [9c836e5] Fix formatting issue with v1 API parametersdch -a [a004624] Multiple publisher pipeline frameworkdch -a [f85bbce] Remove setuptools_git from setup_requires.dch -a [01246fb] Use WSME 0.5b1dch -a [3ebf760] Fixed the TemplateNotFound error in v1 api.dch -a [a0220bd] Fix documentation formatting issuesdch -a [a5bc34d] Simplify ceilometer-api and checks Keystone middleware parsingdch -a [008e8e4] Rename run_tests.sh to wrap_nosetests.shdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201302051205~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A ceilometer_2013.1+git201302051205~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302051205~precise-0ubuntu1.dsc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302051205~precise-0ubuntu1.dsc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_python-novaclient_trunk #54

2013-02-05 Thread openstack-testing-bot
Title: raring_grizzly_python-novaclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_python-novaclient_trunk/54/Project:raring_grizzly_python-novaclient_trunkDate of build:Tue, 05 Feb 2013 14:01:09 -0500Build duration:4 min 11 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesFix default format of nova coverage-reportby yamazaki-mitsuhikoeditnovaclient/v1_1/coverage_ext.pyConsole Output[...truncated 2667 lines...]Job: python-novaclient_2.10.0.96.ge389e8a+git201302051401~raring-0ubuntu1.dscMachine Architecture: amd64Package: python-novaclientPackage-Time: 79Source-Version: 1:2.10.0.96.ge389e8a+git201302051401~raring-0ubuntu1Space: 1936Status: attemptedVersion: 1:2.10.0.96.ge389e8a+git201302051401~raring-0ubuntu1Finished at 20130205-1405Build needed 00:01:19, 1936k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'python-novaclient_2.10.0.96.ge389e8a+git201302051401~raring-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'python-novaclient_2.10.0.96.ge389e8a+git201302051401~raring-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-novaclient/grizzly /tmp/tmpsnXbWL/python-novaclientmk-build-deps -i -r -t apt-get -y /tmp/tmpsnXbWL/python-novaclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 3ca976d4a076c13c7d68de859a8821cc281c9271..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/python-novaclient/raring-grizzly --forcedch -b -D raring --newversion 1:2.10.0.96.ge389e8a+git201302051401~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [96630b8] Upgrade to pep8 1.3.3dch -a [7a95186] Live migration with an auto selection of dest.dch -a [7f8f3ce] Add help about the id 'auto' for flavor-createdch -a [cda7f7a] Fix default format of 'nova coverage-report'debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-novaclient_2.10.0.96.ge389e8a+git201302051401~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A python-novaclient_2.10.0.96.ge389e8a+git201302051401~raring-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'python-novaclient_2.10.0.96.ge389e8a+git201302051401~raring-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'python-novaclient_2.10.0.96.ge389e8a+git201302051401~raring-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: precise_grizzly_python-keystoneclient_trunk #64

2013-02-05 Thread openstack-testing-bot
Title: precise_grizzly_python-keystoneclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_python-keystoneclient_trunk/64/Project:precise_grizzly_python-keystoneclient_trunkDate of build:Tue, 05 Feb 2013 16:01:08 -0500Build duration:1 min 12 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesUpdate requests requirementsby Chuck Shortedittools/pip-requiresConsole Output[...truncated 1260 lines...]INFO:root:Building source packageDEBUG:root:['bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']INFO:root:Executing ['bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc'] in schrootDEBUG:root:['bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']Building using working treeBuilding package in merge modeLooking for a way to retrieve the upstream tarballUsing the upstream tarball that is present in /tmp/tmpQOLMGobzr: ERROR: An error (1) occurred running quilt: Applying patch fix-requests-requirements.patchpatching file tools/pip-requiresHunk #1 FAILED at 1.1 out of 1 hunk FAILED -- rejects in file tools/pip-requiresPatch fix-requests-requirements.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-e3915167-cc37-43e7-9b42-ca6ee973667f', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-e3915167-cc37-43e7-9b42-ca6ee973667f', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-keystoneclient/grizzly /tmp/tmpQOLMGo/python-keystoneclientmk-build-deps -i -r -t apt-get -y /tmp/tmpQOLMGo/python-keystoneclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 76c7b08645315db4ec16f1703848b51001511121..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/python-keystoneclient/precise-grizzly --forcedch -b -D precise --newversion 1:0.2.2.23.g6cf76c9+git201302051601~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [6cf76c9] Update requests requirementsdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-e3915167-cc37-43e7-9b42-ca6ee973667f', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-e3915167-cc37-43e7-9b42-ca6ee973667f', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_grizzly_glance_trunk #102

2013-02-05 Thread openstack-testing-bot
Title: precise_grizzly_glance_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_glance_trunk/102/Project:precise_grizzly_glance_trunkDate of build:Tue, 05 Feb 2013 17:01:09 -0500Build duration:10 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesRemoved unnecessary code.by james.morganeditglance/db/sqlalchemy/api.pyConsole Output[...truncated 7155 lines...]  Uploading glance_2013.1~2013.1.a52.gc55273d+git201302051701~precise.orig.tar.gz: done.  Uploading glance_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1.debian.tar.gz: done.  Uploading glance_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptDEBUG:root:['reprepro', '--waitforlock', '10', '-Vb', '/var/lib/jenkins/www/apt', 'include', 'precise-grizzly', 'glance_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1_amd64.changes']Skipping inclusion of 'glance-registry' '2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1' in 'precise-grizzly|main|amd64', as it has already '2013.1+git201301141901~precise-0ubuntu1'.Skipping inclusion of 'glance-api' '2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1' in 'precise-grizzly|main|amd64', as it has already '2013.1+git201301141901~precise-0ubuntu1'.Skipping inclusion of 'glance-common' '2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1' in 'precise-grizzly|main|amd64', as it has already '2013.1+git201301141901~precise-0ubuntu1'.Skipping inclusion of 'python-glance-doc' '2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1' in 'precise-grizzly|main|amd64', as it has already '2013.1+git201301141901~precise-0ubuntu1'.Skipping inclusion of 'glance' '2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1' in 'precise-grizzly|main|amd64', as it has already '2013.1+git201301141901~precise-0ubuntu1'.Skipping inclusion of 'python-glance' '2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1' in 'precise-grizzly|main|amd64', as it has already '2013.1+git201301141901~precise-0ubuntu1'.Deleting files just added to the pool but not used.(to avoid use --keepunusednewfiles next time)deleting and forgetting pool/main/g/glance/glance-api_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1_all.debdeleting and forgetting pool/main/g/glance/glance-common_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1_all.debdeleting and forgetting pool/main/g/glance/glance-registry_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1_all.debdeleting and forgetting pool/main/g/glance/glance_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1_all.debdeleting and forgetting pool/main/g/glance/python-glance-doc_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1_all.debdeleting and forgetting pool/main/g/glance/python-glance_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/glance/precise-grizzly']Pushed up to revision 236.INFO:root:Storing current commit for next build: c55273d09603cdc9f46b35de8bffa4997a44d5aeINFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/glance/grizzly /tmp/tmpyfqKp1/glancemk-build-deps -i -r -t apt-get -y /tmp/tmpyfqKp1/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d7be5c1982893d2a43b6554add42240ab040e0d1..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/precise-grizzly --forcedch -b -D precise --newversion 2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [c55273d] Removed unnecessary code.dch -a [802af0f] Allow description fields to be translated in schemadch -a [8291e3c] Fix kwargs in xattr BadDriverConfiguration exc.dch -a [35be498] Prints list-cached dates in isoformatdch -a [94969ae] Pull in tarball version fix from oslo.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC glance_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A glance_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing glance_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-grizzly glance_2013.1~2013.1.a52.gc55273d+git201302051701~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/glance/precise-grizzlyEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: 

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7168

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7168/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson6913760121975297324.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7169

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7169/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson6023732430357562953.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7170

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7170/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson1949751180704342683.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7171

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7171/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson6933985718969550363.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7172

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7172/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson6056983678833197662.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7173

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7173/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson5091973405119918891.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7174

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7174/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson4642444963872275800.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7177

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7177/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson5100330364705927735.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7179

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7179/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson8323186055047072804.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7180

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7180/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson6927430535252230991.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: folsom_coverage #429

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/folsom_coverage/429/

--
Started by command line by jenkins
Building on master in workspace 
http://10.189.74.7:8080/job/folsom_coverage/ws/
No emails were triggered.
[workspace] $ /bin/bash -x /tmp/hudson4480848722083874545.sh
+ juju status
2013-02-05 20:34:19,724 INFO Connecting to environment...
2013-02-05 20:34:20,816 INFO Connected to environment.
machines:
  0:
agent-state: running
dns-name: test-11.os.magners.qa.lexington
instance-id: /MAAS/api/1.0/nodes/node-a144bb1e-1ddf-11e2-89df-d4bed9a84493/
instance-state: unknown
  523:
agent-state: running
dns-name: test-12.os.magners.qa.lexington
instance-id: /MAAS/api/1.0/nodes/node-a22a5e62-1ddf-11e2-80fb-d4bed9a84493/
instance-state: unknown
  524:
agent-state: running
dns-name: test-03.os.magners.qa.lexington
instance-id: /MAAS/api/1.0/nodes/node-94fb3cde-1ddf-11e2-80fb-d4bed9a84493/
instance-state: unknown
  525:
agent-state: running
dns-name: test-08.os.magners.qa.lexington
instance-id: /MAAS/api/1.0/nodes/node-9d23a6b2-1ddf-11e2-80fb-d4bed9a84493/
instance-state: unknown
  526:
agent-state: running
dns-name: test-02.os.magners.qa.lexington
instance-id: /MAAS/api/1.0/nodes/node-e2318cde-1dde-11e2-80fb-d4bed9a84493/
instance-state: unknown
  527:
agent-state: running
dns-name: test-05.os.magners.qa.lexington
instance-id: /MAAS/api/1.0/nodes/node-95a20aa0-1ddf-11e2-89df-d4bed9a84493/
instance-state: unknown
  528:
agent-state: running
dns-name: test-07.os.magners.qa.lexington
instance-id: /MAAS/api/1.0/nodes/node-9b255c8e-1ddf-11e2-89df-d4bed9a84493/
instance-state: unknown
  529:
agent-state: running
dns-name: test-04.os.magners.qa.lexington
instance-id: /MAAS/api/1.0/nodes/node-955ea44a-1ddf-11e2-89df-d4bed9a84493/
instance-state: unknown
  530:
agent-state: running
dns-name: test-10.os.magners.qa.lexington
instance-id: /MAAS/api/1.0/nodes/node-a0a91ca4-1ddf-11e2-80fb-d4bed9a84493/
instance-state: unknown
  531:
agent-state: running
dns-name: test-06.os.magners.qa.lexington
instance-id: /MAAS/api/1.0/nodes/node-993ffdac-1ddf-11e2-80fb-d4bed9a84493/
instance-state: unknown
services:
  ceph:
charm: local:precise/ceph-88
relations:
  client:
  - cinder
  - glance
  - nova-compute
  mon:
  - ceph
units:
  ceph/29:
agent-state: started
machine: 525
public-address: test-08.os.magners.qa.lexington
  cinder:
charm: local:precise/cinder-1003
relations:
  amqp:
  - rabbitmq
  ceph:
  - ceph
  cinder-volume-service:
  - nova-cloud-controller
  identity-service:
  - keystone
  shared-db:
  - mysql
units:
  cinder/29:
agent-state: started
machine: 530
public-address: test-10.os.magners.qa.lexington
  glance:
charm: local:precise/glance-1004
relations:
  ceph:
  - ceph
  identity-service:
  - keystone
  image-service:
  - nova-cloud-controller
  - nova-compute
  shared-db:
  - mysql
units:
  glance/29:
agent-state: started
machine: 531
public-address: test-06.os.magners.qa.lexington
  keystone:
charm: local:precise/keystone-1004
relations:
  identity-service:
  - cinder
  - glance
  - nova-cloud-controller
  - openstack-dashboard
  shared-db:
  - mysql
units:
  keystone/33:
agent-state: started
machine: 526
public-address: test-02.os.magners.qa.lexington
  mysql:
charm: local:precise/mysql-165
relations:
  shared-db:
  - cinder
  - glance
  - keystone
  - nova-cloud-controller
  - nova-compute
units:
  mysql/29:
agent-state: started
machine: 528
public-address: test-07.os.magners.qa.lexington
  nova-cloud-controller:
charm: local:precise/nova-cloud-controller-1004
exposed: false
relations:
  amqp:
  - rabbitmq
  cinder-volume-service:
  - cinder
  cloud-compute:
  - nova-compute
  identity-service:
  - keystone
  image-service:
  - glance
  shared-db:
  - mysql
units:
  nova-cloud-controller/29:
agent-state: started
machine: 527
public-address: test-05.os.magners.qa.lexington
  nova-compute:
charm: local:precise/nova-compute-1006
 2013-02-05 20:34:23,380 INFO 'status' command finished successfully
   relations:
  amqp:
  - rabbitmq
  ceph:
  - ceph
  cloud-compute:
  - nova-cloud-controller
  compute-peer:
  - nova-compute
  image-service:
  - glance
  shared-db:
  - mysql
units:
  nova-compute/29:
agent-state: started
machine: 523
public-address: test-12.os.magners.qa.lexington
  openstack-dashboard:
charm: 

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7182

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7182/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson7249566190597018224.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7183

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7183/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson1751969731865305239.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7184

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7184/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson7383378433014350978.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7185

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7185/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson9211579435941874162.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_ceilometer_trunk #75

2013-02-05 Thread openstack-testing-bot
Title: precise_grizzly_ceilometer_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_ceilometer_trunk/75/Project:precise_grizzly_ceilometer_trunkDate of build:Tue, 05 Feb 2013 21:32:23 -0500Build duration:3 min 22 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdded hacking.py support to pep8 portion of toxby sandy.walshaddtools/hacking.pyedittox.iniConsole Output[...truncated 1996 lines...]ERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302052132~precise-0ubuntu1.dsc']' returned non-zero exit status 3ERROR:root:Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302052132~precise-0ubuntu1.dsc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmpxLe8FR/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmpxLe8FR/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log baee82420e7aac8e4060f788098b64fad2de05b4..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201302052132~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [8658618] Use the same Keystone client instance for pollsterdch -a [d6782ad] More robust mocking of nova conductordch -a [858ff92] Mock more conductor API methods to unblock testsdch -a [0425a42] Update pollsters to return counter listdch -a [e14b326] Update V2 API documentationdch -a [42ca966] Added hacking.py support to pep8 portion of toxdch -a [c4cb46a] setup: fix typo in package datadch -a [9c836e5] Fix formatting issue with v1 API parametersdch -a [a004624] Multiple publisher pipeline frameworkdch -a [f85bbce] Remove setuptools_git from setup_requires.dch -a [01246fb] Use WSME 0.5b1dch -a [3ebf760] Fixed the TemplateNotFound error in v1 api.dch -a [a0220bd] Fix documentation formatting issuesdch -a [a5bc34d] Simplify ceilometer-api and checks Keystone middleware parsingdch -a [008e8e4] Rename run_tests.sh to wrap_nosetests.shdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201302052132~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A ceilometer_2013.1+git201302052132~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302052132~precise-0ubuntu1.dsc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302052132~precise-0ubuntu1.dsc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_ceilometer_trunk #79

2013-02-05 Thread openstack-testing-bot
Title: raring_grizzly_ceilometer_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_ceilometer_trunk/79/Project:raring_grizzly_ceilometer_trunkDate of build:Tue, 05 Feb 2013 21:31:09 -0500Build duration:5 min 40 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdded hacking.py support to pep8 portion of toxby sandy.walshedittox.iniaddtools/hacking.pyConsole Output[...truncated 2588 lines...]ERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302052131~raring-0ubuntu1.dsc']' returned non-zero exit status 3ERROR:root:Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302052131~raring-0ubuntu1.dsc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmpC1DKkG/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmpC1DKkG/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log baee82420e7aac8e4060f788098b64fad2de05b4..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201302052131~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [8658618] Use the same Keystone client instance for pollsterdch -a [d6782ad] More robust mocking of nova conductordch -a [858ff92] Mock more conductor API methods to unblock testsdch -a [0425a42] Update pollsters to return counter listdch -a [e14b326] Update V2 API documentationdch -a [42ca966] Added hacking.py support to pep8 portion of toxdch -a [c4cb46a] setup: fix typo in package datadch -a [9c836e5] Fix formatting issue with v1 API parametersdch -a [a004624] Multiple publisher pipeline frameworkdch -a [f85bbce] Remove setuptools_git from setup_requires.dch -a [01246fb] Use WSME 0.5b1dch -a [3ebf760] Fixed the TemplateNotFound error in v1 api.dch -a [a0220bd] Fix documentation formatting issuesdch -a [a5bc34d] Simplify ceilometer-api and checks Keystone middleware parsingdch -a [008e8e4] Rename run_tests.sh to wrap_nosetests.shdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201302052131~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A ceilometer_2013.1+git201302052131~raring-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302052131~raring-0ubuntu1.dsc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'ceilometer_2013.1+git201302052131~raring-0ubuntu1.dsc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_quantum_trunk #273

2013-02-05 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/273/Project:raring_grizzly_quantum_trunkDate of build:Tue, 05 Feb 2013 22:05:34 -0500Build duration:2 min 51 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesUse policy_file parameter in quantum.policyby aababiloeditquantum/policy.pyCisco plugin cleanup follow up commitby asomyadeletequantum/plugins/cisco/services/services_logistics.pydeletequantum/plugins/cisco/ucs/cisco_ucs_plugin_v2.pydeletequantum/plugins/cisco/db/services_db.pydeletequantum/plugins/cisco/db/ucs_db_v2.pydeletequantum/plugins/cisco/models/network_multi_blade_v2.pydeletequantum/plugins/cisco/ucs/cisco_ucs_inventory_v2.pydeletequantum/plugins/cisco/services/service_insertion.pyAllow tools/install_venv_common.py to be run from within the source directory.by dimsedittools/install_venv_common.pyConsole Output[...truncated 3687 lines...]Hunk #2 FAILED at 98.1 out of 2 hunks FAILED -- rejects in file etc/quantum/plugins/openvswitch/ovs_quantum_plugin.inipatching file etc/quantum/plugins/nec/nec.inipatching file etc/quantum/plugins/nicira/nvp.inipatching file etc/quantum/plugins/ryu/ryu.iniHunk #2 FAILED at 52.1 out of 2 hunks FAILED -- rejects in file etc/quantum/plugins/ryu/ryu.inipatching file etc/quantum/plugins/bigswitch/restproxy.iniPatch fix-quantum-configuration.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-f2a177ef-0ab5-456b-b987-ded9ce6efb59', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-f2a177ef-0ab5-456b-b987-ded9ce6efb59', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/quantum/grizzly /tmp/tmpqVsvQo/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpqVsvQo/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d411308f7e5e18133653fc656281a56fe635bb9b..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201302052205~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [7beec04] Allow tools/install_venv_common.py to be run from within the source directory.dch -a [0c9b820] Cisco plugin cleanup follow up commitdch -a [962aca5] Be smarter when figuring out broadcast addressdch -a [a4c1076] Use policy_file parameter in quantum.policydch -a [7caf323] Imported Translations from Transifexdch -a [1b7565b] Define root_helper variable under the [AGENT] sectiondch -a [dc1c36f] Imported Translations from Transifexdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-f2a177ef-0ab5-456b-b987-ded9ce6efb59', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-f2a177ef-0ab5-456b-b987-ded9ce6efb59', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7188

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7188/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson650387876535798157.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7189

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7189/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson51962769381755.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Jenkins build is back to normal : folsom_coverage #430

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/folsom_coverage/430/


-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7191

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7191/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson6445915008656324873.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7192

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7192/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson726708411562470544.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7193

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7193/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson4560356753687091085.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_quantum_trunk #267

2013-02-05 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/267/Project:precise_grizzly_quantum_trunkDate of build:Tue, 05 Feb 2013 23:31:10 -0500Build duration:1 min 21 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesAdds xml support for quantum v2 API.by revieweditquantum/tests/unit/test_quota_per_tenant_ext.pyeditquantum/tests/unit/db/loadbalancer/test_db_loadbalancer.pyeditquantum/common/constants.pyeditquantum/extensions/securitygroup.pyeditquantum/tests/unit/test_wsgi.pyeditquantum/tests/unit/test_loadbalancer_plugin.pyeditquantum/tests/unit/test_extensions.pyeditquantum/tests/unit/test_api_v2.pyeditquantum/api/extensions.pyeditquantum/api/v2/attributes.pyeditquantum/tests/unit/test_api_v2_resource.pyeditquantum/extensions/quotasv2.pyeditquantum/db/quota_db.pyeditquantum/api/v2/resource.pyeditquantum/tests/unit/test_extension_security_group.pyeditquantum/wsgi.pyeditquantum/tests/unit/testlib_api.pyeditquantum/extensions/loadbalancer.pyeditquantum/tests/unit/test_db_plugin.pyeditquantum/tests/unit/linuxbridge/test_lb_security_group.pyeditquantum/tests/unit/test_l3_plugin.pyeditquantum/api/v2/base.pyeditquantum/tests/unit/test_security_groups_rpc.pyeditquantum/tests/unit/cisco/test_network_plugin.pyeditquantum/extensions/l3.pyeditquantum/extensions/servicetype.pyeditquantum/tests/unit/test_servicetype.pyConsole Output[...truncated 3030 lines...]1 out of 2 hunks FAILED -- rejects in file etc/quantum/plugins/openvswitch/ovs_quantum_plugin.inipatching file etc/quantum/plugins/nec/nec.inipatching file etc/quantum/plugins/nicira/nvp.inipatching file etc/quantum/plugins/ryu/ryu.iniHunk #2 FAILED at 52.1 out of 2 hunks FAILED -- rejects in file etc/quantum/plugins/ryu/ryu.inipatching file etc/quantum/plugins/bigswitch/restproxy.iniPatch fix-quantum-configuration.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-06eae390-d9ae-40c9-b187-95b94725e2ec', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-06eae390-d9ae-40c9-b187-95b94725e2ec', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/quantum/grizzly /tmp/tmpfvi60Z/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpfvi60Z/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d411308f7e5e18133653fc656281a56fe635bb9b..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201302052331~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [3f013e3] Adds xml support for quantum v2 API.dch -a [7beec04] Allow tools/install_venv_common.py to be run from within the source directory.dch -a [0c9b820] Cisco plugin cleanup follow up commitdch -a [962aca5] Be smarter when figuring out broadcast addressdch -a [a4c1076] Use policy_file parameter in quantum.policydch -a [7caf323] Imported Translations from Transifexdch -a [1b7565b] Define root_helper variable under the [AGENT] sectiondch -a [dc1c36f] Imported Translations from Transifexdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-06eae390-d9ae-40c9-b187-95b94725e2ec', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-06eae390-d9ae-40c9-b187-95b94725e2ec', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : 

[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_quantum_trunk #274

2013-02-05 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/274/Project:raring_grizzly_quantum_trunkDate of build:Tue, 05 Feb 2013 23:31:10 -0500Build duration:2 min 22 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesAdds xml support for quantum v2 API.by revieweditquantum/api/extensions.pyeditquantum/tests/unit/linuxbridge/test_lb_security_group.pyeditquantum/tests/unit/test_extensions.pyeditquantum/tests/unit/test_loadbalancer_plugin.pyeditquantum/tests/unit/test_db_plugin.pyeditquantum/tests/unit/test_extension_security_group.pyeditquantum/extensions/quotasv2.pyeditquantum/tests/unit/test_servicetype.pyeditquantum/tests/unit/test_quota_per_tenant_ext.pyeditquantum/tests/unit/test_wsgi.pyeditquantum/wsgi.pyeditquantum/extensions/l3.pyeditquantum/tests/unit/db/loadbalancer/test_db_loadbalancer.pyeditquantum/extensions/servicetype.pyeditquantum/db/quota_db.pyeditquantum/api/v2/attributes.pyeditquantum/tests/unit/test_api_v2_resource.pyeditquantum/tests/unit/cisco/test_network_plugin.pyeditquantum/extensions/loadbalancer.pyeditquantum/extensions/securitygroup.pyeditquantum/common/constants.pyeditquantum/tests/unit/test_api_v2.pyeditquantum/api/v2/resource.pyeditquantum/tests/unit/test_l3_plugin.pyeditquantum/tests/unit/test_security_groups_rpc.pyeditquantum/api/v2/base.pyeditquantum/tests/unit/testlib_api.pyConsole Output[...truncated 3690 lines...]1 out of 2 hunks FAILED -- rejects in file etc/quantum/plugins/openvswitch/ovs_quantum_plugin.inipatching file etc/quantum/plugins/nec/nec.inipatching file etc/quantum/plugins/nicira/nvp.inipatching file etc/quantum/plugins/ryu/ryu.iniHunk #2 FAILED at 52.1 out of 2 hunks FAILED -- rejects in file etc/quantum/plugins/ryu/ryu.inipatching file etc/quantum/plugins/bigswitch/restproxy.iniPatch fix-quantum-configuration.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-b13571e9-8a1a-4554-87f7-28bf82edc266', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-b13571e9-8a1a-4554-87f7-28bf82edc266', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/quantum/grizzly /tmp/tmp6K9S6R/quantummk-build-deps -i -r -t apt-get -y /tmp/tmp6K9S6R/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d411308f7e5e18133653fc656281a56fe635bb9b..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201302052331~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [3f013e3] Adds xml support for quantum v2 API.dch -a [7beec04] Allow tools/install_venv_common.py to be run from within the source directory.dch -a [0c9b820] Cisco plugin cleanup follow up commitdch -a [962aca5] Be smarter when figuring out broadcast addressdch -a [a4c1076] Use policy_file parameter in quantum.policydch -a [7caf323] Imported Translations from Transifexdch -a [1b7565b] Define root_helper variable under the [AGENT] sectiondch -a [dc1c36f] Imported Translations from Transifexdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-b13571e9-8a1a-4554-87f7-28bf82edc266', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwd(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-b13571e9-8a1a-4554-87f7-28bf82edc266', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7194

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7194/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson4500052972309324562.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7195

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7195/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson7219275946997084179.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7197

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7197/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson8220295105001673273.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7198

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7198/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson8456435111339489666.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7199

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7199/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson3051706126735825096.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7200

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7200/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson6426103354509056038.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7201

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7201/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson3214172705944291118.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7202

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7202/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson2818531545574728303.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7203

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7203/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson7602715390738011187.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7205

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7205/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson7017160362160036564.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #7206

2013-02-05 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/7206/

--
Started by timer
Building remotely on pkg-builder in workspace 
http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/
[cloud-archive_folsom_version-drift] $ /bin/bash -xe 
/tmp/hudson607717434202039.sh
+ OS_RELEASE=folsom
+ /var/lib/jenkins/tools/ca-versions/gather-versions.py folsom
INFO:root:Querying package list and versions from staging PPA.
INFO:root:Initializing connection to LP...
INFO:root:Querying Ubuntu versions for all packages.
INFO:root:Scraping Packages list for CA pocket: proposed
INFO:root:Scraping Packages list for CA pocket: updates
+ /var/lib/jenkins/tools/ca-versions/ca-versions.py -c -r folsom
---
The following Cloud Archive packages for folsom
have been superseded newer versions in Ubuntu!

keystone:
Ubuntu: 2012.2.1-0ubuntu1.1
Cloud Archive staging: 2012.2.1-0ubuntu1~cloud0

--
Build step 'Execute shell' marked build as failure

-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp