[Openstack] How to deploy openstack automatically in your env.

2012-12-03 Thread Lei Zhang
Hi all,

I search the internet for days and found several automatically tool.
Including

   - devstack
   - puppet+pupet-openstack
   - stackops
   - OneStack

But It seems that all the scripts are well tested on ubuntu not RHEL. How
could you guys to deploy the openstack automatically, especially on RHEL.
-- 
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


[Openstack] [Quantum] eth port configuation.

2012-12-03 Thread Ahmed Al-Mehdi
Hello,

I followed the document to setup my OpenStack environment, using on
controller-node, and one compute-node - (
https://github.com/mseknibilel/OpenStack-Folsom-Install-guide/blob/e6e797f991fe79b46c6087e2098d7117ff7b828b/OpenStack_Folsom_Install_Guide_WebVersion.rst
.
(Please note this is an earlier version of the same document using two
nodes).

Following are the ethernet port settings per the doc:

controller-node

eth0 - Mgmt network  (assigned by DHCP).
eth1 (connected to br-eth1) - VM conf. nework
eth2 (connected to br-ex) - VM internet access

root@novato:/etc/quantum# cat /etc/network/interfaces
# The primary network interface
auto eth0
iface eth0 inet dhcp
#Not internet connected(used for VM configuration)
auto eth1
iface eth1 inet static
address 100.10.10.232
netmask 255.255.255.0
#Will generously be bridged to the br-ex later:
auto eth2
iface eth2 inet manual
up ifconfig $IFACE 0.0.0.0 up
up ip link set $IFACE promisc on
down ip link set $IFACE promisc off
down ifconfig $IFACE down


compute node
---
eth0 - Mgmt network (assigned by DHCP).
eth1 (connected to br-eth1) - VM conf. nework

root@bodega:~# cat /etc/network/interfaces
# The primary network interface
auto eth0
iface eth0 inet dhcp
# Not connected to internet
auto eth1
iface eth1 inet static
address 100.10.10.233
netmask 255.255.255.0

I have a few questions:
- On controller-node, is the configuration of eth1 and eth2 switched? I
don't understandy why eth1 (for VM access) on both node needs an IP
address, and eth2 (for internet access) does not?

- Does OVS needs some sort of a (dummy) IP address assigned to a bridge
interface (eth1 on controller-node and compute-node).

- I can't figure out for the life of me where the 100.10.10.* address for
VM Conf network came from?  Is this a OVS thing?

Thank you very much in advance.

Regards,
Ahmed.
___
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 to deploy openstack automatically in your env.

2012-12-03 Thread Lei Zhang
It is a wired thing that the openstack is a python project. But many tools
for it are build on ruby?


On Mon, Dec 3, 2012 at 5:44 PM, Joe Breu joseph.b...@rackspace.com wrote:

  Hi Lei,

  We have chef cookbooks to install Openstack located at
 http://github.com/rcbops/chef-cookbooks.

   ---
 Joseph Breu
 Deployment Engineer
 Rackspace Private Cloud
 210-312-3508

  On Dec 3, 2012, at 9:15 AM, Lei Zhang wrote:

  Hi all,

 I search the internet for days and found several automatically tool.
 Including

- devstack
- puppet+pupet-openstack
- stackops
- OneStack

 But It seems that all the scripts are well tested on ubuntu not RHEL. How
 could you guys to deploy the openstack automatically, especially on RHEL.
  --
 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





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


[Openstack] [Folsom] How VM is connected to Swift storage

2012-12-03 Thread Nikola Pajtic
Hi all,

I would like to ask you for some explanations about OpenStack production
use case, I don't understand how my new VM will be connected to Swift
storage nodes.

It is not yet finished, but my OpenStack deployment will look like this: 2
cloud controller nodes (keystone, glance, cinder, quantum, nova, rabbit,
mysql..) and 2 compute (nova-compute) nodes. Next, I will have 1 Swift
Proxy and 3 Swift Storage nodes.

When the time comes to migrate our clients, I will create VMs and transfer
those web applications.

My question is: will the BLOBS (images, videos, user upload files..) of
that web apps, be automatically saved into Swift storage? Or, our
developers will have to change that every single application's code and
tell them to save and retrieve BLOBS from remote Swift servers?

Thanks in advance!
___
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] [Folsom] How VM is connected to Swift storage

2012-12-03 Thread Robert van Leeuwen
 I would like to ask you for some explanations about OpenStack production use 
 case, 
I don't understand how my new VM will be connected to Swift storage nodes.

You can use swift as backend to store the vm images (through glance). 
When a vm instance is created you can select these vm images as a source. 
Note that the image will be copied to local storage on the compute node when it 
is started so it is really just an image store, you can not directly run the 
image from swift.

My question is: will the BLOBS (images, videos, user upload files..) of that 
web apps, be automatically saved into 
Swift storage? Or, our developers will have to change that every single 
application's code and tell them to save and retrieve BLOBS from remote Swift 
servers?
Yes, the applications needs to be modified. 

Cheers,
Robert van Leeuwen

___
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] glance error......

2012-12-03 Thread Chris St
Hello,

I am a newbie in Openstack and I try to get a first overview. For my
overview I want to install and implement OpenStack.
I have installed two CentOS Server (Version 6.3) with all actual updates.
For the installation I followed the documentation for the
Fedora/RHEL/CentOS here:

http://docs.openstack.org/folsom/openstack-compute/install/yum/content/

Now I have a problem after the glance installation, but couldn't figure out
why this error happens or what's the problem. I am at the point were I try
to upload a Image (
http://docs.openstack.org/folsom/openstack-compute/install/yum/content/images-verifying-install.html
).

When I try to do this after a long time period I run into a timeout.

The api.log gives me this errors:
2012-12-03 13:16:53 18450 TRACE glance Traceback (most recent call last):
2012-12-03 13:16:53 18450 TRACE glance   File /usr/bin/glance-api, line
57, in module
2012-12-03 13:16:53 18450 TRACE glance server.wait()
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 241, in wait
2012-12-03 13:16:53 18450 TRACE glance self.wait_on_children()
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 226, in
wait_on_children
2012-12-03 13:16:53 18450 TRACE glance self.run_child()
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 256, in
run_child
2012-12-03 13:16:53 18450 TRACE glance self.run_server()
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 275, in
run_server
2012-12-03 13:16:53 18450 TRACE glance eventlet.wsgi.server(self.sock,
self.app_func(),
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/glance/common/config.py, line 186, in
load_paste_app
2012-12-03 13:16:53 18450 TRACE glance app = deploy.loadapp(config:%s
% conf_file, name=app_name)
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
line 247, in loadapp
2012-12-03 13:16:53 18450 TRACE glance return loadobj(APP, uri,
name=name, **kw)
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
line 272, in loadobj
2012-12-03 13:16:53 18450 TRACE glance return context.create()
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
line 710, in create
2012-12-03 13:16:53 18450 TRACE glance return
self.object_type.invoke(self)
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
line 203, in invoke
2012-12-03 13:16:53 18450 TRACE glance app =
context.app_context.create()
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
line 710, in create
2012-12-03 13:16:53 18450 TRACE glance return
self.object_type.invoke(self)
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
line 144, in invoke
2012-12-03 13:16:53 18450 TRACE glance **context.local_conf)
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/util.py,
line 56, in fix_call
2012-12-03 13:16:53 18450 TRACE glance val = callable(*args, **kw)
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/glance/api/__init__.py, line 31, in
root_app_factory
2012-12-03 13:16:53 18450 TRACE glance return
paste.urlmap.urlmap_factory(loader, global_conf, **local_conf)
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/paste/urlmap.py, line 25, in
urlmap_factory
2012-12-03 13:16:53 18450 TRACE glance app = loader.get_app(app_name,
global_conf=global_conf)
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
line 350, in get_app
2012-12-03 13:16:53 18450 TRACE glance name=name,
global_conf=global_conf).create()
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
line 710, in create
2012-12-03 13:16:53 18450 TRACE glance return
self.object_type.invoke(self)
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
line 146, in invoke
2012-12-03 13:16:53 18450 TRACE glance return fix_call(context.object,
context.global_conf, **context.local_conf)
2012-12-03 13:16:53 18450 TRACE glance   File
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/util.py,
line 56, in fix_call
2012-12-03 13:16:53 18450 TRACE glance val = callable(*args, 

Re: [Openstack] Fwd: [openstack-announce] [ANNOUNCE] OpenStack Nova, Glance, Keystone, Cinder, Quantum and Horizon 2012.2.1 released

2012-12-03 Thread Chuck Short

Hi,

It should be available this week.

Regards
chuck

On 12-12-03 01:34 AM, Sina Sadeghi wrote:

Hello list,

When will this update be available tousers of the Ubuntu Cloud Archive?


 Original Message 
Subject: 	[openstack-announce] [ANNOUNCE] OpenStack Nova, Glance, 
Keystone, Cinder, Quantum and Horizon 2012.2.1 released

Date:   Thu, 29 Nov 2012 23:16:52 +
From:   Mark McLoughlin mar...@redhat.com
Reply-To:   Mark McLoughlin mar...@redhat.com
To: 	openstack@lists.launchpad.net, 
openstack-annou...@lists.openstack.org




Hey,

In the time since the Folsom release, we have been busy selectively
back-porting bugfixes to the stable/folsom branch according to our safe
source of high-impact fixes criteria documented here:

   http://wiki.openstack.org/StableBranch

We're happy to announce the 2012.2.1 release, the first in the series of
releases to make available the bugfixes from stable/folsom.

These releases are bugfix updates to Folsom and are intended to be
relatively risk free with no intentional regressions or API changes.

A total of 139 bugs have been fixed in this release, which is a higher
than the usual volume of fixes in a stable release.

The list of bugs fixed can be seen here:

   https://launchpad.net/nova/folsom/2012.2.1
   https://launchpad.net/glance/folsom/2012.2.1
   https://launchpad.net/keystone/folsom/2012.2.1
   https://launchpad.net/cinder/folsom/2012.2.1
   https://launchpad.net/quantum/folsom/2012.2.1
   https://launchpad.net/horizon/folsom/2012.2.1

Please read (and add to!) the release notes at:

   http://wiki.openstack.org/ReleaseNotes/2012.2.1

Enjoy!

Mark.


___
OpenStack-announce mailing list
openstack-annou...@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-announce





___
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] glance error......

2012-12-03 Thread gong yong sheng

It seems the error is related to sql_connection for your glance.
On 12/03/2012 08:21 PM, Chris St wrote:

Hello,

I am a newbie in Openstack and I try to get a first overview. For my 
overview I want to install and implement OpenStack.
I have installed two CentOS Server (Version 6.3) with all actual 
updates.  For the installation I followed the documentation for the 
Fedora/RHEL/CentOS here:


http://docs.openstack.org/folsom/openstack-compute/install/yum/content/

Now I have a problem after the glance installation, but couldn't 
figure out why this error happens or what's the problem. I am at the 
point were I try to upload a Image 
(http://docs.openstack.org/folsom/openstack-compute/install/yum/content/images-verifying-install.html).


When I try to do this after a long time period I run into a timeout.

The api.log gives me this errors:
2012-12-03 13:16:53 18450 TRACE glance Traceback (most recent call last):
2012-12-03 13:16:53 18450 TRACE glance   File /usr/bin/glance-api, 
line 57, in module

2012-12-03 13:16:53 18450 TRACE glance server.wait()
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 241, in 
wait

2012-12-03 13:16:53 18450 TRACE glance self.wait_on_children()
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 226, in 
wait_on_children

2012-12-03 13:16:53 18450 TRACE glance self.run_child()
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 256, in 
run_child

2012-12-03 13:16:53 18450 TRACE glance self.run_server()
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 275, in 
run_server
2012-12-03 13:16:53 18450 TRACE glance eventlet.wsgi.server(self.sock, 
self.app_func(),
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/glance/common/config.py, line 186, 
in load_paste_app
2012-12-03 13:16:53 18450 TRACE glance app = 
deploy.loadapp(config:%s % conf_file, name=app_name)
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py, 
line 247, in loadapp
2012-12-03 13:16:53 18450 TRACE glance return loadobj(APP, uri, 
name=name, **kw)
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py, 
line 272, in loadobj

2012-12-03 13:16:53 18450 TRACE glance return context.create()
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py, 
line 710, in create
2012-12-03 13:16:53 18450 TRACE glance return 
self.object_type.invoke(self)
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py, 
line 203, in invoke
2012-12-03 13:16:53 18450 TRACE glance app = 
context.app_context.create()
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py, 
line 710, in create
2012-12-03 13:16:53 18450 TRACE glance return 
self.object_type.invoke(self)
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py, 
line 144, in invoke

2012-12-03 13:16:53 18450 TRACE glance **context.local_conf)
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/util.py, 
line 56, in fix_call

2012-12-03 13:16:53 18450 TRACE glance val = callable(*args, **kw)
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/glance/api/__init__.py, line 31, in 
root_app_factory
2012-12-03 13:16:53 18450 TRACE glance return 
paste.urlmap.urlmap_factory(loader, global_conf, **local_conf)
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/paste/urlmap.py, line 25, in 
urlmap_factory
2012-12-03 13:16:53 18450 TRACE glance app = 
loader.get_app(app_name, global_conf=global_conf)
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py, 
line 350, in get_app
2012-12-03 13:16:53 18450 TRACE glance name=name, 
global_conf=global_conf).create()
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py, 
line 710, in create
2012-12-03 13:16:53 18450 TRACE glance return 
self.object_type.invoke(self)
2012-12-03 13:16:53 18450 TRACE glance   File 
/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py, 
line 146, in invoke
2012-12-03 13:16:53 18450 TRACE glance return 
fix_call(context.object, context.global_conf, **context.local_conf)
2012-12-03 13:16:53 18450 TRACE glance   File 

[Openstack] [OpenStack] Upgraded from Essex to Folsom, instances lost all internet connectivity

2012-12-03 Thread Leander Bessa Beernaert
Hello all,

I've upgraded my OpenStack installation about a month ago or so. I've been
recently informed that the virtual machines no longer have internet
connectivity. They can be accessed through ssh and can reach each other.
They can however no longer perform any outside access such as apt-get
update for instance.

Before the upgrade, everything was working fine, is this due to some Folsom
specific feature?


Regards,

Leander
___
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] Need help in deploying Nova on Vmware ESXi server

2012-12-03 Thread HemanthRao Doddikindi
Hi All,



I have a requirement of using my coroporate DNS for nameserver in 
/etc/resolv.conf. I'm working on Essex 2012.1 branch with ESX as hypervisor I 
found an flag called --dns_server and set it to the desired value. And also 
created the network by setting the options -dns1 and -dns2 with the values 
required. But still the /etc/resolv.conf is getting the gateway as nameserver. 
Have anybody worked with such requirement.



Regards,

Hemanth Rao D



DISCLAIMER
==
This e-mail may contain privileged and confidential information which is the 
property of Persistent Systems Ltd. It is intended only for the use of the 
individual or entity to which it is addressed. If you are not the intended 
recipient, you are not authorized to read, retain, copy, print, distribute or 
use this message. If you have received this communication in error, please 
notify the sender and delete all copies of this message. Persistent Systems 
Ltd. does not accept any liability for virus infected mails.
___
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] Remove unsed network on host with nova-network

2012-12-03 Thread Édouard Thuleau
Hi Vish,

I made a patch to implement that with the VLAN manager:
https://review.openstack.org/#/c/17352/

I put a lock on methods '_setup_network_on_host' and
'_teardown_network_on_host' of class 'VlanManager' and I reused (and
renamed) the locks already defined in class 'LinuxBridgeInterfaceDriver'
when a bridge or VLAN is created ('ensure_vlan' = 'lock_vlan' and
'unsure_bridge' = 'lock_bridge'). Do you think is enough to prevent any
race condition ?

I've got a bug. I create method '_remove_dnsmasq_accept_rules' to remove
filter rules for DHCP server but when I call it, nothing is deleted. Could
you help me to resolve that ? And I've got the same problem sometimes with
method 'remove_isolate_dhcp_address'. The ebtables rules are correctly
deleted but not  for iptables rules.

I didn't delete a network bridge if it handles VPN forward rules of the
private network even if no VM use this gateway on the host. But if a
network is deleted, nothing will tear down this gateway.
I think I found another bug. If network host must handle the VPN forward
rules for a private network and if we restart it, it should instantiate a
gateway on this private network and add VPN forward rules even if no VM use
this gateway on the host. But actually  it doesn't do that. Perhaps, the
method 'db.network_get_all_by_host' use in 'init-host' must return the
network in this case ?

I only implement this for the multi hosted networks with the VLAN manger. I
think isn't useful to add this on the multi hosted network with the Flat
DHCP manager because, in this mode, only one multi hosted network is
created for all instances of all tenants.

Regards,
Édouard.

On Wed, Nov 21, 2012 at 12:49 AM, Vishvananda Ishaya vishvana...@gmail.com
wrote:
 The only reason this is not done is that it makes the setup simpler. We
 don't have to worry about potential races between setting up and tearing
 down interfaces. It probably wouldn't be incredibly difficult to make a
 patch that would remove them, but you will likely have to do some creative
 locking to make sure that you don't run into issues.

 Vish

 On Nov 20, 2012, at 9:25 AM, Édouard Thuleau thul...@gmail.com wrote:

 Hi all,

 I use nova-network with VLAN manager.

 Why nova-network doesn't remove unused network interfaces on a host ?

 ie, if none VM on a host have a fixed IP attach to network X, the VLAN
 and bridge of this network still up and unused. And 'dnsmasq' process
 still listen and running.

 The number of unused network interfaces will grow over time.
 In the VLAN mode, this number could be 4000 x 2 unused interfaces and
 4000 unused 'dnsmasq' processes (in worth case).

 Can it lead to decrease the kernel performance ?
 Is it a bug ? Or a voluntary implementation ?

 Regards,
 Édouard.

 ___
 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] resizing instance fails

2012-12-03 Thread Afef MDHAFFAR
Hi all,

when I try to resize a running instance, I get this error:
Is there any way to solve it?


2012-12-03 14:38:25 ERROR nova.compute.manager
[req-3e393b4e-d0ed-430f-b0cc-53a9167e afef cep4cma] [instance:
d3dba21b-3877-4da3-a2ab-8128f8515573] VHD coalesce attempts exceeded (5),
giving up Setting instance vm_state to ERROR
2012-12-03 14:38:25 DEBUG nova.manager [-] Running periodic task
SchedulerManager._expire_reservations from (pid=19093) periodic_tasks
/opt/stack/nova/nova/manager.py:171
2012-12-03 14:38:25 DEBUG nova.openstack.common.lockutils
[req-3e393b4e-d0ed-430f-b0cc-53a9167e afef cep4cma] Got semaphore
compute_resources for method update_usage... from (pid=19070) inner
/opt/stack/nova/nova/openstack/common/lockutils.py:185
2012-12-03 14:38:26 DEBUG nova.openstack.common.rpc.amqp [-] received
{u'_context_roles': [], u'_context_request_id':
u'req-9cc1eaf2-4773-4db0-b4d7-d80e4cf306eb', u'_context_quota_class': None,
u'_context_project_name': None, u'_context_service_catalog': None,
u'_context_user_name': None, u'_context_auth_token': 'SANITIZED',
u'args': {u'service_name': u'compute', u'host': u'computeDomU03',
u'capabilities': {u'host_name-description': u'Default install of
XenServer', u'disk_available': 230087983104, u'host_hostname':
u'compute09', u'supported_instances': [[u'x86_64', u'xapi', u'xen'],
[u'x86_32p', u'xapi', u'xen'], [u'x86_32', u'xapi', u'hvm'], [u'x86_32p',
u'xapi', u'hvm'], [u'x86_64', u'xapi', u'hvm']], u'host_memory_overhead':
106897408, u'enabled': u'true', u'host_ip': u'10.0.1.19',
u'host_capabilities': [u'xen-3.0-x86_64', u'xen-3.0-x86_32p',
u'hvm-3.0-x86_32', u'hvm-3.0-x86_32p', u'hvm-3.0-x86_64'], u'host_uuid':
u'03433673-d30c-4f8e-94cc-43d53f9c2207', u'host_memory_free': 5261139968,
u'disk_total': 242124587008, u'host_ip_address': u'10.0.1.166',
u'hypervisor_hostname': u'compute09', u'host_memory_total': 8589463552,
u'host_memory_free_computed': 5178503168, u'disk_used': 12036603904,
u'host_other-config': {u'agent_start_time': u'1353496206.', u'boot_time':
u'1353496188.', u'no_local_storage': u'true'}, u'host_name-label':
u'compute09', u'host_cpu_info': {u'physical_features':
u'---', u'modelname': u'Dual-Core AMD
Opteron(tm) Processor 2216 HE', u'vendor': u'AuthenticAMD', u'features':
u'---', u'family': 15, u'maskable': u'no',
u'cpu_count': 4, u'flags': u'fpu de tsc msr pae cx8 apic cmov pat clflush
mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow rep_good
nopl extd_apicid pni cx16 hypervisor lahf_lm cmp_legacy extapic
cr8_legacy', u'stepping': 2, u'model': 65, u'features_after_reboot':
u'---', u'speed': u'2394.010'}}},
u'_context_instance_lock_checked': False, u'_context_is_admin': True,
u'version': u'2.0', u'_context_project_id': None, u'_context_timestamp':
u'2012-12-03T14:38:26.342811', u'_context_read_deleted': u'no',
u'_context_user_id': None, u'method': u'update_service_capabilities',
u'_context_remote_address': None} from (pid=19093) _safe_log
/opt/stack/nova/nova/openstack/common/rpc/common.py:195
2012-12-03 14:38:26 DEBUG nova.openstack.common.rpc.amqp [-] unpacked
context: {'project_name': None, 'user_id': None, 'roles': [], 'timestamp':
u'2012-12-03T14:38:26.342811', 'auth_token': 'SANITIZED',
'remote_address': None, 'quota_class': None, 'is_admin': True,
'service_catalog': None, 'request_id':
u'req-9cc1eaf2-4773-4db0-b4d7-d80e4cf306eb', 'instance_lock_checked':
False, 'project_id': None, 'user_name': None, 'read_deleted': u'no'} from
(pid=19093) _safe_log
/opt/stack/nova/nova/openstack/common/rpc/common.py:195
2012-12-03 14:38:26 DEBUG nova.scheduler.host_manager
[req-9cc1eaf2-4773-4db0-b4d7-d80e4cf306eb None None] Received compute
service update from (u'computeDomU03', u'compute09'). from (pid=19093)
update_service_capabilities
/opt/stack/nova/nova/scheduler/host_manager.py:340
2012-12-03 14:38:26 DEBUG nova.openstack.common.lockutils
[req-3e393b4e-d0ed-430f-b0cc-53a9167e afef cep4cma] Got semaphore
compute_resources for method update_usage... from (pid=19070) inner
/opt/stack/nova/nova/openstack/common/lockutils.py:185
2012-12-03 14:38:26 ERROR nova.openstack.common.rpc.amqp [-] Exception
during message handling
2012-12-03 14:38:26 TRACE nova.openstack.common.rpc.amqp Traceback (most
recent call last):
2012-12-03 14:38:26 TRACE nova.openstack.common.rpc.amqp   File
/opt/stack/nova/nova/openstack/common/rpc/amqp.py, line 276, in
_process_data
2012-12-03 14:38:26 TRACE nova.openstack.common.rpc.amqp rval =
self.proxy.dispatch(ctxt, version, method, **args)
2012-12-03 14:38:26 TRACE nova.openstack.common.rpc.amqp   File
/opt/stack/nova/nova/openstack/common/rpc/dispatcher.py, line 145, in
dispatch
2012-12-03 14:38:26 TRACE nova.openstack.common.rpc.amqp return
getattr(proxyobj, method)(ctxt, **kwargs)
2012-12-03 14:38:26 TRACE nova.openstack.common.rpc.amqp   File
/opt/stack/nova/nova/exception.py, line 115, in wrapped

Re: [Openstack] glance error......

2012-12-03 Thread Razique Mahroua
Hi Chris,what is the size of the image you are trying to upload ?Regards,
Razique Mahroua-Nuage  Corazique.mahr...@gmail.comTel: +33 9 72 37 94 15

Le 3 déc. 2012 à 13:21, Chris St cstli...@gmail.com a écrit :Hello,I am a newbie in Openstack and I try to get a "first overview". For my overview I want to install and implement OpenStack.I have installed two CentOS Server (Version 6.3) with all actual updates. For the installation I followed the documentation for the Fedora/RHEL/CentOS here:

http://docs.openstack.org/folsom/openstack-compute/install/yum/content/Now I have a problem after the glance installation, but couldn't figure out why this error happens or what's the problem. I am at the point were I try to upload a Image (http://docs.openstack.org/folsom/openstack-compute/install/yum/content/images-verifying-install.html).

When I try to do this after a long time period I run into a timeout.The api.log gives me this errors:2012-12-03 13:16:53 18450 TRACE glance Traceback (most recent call last):2012-12-03 13:16:53 18450 TRACE glance File "/usr/bin/glance-api", line 57, in module

2012-12-03 13:16:53 18450 TRACE glance server.wait()2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/glance/common/wsgi.py", line 241, in wait2012-12-03 13:16:53 18450 TRACE glance self.wait_on_children()

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/glance/common/wsgi.py", line 226, in wait_on_children2012-12-03 13:16:53 18450 TRACE glance self.run_child()2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/glance/common/wsgi.py", line 256, in run_child

2012-12-03 13:16:53 18450 TRACE glance self.run_server()2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/glance/common/wsgi.py", line 275, in run_server2012-12-03 13:16:53 18450 TRACE glance eventlet.wsgi.server(self.sock, self.app_func(),

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/glance/common/config.py", line 186, in load_paste_app2012-12-03 13:16:53 18450 TRACE glance app = deploy.loadapp("config:%s" % conf_file, name=app_name)

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py", line 247, in loadapp2012-12-03 13:16:53 18450 TRACE glance return loadobj(APP, uri, name=name, **kw)

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py", line 272, in loadobj2012-12-03 13:16:53 18450 TRACE glance return context.create()

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py", line 710, in create2012-12-03 13:16:53 18450 TRACE glance return self.object_type.invoke(self)

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py", line 203, in invoke2012-12-03 13:16:53 18450 TRACE glance app = context.app_context.create()

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py", line 710, in create2012-12-03 13:16:53 18450 TRACE glance return self.object_type.invoke(self)

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py", line 144, in invoke2012-12-03 13:16:53 18450 TRACE glance **context.local_conf)

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/util.py", line 56, in fix_call2012-12-03 13:16:53 18450 TRACE glance val = callable(*args, **kw)

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/glance/api/__init__.py", line 31, in root_app_factory2012-12-03 13:16:53 18450 TRACE glance return paste.urlmap.urlmap_factory(loader, global_conf, **local_conf)

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/paste/urlmap.py", line 25, in urlmap_factory2012-12-03 13:16:53 18450 TRACE glance app = loader.get_app(app_name, global_conf=global_conf)

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py", line 350, in get_app2012-12-03 13:16:53 18450 TRACE glance name=name, global_conf=global_conf).create()

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py", line 710, in create2012-12-03 13:16:53 18450 TRACE glance return self.object_type.invoke(self)

2012-12-03 13:16:53 18450 TRACE glance File "/usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py", line 146, in invoke2012-12-03 13:16:53 18450 TRACE glance return fix_call(context.object, context.global_conf, **context.local_conf)

2012-12-03 13:16:53 18450 TRACE glance File 

Re: [Openstack] [devstack] keystone failed to get-token

2012-12-03 Thread Adam Young

On 12/03/2012 05:57 AM, benzwt benzwt wrote:

I gitted the devstack with version 6540d8910194bb523601ffdd06cdf4c2126e3fd0

I ran it but it returned
glance: error: argument --os-auth-token: expected one argument

after tracing the code I found that
it was due to
line 1662 in stack.sh

as the keystone failed to get-token, the value of --os-auth-token is empty

You have to find out why Keystone failed.I usually do something like:

. openrc
keystone token-get

And look at the log messages from the Keystone. If you look in the 
screens  (run screen -x) , Keystone is usually screen 3 (ctrl-a 3). 
ctrl-d to detach afterwards.





can somebody helps me ?


Best regards,
reynolds

___
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] How to deploy openstack automatically in your env.

2012-12-03 Thread Jonathan Proulx
On Mon, Dec 03, 2012 at 06:21:54PM +0800, Lei Zhang wrote:
:It is a wired thing that the openstack is a python project. But many tools
:for it are build on ruby?

Puppet (http://puppetlabs.com/) and Chef
(http://www.opscode.com/chef), the main players in configuration
management are both written in Ruby and manage more than just
OpenStack so the code just isn't related

I can't be much help on your origina RHEL question as I run a Debian / 
Ubuntu shop.  But while it is true that deployment tools are better
tested on Ubuntu, certainly any puppe tor chef based solutions
*should* work on RHEL if they don't it would be worth reporting their
failures to the developers of those tools.

There is a Fedora OpenStack wiki at
http://fedoraproject.org/wiki/OpenStack which is linked from
http://www.openstack.org/software/start/ which has other RedHat family
specific links at the bottom of the page

-Jon

:
:
:On Mon, Dec 3, 2012 at 5:44 PM, Joe Breu joseph.b...@rackspace.com wrote:
:
:  Hi Lei,
:
:  We have chef cookbooks to install Openstack located at
: http://github.com/rcbops/chef-cookbooks.
:
:   ---
: Joseph Breu
: Deployment Engineer
: Rackspace Private Cloud
: 210-312-3508
:
:  On Dec 3, 2012, at 9:15 AM, Lei Zhang wrote:
:
:  Hi all,
:
: I search the internet for days and found several automatically tool.
: Including
:
:- devstack
:- puppet+pupet-openstack
:- stackops
:- OneStack
:
: But It seems that all the scripts are well tested on ubuntu not RHEL. How
: could you guys to deploy the openstack automatically, especially on RHEL.
:  --
: 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
:
:
:
:
:
:-- 
: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


___
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 to deploy openstack automatically in your env.

2012-12-03 Thread Derek Higgins
Hi Lei,

On 12/03/2012 09:15 AM, Lei Zhang wrote:
 Hi all,
 
 I search the internet for days and found several automatically tool.
 Including
 
   * devstack
   * puppet+pupet-openstack
   * stackops
   * OneStack
 
 But It seems that all the scripts are well tested on ubuntu not RHEL.
 How could you guys to deploy the openstack automatically, especially on
 RHEL.

   a lot of work has gone into the puppetlabs puppet modules so that
they work on RHEL,

you can download the modules from their github account
https://github.com/puppetlabs/

alternatively, I have been working on a tool to deploy openstack on RHEL
and Fedora, its still at early stages and probably a bit rough around
the edges but if your interested you can try it out
https://github.com/fedora-openstack/packstack

currently you can use packstack to install folsom keystone, glance,
nova, cinder, horizon and swift on Multiple RHEL or Fedora servers. If
you want to try it out it would be great to get any feedback you have.

packstack uses the puppetlabs modules to apply puppet manifests to
individual servers without the requirement of having a puppet master server.

thanks,
Derek.

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


___
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 to deploy openstack automatically in your env.

2012-12-03 Thread Tim Bell
Lei,

At CERN, we run our RHEL-based OpenStack instance with the puppetlabs
modules. They work very well and simplify the multi-node deployments.

We've got around 200 hypervisors deployed with this method.

Tim

 -Original Message-
 From: openstack-bounces+tim.bell=cern...@lists.launchpad.net
 [mailto:openstack-bounces+tim.bell=cern...@lists.launchpad.net] On Behalf
Of
 Derek Higgins
 Sent: 03 December 2012 16:37
 To: Lei Zhang
 Cc: openstack@lists.launchpad.net
 Subject: Re: [Openstack] How to deploy openstack automatically in your
env.
 
 Hi Lei,
 
 On 12/03/2012 09:15 AM, Lei Zhang wrote:
  Hi all,
 
  I search the internet for days and found several automatically tool.
  Including
 
* devstack
* puppet+pupet-openstack
* stackops
* OneStack
 
  But It seems that all the scripts are well tested on ubuntu not RHEL.
  How could you guys to deploy the openstack automatically, especially
  on RHEL.
 
a lot of work has gone into the puppetlabs puppet modules so that they
work
 on RHEL,
 
 you can download the modules from their github account
 https://github.com/puppetlabs/
 
 alternatively, I have been working on a tool to deploy openstack on RHEL
and
 Fedora, its still at early stages and probably a bit rough around the
edges but if
 your interested you can try it out https://github.com/fedora-
 openstack/packstack
 
 currently you can use packstack to install folsom keystone, glance, nova,
cinder,
 horizon and swift on Multiple RHEL or Fedora servers. If you want to try
it out it
 would be great to get any feedback you have.
 
 packstack uses the puppetlabs modules to apply puppet manifests to
individual
 servers without the requirement of having a puppet master server.
 
 thanks,
 Derek.
 
 
  --
  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
 
 
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


smime.p7s
Description: S/MIME cryptographic 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


[Openstack] [openstack] [general survey] Asking help from OpenStack Korea User Group.

2012-12-03 Thread Jaesuk Ahn
Hi Everyone

This is Jaesuk Ahn, a leading person in OpenStack Korea User Group.
OpenStack Korea User Group is sincerely asking for help. :)

We are having a openstack conference in Korea this week. As a one of
conference problem, we would like to get openstack member's opinion on
following questions.

We will publiclly present answers we gets here during the conference, as
well as some panel discussion on same questions I put here.

It would be very nice of you if anyone can spare little bit of his/her time
to give us your thought on the following questions.

Thank you!!!


- Questions ---


1. What would be the biggest missing point, things need to be improved
most, in Openstack? In other word, If you need to point one thing for
openstack to have in order to be successful, what would it be?

2. What would be openstack's unique strengh comapring to other open source
solutions?

3. If you choose OpenStack for building cloud service, what would be your
first reason?

4. What is the best experience on openstack?

5. What is the worst experience on openstack?

6. What would be the most common problem you gets when you are operating
openstack-based commercial cloud service?

7 (IMPORTANT). Cloud you please make one sentence to explain how awesome
openstack is?



-- 
*Jaesuk Ahn*, Ph.D.
Team Leader | Cloud OS Dev. Team
Cloud Infrastructure Department
KT (Korea Telecom)
*T. +82-10-9888-0328 | F. +82-303-0993-5340*
*Active member on **OpenStack Korea Community http://www.openstack.or.kr/*
**
___
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] Understanding flavors of VM

2012-12-03 Thread Ahmed Al-Mehdi
Hello,

I instantiated a VM using the cirros image, using the pre-defined
m1.small (1 VCPU, 2 GB Ram, 20G boot disk, 0 Ephemeral disk).  I then
logged into the console of the VM to view some system stats.  The num of
CPU and memory makes sense, but I am a bit confused on the storage aspect.
 I see the output of df -h  as following:

$ df -h
Filesystem  Size UsedAvailable  Use%
  Mounted on
/dev  1001.1M  0  1001.1M
0% /dev
/dev/vda1 23.2M12.9M   9.1M   59%
  /
tmpfs1004.1M  0  1004.1M 0%
/dev/shm
tmpfs  200.0K20.0K180.0K   10%
/run


What is the difference between Boot disk and Ephemeral disk?

How can I correlate the 20G boot disk to the output of df -h.


Regards,
Ahmed.
___
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] [Keystone] LDAP Backend for Catalog

2012-12-03 Thread Adam Young
Right now, only the Identity submodule has an LDAP backend.  This is 
user, tenants, and roles.  Is there any requirement for the Catalog to 
have an LDAP back end?  Endpoints and Services do not necessarily map 
directly to the LDAP view of machines, but could probably be made to 
fit.  I will start investigating the feasibility if there is any demand 
for it.


___
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 to enable EC2 compatibility layer in Keystone

2012-12-03 Thread Attila Fazekas
Shashank,

Make sure you have enabled_apis = ec2,osapi_compute,metadata in the DEFAULT 
section in the
/etc/nova/nova.conf

Attila

- Original Message -
From: Vishvananda Ishaya vishvana...@gmail.com
To: Shashank Sahni shredde...@gmail.com
Cc: openstack@lists.launchpad.net
Sent: Friday, November 23, 2012 9:30:06 PM
Subject: Re: [Openstack] How to enable EC2 compatibility layer in Keystone


It nova that listens on port 8773, not keystone. Keystone is just responsible 
for credentials. 


Vish 



On Nov 23, 2012, at 3:15 AM, Shashank Sahni  shredde...@gmail.com  wrote: 


Hi everyone, 

I've successfully installed keystone(folsom release), glance and swift. I'm 
able to create the ec2 credentials for any user, but keystone daemon isn't 
listening on port 8773. 

I've configured services and endpoints appropriately to point to url 
http://keystone_ip:8773/services/Cloud , but there doesn't seem to be any 
service listening on port 8773(netstat returns only port 5000 as up). Please 
find 'ec2' specific configuration in my keystone.conf file below. 

[ec2] 
driver = keystone.contrib.ec2.backends.sql.Ec2 
[filter:ec2_extension] 
paste.filter_factory = keystone.contrib.ec2:Ec2Extension.factory 
[pipeline:public_api] 
pipeline = stats_monitoring url_normalize token_auth admin_token_auth xml_body 
json_body debug ec2_extension user_crud_extension public_service 
[pipeline:admin_api] 
pipeline = stats_monitoring url_normalize token_auth admin_token_auth xml_body 
json_body debug stats_reporting ec2_extension s3_extension crud_extension 
admin_service 

Any suggestions? 

-- 
Shashank Sahni 

___ 
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

___
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] [Keystone] LDAP Backend for Catalog

2012-12-03 Thread heckj
I haven't heard any demand for it - 

- joe

On Dec 3, 2012, at 11:13 AM, Adam Young ayo...@redhat.com wrote:
 Right now, only the Identity submodule has an LDAP backend.  This is user, 
 tenants, and roles.  Is there any requirement for the Catalog to have an LDAP 
 back end?  Endpoints and Services do not necessarily map directly to the LDAP 
 view of machines, but could probably be made to fit.  I will start 
 investigating the feasibility if there is any demand for it.
 
 ___
 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] Heat's Getting started on Fedora 16+ Guide?

2012-12-03 Thread Rickard, Ronald

Sometime over the weekend, the page for Heat's Getting start on Fedora 16+ 
guide disappeared.  Will this page be returning?

Thanks,
Ron Rickard
___
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] Will Heat Work Without systemd (i.e. will it work with init)?

2012-12-03 Thread Rickard, Ronald

It appears Heat is being developed for OSes that support systemd.  Will Heat 
also work on systems that use init?

Thanks,
Ron Rickard
___
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] [KEYSTONE] Keystone Monitored ( and NewRelic ) on Essex

2012-12-03 Thread Alejandro Comisario
Hi everyone.

We have a production Keystone (Essex 2012.1.3) pool composed of 10 servers
reading to the same database ( running MySQL Galera Cluster ).
We have other Openstack part of the infrastructure like swift monitored
over NewRelic ( python client )

The thing is that we are trying to monitor keystone ( we want to know the
overall RPM and ResponseTime of the entire pool ) and we are trying to do
that with NewRelic.
We are decorating the function __call__ on the class Application on
keystone.common.wsgi since every Keystone service inherits this class to
link URLS, the servers appears in newRelic but we seen response times of
20.000 ms are a little bit higher ( when we know the response time are
200ms ) and few rpm per server (100 vs 400).

Few questions :

#1 Is ok to decorate this class ? is that class the main endpoint of each
keystone request to capture all api calls ?
#2 Dows anyone has any experience in monitoring kesytone with NewRelic ?
#3 In case you are monitoring this metrics, what do you use to effectively
measure the total pool RPM's and ResponseTimes ?

Waiting for advices !
Cheers !
*
*
*---*
*Alejandrito*
___
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's Getting started on Fedora 16+ Guide?

2012-12-03 Thread Steve Baker

On 12/04/2012 08:26 AM, Rickard, Ronald wrote:


Sometime over the weekend, the page for Heat's Getting start on 
Fedora 16+ guide disappeared.  Will this page be returning?




Our git repo was moved to the main OpenStack account over the weekend.

The guide you want is now here:
https://github.com/openstack/heat/blob/master/docs/GettingStarted.rst#readme

I've just gone through our wiki pages and updated the URLs to any git 
content so hopefully the links are fixed now.


cheers
___
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] Will Heat Work Without systemd (i.e. will it work with init)?

2012-12-03 Thread Steve Baker

On 12/04/2012 08:44 AM, Rickard, Ronald wrote:
It appears Heat is being developed for OSes that support systemd.  
Will Heat also work on systems that use init?
It is not our intention to only support systemd based distros. It would 
be most helpful if you could describe the details of your issues in our 
Launchpad:

https://bugs.launchpad.net/heat

or post them to this list.

cheers
___
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] config_drive Image UUID doesn't create disk.config

2012-12-03 Thread Vishvananda Ishaya

On Dec 2, 2012, at 6:15 PM, Jian Hua Geng gen...@cn.ibm.com wrote:

 I saw the comments in the https://bugs.launchpad.net/nova/+bug/1029647 , can 
 anyone give me more detail introduction of this decision about why the 
 functionality for using an image id for config drive was removed? 
 
 Just for example for our requirement: We want create a CDROM and write some 
 information in it such as the sysprep info for windows when run vm.
 First we need extend the config drive to support both cdrom and file disk 
 device, second we create an iso image in glance which is used to save the 
 sysprep info and share with other user in cloud, then wen can use this 
 config_drive_id to load the iso.
 Have any suggestion or solution for this requirement?
 
Here is one option that you could use. Create a volume instead of an image (or 
create the volume from the image), snapshot the volume. If you pass the volume 
snapshot in as a secondary drive in block_device_mapping on boot, then you will 
get a volume copy of the image. If it is delete_on_terminate=True then the 
volume will be deleted when you terminate the vm.

Vish___
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] Remove unsed network on host with nova-network

2012-12-03 Thread Vishvananda Ishaya
FYI, this patch is probably something bigger than we can merge. Nova-network is 
supposed to just be in maintenance mode and
not getting big new features. Small features are ok, but this one changes a lot 
of lines.

Not sure what is up with your rule removal. Perhaps there are multiple copies 
of the added rules so they aren't being deleted properly? In fact, that may be 
a bug. It looks like plug is called for each vm so we might end up with 
multiple copies of the isolation rules.

Vish

On Dec 3, 2012, at 6:34 AM, Édouard Thuleau thul...@gmail.com wrote:

 Hi Vish,
 
 I made a patch to implement that with the VLAN manager: 
 https://review.openstack.org/#/c/17352/
 
 I put a lock on methods '_setup_network_on_host' and 
 '_teardown_network_on_host' of class 'VlanManager' and I reused (and renamed) 
 the locks already defined in class 'LinuxBridgeInterfaceDriver' when a bridge 
 or VLAN is created ('ensure_vlan' = 'lock_vlan' and 'unsure_bridge' = 
 'lock_bridge'). Do you think is enough to prevent any race condition ?
 
 I've got a bug. I create method '_remove_dnsmasq_accept_rules' to remove 
 filter rules for DHCP server but when I call it, nothing is deleted. Could 
 you help me to resolve that ? And I've got the same problem sometimes with 
 method 'remove_isolate_dhcp_address'. The ebtables rules are correctly 
 deleted but not  for iptables rules.
 
 I didn't delete a network bridge if it handles VPN forward rules of the 
 private network even if no VM use this gateway on the host. But if a network 
 is deleted, nothing will tear down this gateway.
 I think I found another bug. If network host must handle the VPN forward 
 rules for a private network and if we restart it, it should instantiate a 
 gateway on this private network and add VPN forward rules even if no VM use 
 this gateway on the host. But actually  it doesn't do that. Perhaps, the 
 method 'db.network_get_all_by_host' use in 'init-host' must return the 
 network in this case ?
 
 I only implement this for the multi hosted networks with the VLAN manger. I 
 think isn't useful to add this on the multi hosted network with the Flat DHCP 
 manager because, in this mode, only one multi hosted network is created for 
 all instances of all tenants.
 
 Regards,
 Édouard.
 
 On Wed, Nov 21, 2012 at 12:49 AM, Vishvananda Ishaya vishvana...@gmail.com 
 wrote:
  The only reason this is not done is that it makes the setup simpler. We
  don't have to worry about potential races between setting up and tearing
  down interfaces. It probably wouldn't be incredibly difficult to make a
  patch that would remove them, but you will likely have to do some creative
  locking to make sure that you don't run into issues.
 
  Vish
 
  On Nov 20, 2012, at 9:25 AM, Édouard Thuleau thul...@gmail.com wrote:
 
  Hi all,
 
  I use nova-network with VLAN manager.
 
  Why nova-network doesn't remove unused network interfaces on a host ?
 
  ie, if none VM on a host have a fixed IP attach to network X, the VLAN
  and bridge of this network still up and unused. And 'dnsmasq' process
  still listen and running.
 
  The number of unused network interfaces will grow over time.
  In the VLAN mode, this number could be 4000 x 2 unused interfaces and
  4000 unused 'dnsmasq' processes (in worth case).
 
  Can it lead to decrease the kernel performance ?
  Is it a bug ? Or a voluntary implementation ?
 
  Regards,
  Édouard.
 
  ___
  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] Displaying a flavors extra_specs in horizon

2012-12-03 Thread Dale, StewartX T
Hi All,

I am currently trying to make some modifications to the nova - instances 
dashboard to be able to show the extra_specs field of the flavor each instance 
is running but am running into an issue of how to obtain the extra_specs field. 
 I came across the following blueprint 
(https://blueprints.launchpad.net/horizon/+spec/flavor-extra-specs) which is 
for adding interfaces to horizon to provide this data but it does not mention 
any current work around for this.

Is there currently some way for me to access this data?

-Stewart Dale

___
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] [horizon] Select a key pair by default in launch instance?

2012-12-03 Thread Kieran Spear

Hi all,

I've had a few requests from users who forget to select a key pair when 
launching an instance through the dashboard. I do this myself quite often.


Can we select the first available key pair by default, much like what is 
done with security groups? Most of our users only have a single key pair 
anyway.


Cheers,
Kieran

___
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] [horizon] Select a key pair by default in launch instance?

2012-12-03 Thread Gabriel Hurley
Agreed. I've been thinking that for a while. I've been thinking keypair should 
be promoted to the main tab of the Launch workflow, even.

Patches welcome. :-)

- Gabriel

 -Original Message-
 From: openstack-bounces+gabriel.hurley=nebula@lists.launchpad.net
 [mailto:openstack-
 bounces+gabriel.hurley=nebula@lists.launchpad.net] On Behalf Of
 Kieran Spear
 Sent: Monday, December 03, 2012 4:18 PM
 To: openstack@lists.launchpad.net
 Subject: [Openstack] [horizon] Select a key pair by default in launch
 instance?
 
 Hi all,
 
 I've had a few requests from users who forget to select a key pair when
 launching an instance through the dashboard. I do this myself quite often.
 
 Can we select the first available key pair by default, much like what is done
 with security groups? Most of our users only have a single key pair anyway.
 
 Cheers,
 Kieran
 
 ___
 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] How to deploy openstack automatically in your env.

2012-12-03 Thread Lei Zhang
Thanks all guys. Finally, I will try the puppet on the RHEL today and check
whether it works.


On Mon, Dec 3, 2012 at 11:59 PM, Tim Bell tim.b...@cern.ch wrote:

 Lei,

 At CERN, we run our RHEL-based OpenStack instance with the puppetlabs
 modules. They work very well and simplify the multi-node deployments.

 We've got around 200 hypervisors deployed with this method.

 Tim

  -Original Message-
  From: openstack-bounces+tim.bell=cern...@lists.launchpad.net
  [mailto:openstack-bounces+tim.bell=cern...@lists.launchpad.net] On
 Behalf
 Of
  Derek Higgins
  Sent: 03 December 2012 16:37
  To: Lei Zhang
  Cc: openstack@lists.launchpad.net
  Subject: Re: [Openstack] How to deploy openstack automatically in your
 env.
 
  Hi Lei,
 
  On 12/03/2012 09:15 AM, Lei Zhang wrote:
   Hi all,
  
   I search the internet for days and found several automatically tool.
   Including
  
 * devstack
 * puppet+pupet-openstack
 * stackops
 * OneStack
  
   But It seems that all the scripts are well tested on ubuntu not RHEL.
   How could you guys to deploy the openstack automatically, especially
   on RHEL.
 
 a lot of work has gone into the puppetlabs puppet modules so that they
 work
  on RHEL,
 
  you can download the modules from their github account
  https://github.com/puppetlabs/
 
  alternatively, I have been working on a tool to deploy openstack on RHEL
 and
  Fedora, its still at early stages and probably a bit rough around the
 edges but if
  your interested you can try it out https://github.com/fedora-
  openstack/packstack
 
  currently you can use packstack to install folsom keystone, glance, nova,
 cinder,
  horizon and swift on Multiple RHEL or Fedora servers. If you want to try
 it out it
  would be great to get any feedback you have.
 
  packstack uses the puppetlabs modules to apply puppet manifests to
 individual
  servers without the requirement of having a puppet master server.
 
  thanks,
  Derek.
 
  
   --
   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
  
 
 
  ___
  Mailing list: https://launchpad.net/~openstack
  Post to : openstack@lists.launchpad.net
  Unsubscribe : https://launchpad.net/~openstack
  More help   : https://help.launchpad.net/ListHelp




-- 
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] glance error......

2012-12-03 Thread Lei Zhang
I think the root cause should be the wrong sql_connection, too. Could you
provide you nova.conf file?


On Mon, Dec 3, 2012 at 10:55 PM, Razique Mahroua
razique.mahr...@gmail.comwrote:

 Hi Chris,
 what is the size of the image you are trying to upload ?

 Regards,
 *Razique Mahroua** - **Nuage  Co*
 razique.mahr...@gmail.com
 Tel : +33 9 72 37 94 15


 Le 3 déc. 2012 à 13:21, Chris St cstli...@gmail.com a écrit :

 Hello,

 I am a newbie in Openstack and I try to get a first overview. For my
 overview I want to install and implement OpenStack.
 I have installed two CentOS Server (Version 6.3) with all actual updates.
 For the installation I followed the documentation for the
 Fedora/RHEL/CentOS here:

 http://docs.openstack.org/folsom/openstack-compute/install/yum/content/

 Now I have a problem after the glance installation, but couldn't figure
 out why this error happens or what's the problem. I am at the point were I
 try to upload a Image (
 http://docs.openstack.org/folsom/openstack-compute/install/yum/content/images-verifying-install.html
 ).

 When I try to do this after a long time period I run into a timeout.

 The api.log gives me this errors:
 2012-12-03 13:16:53 18450 TRACE glance Traceback (most recent call last):
 2012-12-03 13:16:53 18450 TRACE glance   File /usr/bin/glance-api, line
 57, in module
 2012-12-03 13:16:53 18450 TRACE glance server.wait()
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 241, in wait
 2012-12-03 13:16:53 18450 TRACE glance self.wait_on_children()
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 226, in
 wait_on_children
 2012-12-03 13:16:53 18450 TRACE glance self.run_child()
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 256, in
 run_child
 2012-12-03 13:16:53 18450 TRACE glance self.run_server()
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/glance/common/wsgi.py, line 275, in
 run_server
 2012-12-03 13:16:53 18450 TRACE glance eventlet.wsgi.server(self.sock,
 self.app_func(),
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/glance/common/config.py, line 186, in
 load_paste_app
 2012-12-03 13:16:53 18450 TRACE glance app =
 deploy.loadapp(config:%s % conf_file, name=app_name)
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
 line 247, in loadapp
 2012-12-03 13:16:53 18450 TRACE glance return loadobj(APP, uri,
 name=name, **kw)
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
 line 272, in loadobj
 2012-12-03 13:16:53 18450 TRACE glance return context.create()
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
 line 710, in create
 2012-12-03 13:16:53 18450 TRACE glance return
 self.object_type.invoke(self)
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
 line 203, in invoke
 2012-12-03 13:16:53 18450 TRACE glance app =
 context.app_context.create()
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
 line 710, in create
 2012-12-03 13:16:53 18450 TRACE glance return
 self.object_type.invoke(self)
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
 line 144, in invoke
 2012-12-03 13:16:53 18450 TRACE glance **context.local_conf)
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/util.py,
 line 56, in fix_call
 2012-12-03 13:16:53 18450 TRACE glance val = callable(*args, **kw)
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/glance/api/__init__.py, line 31, in
 root_app_factory
 2012-12-03 13:16:53 18450 TRACE glance return
 paste.urlmap.urlmap_factory(loader, global_conf, **local_conf)
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/paste/urlmap.py, line 25, in
 urlmap_factory
 2012-12-03 13:16:53 18450 TRACE glance app = loader.get_app(app_name,
 global_conf=global_conf)
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
 line 350, in get_app
 2012-12-03 13:16:53 18450 TRACE glance name=name,
 global_conf=global_conf).create()
 2012-12-03 13:16:53 18450 TRACE glance   File
 /usr/lib/python2.6/site-packages/PasteDeploy-1.5.0-py2.6.egg/paste/deploy/loadwsgi.py,
 line 710, in create
 2012-12-03 13:16:53 18450 TRACE glance return
 

[Openstack] Question about hostname.

2012-12-03 Thread Lei Zhang
Hi all,

I change the machine hostname by using follow commands

$ hostname puppet-master.domain.com
$ sed -i 's/HOSTNAME=.*/HOSTNAME=puppet-master.domain.com/'
/etc/sysconfig/network

But when checking it. I got following output

$ hostnamepuppet-master.domain.com
$ hostname --long
puppet-master.domain.com.novalocal

$ hostname -A
localhost

If I add the ip-domain mapping to the /etc/hosts file, it became right.

$ echo 10.0.0.10 puppet-master.domain.com puppet-master  /etc/hosts
$ hostnamepuppet-master.domain.com
$ hostname --longpuppet-master.domain.com

$ hostname -Apuppet-master.domain.com

I want to know why the hosts contents affect the hostname command
-- 
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] starting quantum services causes host machine reboot(Sorry for my last email)

2012-12-03 Thread 唐宏伟
When the host machine crashes andreboots, the Linux kernel prints the following infomation:
_
gb04 login: skb_over_panic: text:a022df45 len:398 put:342 head:88011BUG: scheduling while atomic: swapper/0/0x1100 Modules l[Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 186 is 53)APEI: Can not request iomem region bf7b5d8a-bf7b5d8c for GARs. 

_



--Original--

From: "唐宏伟"31438...@qq.com;
Date: Sun, Dec 2, 2012 10:22 AM
To: "openstack"openstack@lists.launchpad.net; 

Subject: [Openstack] starting quantum services causes host machine reboot(Sorry for my last email)
Hi All, I installed a single-node openstack from folsom source code. When I start quantum services(quantum-server, quantum-openvswitch-agent and quantum-dhcp-agent) one by one, the host machine reboot itself. My starting script is as follow:quantum_start.sh__quantum-server --config-file=/etc/quantum/quantum.conf --config-file=/etc/quantum/quantum/plugins/openvswitch/ovs_quantum_plugin.ini --log-dir=/var/log/quantum --log-file=quantum-server.log quantum-openvswitch-agent --config-file=/etc/quantum/quantum.conf --config-file=/etc/quantum/quantum/plugins/openvswitch/ovs_quantum_plugin.ini --log-dir=/var/log/quantum --log-file=quantum-openvswitch-agent.log quantum-dhcp-agent --config-file=/etc/quantum/quantum.conf --config-file=/etc/quantum/dhcp_agent.ini --log-dir=/var/log/quantum --log-file=quantum-dhcp-agent.log  I split the starting script into two script, and execute the second script several minites after the first one, then the host machine does not reboot itself any more. The two scripts are as follows:first.sh__quantum-server --config-file=/etc/quantum/quantum.conf --config-file=/etc/quantum/quantum/plugins/openvswitch/ovs_quantum_plugin.ini --log-dir=/var/log/quantum --log-file=quantum-server.log second.sh__quantum-openvswitch-agent --config-file=/etc/quantum/quantum.conf --config-file=/etc/quantum/quantum/plugins/openvswitch/ovs_quantum_plugin.ini --log-dir=/var/log/quantum --log-file=quantum-openvswitch-agent.log quantum-dhcp-agent --config-file=/etc/quantum/quantum.conf --config-file=/etc/quantum/dhcp_agent.ini --log-dir=/var/log/quantum --log-file=quantum-dhcp-agent.log   Does anyone encounter the same case as mine? Why I can't start quantum-server, quantum-openvswitch-agent and quantum-openvswitch-agent one by one continuously?Hongwei Tang___Mailing list: https://launchpad.net/~openstackPost to : openstack@lists.launchpad.netUnsubscribe : https://launchpad.net/~openstackMore 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] starting quantum services causes host machine reboot(Sorry for my last email)

2012-12-03 Thread ??????
When the host machine crashes and reboots, the Linux kernel prints the 
following infomation:
_
gb04 login: skb_over_panic: text:a022df45 len:398 put:342 head:88011
BUG: scheduling while atomic: swapper/0/0x1100 
Modules l[Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 186 is 53)
APEI: Can not request iomem region bf7b5d8a-bf7b5d8c for 
GARs. 
_




-- Original --
From:  ??31438...@qq.com;
Date:  Sun, Dec 2, 2012 10:22 AM
To:  openstackopenstack@lists.launchpad.net; 
Subject:  [Openstack] starting quantum services causes host machine 
reboot(Sorry for my last email)


Hi All,

I installed a single-node openstack from folsom source code. When I start 
quantum services(quantum-server, quantum-openvswitch-agent and 
quantum-dhcp-agent) one by one, the host machine reboot itself. My starting 
script is as follow:

quantum_start.sh__
quantum-server --config-file=/etc/quantum/quantum.conf 
--config-file=/etc/quantum/quantum/plugins/openvswitch/ovs_quantum_plugin.ini 
--log-dir=/var/log/quantum --log-file=quantum-server.log 
quantum-openvswitch-agent --config-file=/etc/quantum/quantum.conf 
--config-file=/etc/quantum/quantum/plugins/openvswitch/ovs_quantum_plugin.ini 
--log-dir=/var/log/quantum --log-file=quantum-openvswitch-agent.log 
quantum-dhcp-agent --config-file=/etc/quantum/quantum.conf 
--config-file=/etc/quantum/dhcp_agent.ini --log-dir=/var/log/quantum 
--log-file=quantum-dhcp-agent.log 


I split the starting script into two script, and execute the second script 
several minites after the first one, then the host machine does not reboot 
itself any more. The two scripts are as follows:
first.sh__
quantum-server --config-file=/etc/quantum/quantum.conf 
--config-file=/etc/quantum/quantum/plugins/openvswitch/ovs_quantum_plugin.ini 
--log-dir=/var/log/quantum --log-file=quantum-server.log 


second.sh__
quantum-openvswitch-agent --config-file=/etc/quantum/quantum.conf 
--config-file=/etc/quantum/quantum/plugins/openvswitch/ovs_quantum_plugin.ini 
--log-dir=/var/log/quantum --log-file=quantum-openvswitch-agent.log 
quantum-dhcp-agent --config-file=/etc/quantum/quantum.conf 
--config-file=/etc/quantum/dhcp_agent.ini --log-dir=/var/log/quantum 
--log-file=quantum-dhcp-agent.log  


Does anyone encounter the same case as mine? Why I can't start 
quantum-server, quantum-openvswitch-agent and quantum-openvswitch-agent one by 
one continuously?


Hongwei Tang
___
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-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_quantum_trunk #97

2012-12-03 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/97/Project:precise_grizzly_quantum_trunkDate of build:Mon, 03 Dec 2012 04:01:23 -0500Build duration:1 min 34 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFixes import order nitsby zhongyue.naheditquantum/plugins/cisco/tests/unit/v2/test_api_v2.pyeditquantum/common/rpc.pyConsole Output[...truncated 2694 lines...]Applying patch fix-quantum-configuration.patchpatching file etc/dhcp_agent.iniHunk #1 FAILED at 5.Hunk #2 succeeded at 32 (offset -1 lines).1 out of 2 hunks FAILED -- rejects in file etc/dhcp_agent.inipatching file etc/l3_agent.inipatching file etc/quantum/plugins/linuxbridge/linuxbridge_conf.inipatching file etc/quantum.confPatch 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-926e20ee-ea51-4dad-ab4f-1e74d1533b8c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-926e20ee-ea51-4dad-ab4f-1e74d1533b8c', '-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/tmpgaoc3Z/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpgaoc3Z/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d0a284de2ff272ae65a62bc2722c0274ff1be7d2..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201212030401~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [d06b511] Fixes import order nitsdch -a [dc107a5] update state_path default to be the same valuedch -a [87e9b62] Use /usr/bin/ for the metadata proxy in l3.filtersdch -a [681d7d3] prevent deletion of router interface if it is needed by a floating ipdch -a [58cb6ce] Completes coverage of quantum.agent.linux.utilsdch -a [ac81d9d] Fixes Rpc related exception in NVP plugindch -a [0c3dd5a] add metadata proxy support for Quantum Networksdebcommitbzr 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-926e20ee-ea51-4dad-ab4f-1e74d1533b8c', '-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-926e20ee-ea51-4dad-ab4f-1e74d1533b8c', '-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 Still Failing: raring_grizzly_quantum_trunk #98

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/98/Project:raring_grizzly_quantum_trunkDate of build:Mon, 03 Dec 2012 04:01:24 -0500Build duration:2 min 17 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFixes import order nitsby zhongyue.naheditquantum/common/rpc.pyeditquantum/plugins/cisco/tests/unit/v2/test_api_v2.pyConsole Output[...truncated 3154 lines...]Applying patch fix-quantum-configuration.patchpatching file etc/dhcp_agent.iniHunk #1 FAILED at 5.Hunk #2 succeeded at 32 (offset -1 lines).1 out of 2 hunks FAILED -- rejects in file etc/dhcp_agent.inipatching file etc/l3_agent.inipatching file etc/quantum/plugins/linuxbridge/linuxbridge_conf.inipatching file etc/quantum.confPatch 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-dc1fe258-0332-4344-a9e6-1c1abdbc59e0', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-dc1fe258-0332-4344-a9e6-1c1abdbc59e0', '-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/tmpRmmcLV/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpRmmcLV/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d0a284de2ff272ae65a62bc2722c0274ff1be7d2..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201212030401~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [d06b511] Fixes import order nitsdch -a [dc107a5] update state_path default to be the same valuedch -a [87e9b62] Use /usr/bin/ for the metadata proxy in l3.filtersdch -a [681d7d3] prevent deletion of router interface if it is needed by a floating ipdch -a [58cb6ce] Completes coverage of quantum.agent.linux.utilsdch -a [ac81d9d] Fixes Rpc related exception in NVP plugindch -a [0c3dd5a] add metadata proxy support for Quantum Networksdebcommitbzr 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-dc1fe258-0332-4344-a9e6-1c1abdbc59e0', '-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-dc1fe258-0332-4344-a9e6-1c1abdbc59e0', '-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 Still Failing: raring_grizzly_quantum_trunk #99

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/99/Project:raring_grizzly_quantum_trunkDate of build:Mon, 03 Dec 2012 05:01:23 -0500Build duration:3 min 1 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRemoves unused code in quantum.commonby zhongyue.naheditquantum/common/utils.pyConsole Output[...truncated 3157 lines...]patching file etc/dhcp_agent.iniHunk #1 FAILED at 5.Hunk #2 succeeded at 32 (offset -1 lines).1 out of 2 hunks FAILED -- rejects in file etc/dhcp_agent.inipatching file etc/l3_agent.inipatching file etc/quantum/plugins/linuxbridge/linuxbridge_conf.inipatching file etc/quantum.confPatch 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-a44c6e1e-cb49-497f-8f26-72eac257bcc7', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-a44c6e1e-cb49-497f-8f26-72eac257bcc7', '-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/tmpNwoUI4/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpNwoUI4/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d0a284de2ff272ae65a62bc2722c0274ff1be7d2..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201212030501~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [e4ee84f] Removes unused code in quantum.commondch -a [d06b511] Fixes import order nitsdch -a [dc107a5] update state_path default to be the same valuedch -a [87e9b62] Use /usr/bin/ for the metadata proxy in l3.filtersdch -a [681d7d3] prevent deletion of router interface if it is needed by a floating ipdch -a [58cb6ce] Completes coverage of quantum.agent.linux.utilsdch -a [ac81d9d] Fixes Rpc related exception in NVP plugindch -a [0c3dd5a] add metadata proxy support for Quantum Networksdebcommitbzr 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-a44c6e1e-cb49-497f-8f26-72eac257bcc7', '-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-a44c6e1e-cb49-497f-8f26-72eac257bcc7', '-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_keystone_trunk #46

2012-12-03 Thread openstack-testing-bot
Title: precise_grizzly_keystone_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_keystone_trunk/46/Project:precise_grizzly_keystone_trunkDate of build:Mon, 03 Dec 2012 05:01:23 -0500Build duration:4 min 56 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 2 builds failed.50Changescheck the redirected path on the request, not the responseby iartarisiedittests/test_s3_token_middleware.pyConsole Output[...truncated 21195 lines...]gpg: Signature made Mon Dec  3 05:03:14 2012 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "gpg: Signature made Mon Dec  3 05:03:14 2012 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmp6w7S4j/keystone_2013.1+git201212030501~precise-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmp6w7S4j/keystone_2013.1+git201212030501~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading keystone_2013.1+git201212030501~precise-0ubuntu1.dsc: done.  Uploading keystone_2013.1+git201212030501~precise.orig.tar.gz: done.  Uploading keystone_2013.1+git201212030501~precise-0ubuntu1.debian.tar.gz: done.  Uploading keystone_2013.1+git201212030501~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', 'keystone_2013.1+git201212030501~precise-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/k/keystone/keystone-doc_2013.1+git201211291402~precise-0ubuntu1_all.debdeleting and forgetting pool/main/k/keystone/keystone_2013.1+git201211291402~precise-0ubuntu1_all.debdeleting and forgetting pool/main/k/keystone/python-keystone_2013.1+git201211291402~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/keystone/precise-grizzly']Pushed up to revision 165.INFO:root:Storing current commit for next build: af8761d9e0add62a83604b77ab015f5a8b3120a9INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/keystone/grizzly /tmp/tmp6w7S4j/keystonemk-build-deps -i -r -t apt-get -y /tmp/tmp6w7S4j/keystone/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log f57098df8e50fae95c2c532407ec5bc6a10205e1..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/keystone/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201212030501~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [af8761d] check the redirected path on the request, not the responsedch -a [5b73757] Validate password type (bug 1081861)debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC keystone_2013.1+git201212030501~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A keystone_2013.1+git201212030501~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing keystone_2013.1+git201212030501~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-grizzly keystone_2013.1+git201212030501~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/keystone/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: 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: raring_grizzly_keystone_trunk #49

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_keystone_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_keystone_trunk/49/Project:raring_grizzly_keystone_trunkDate of build:Mon, 03 Dec 2012 05:02:29 -0500Build duration:6 min 18 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 3 builds failed.33Changescheck the redirected path on the request, not the responseby iartarisiedittests/test_s3_token_middleware.pyConsole Output[...truncated 22453 lines...]gpg: Signature made Mon Dec  3 05:05:41 2012 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "gpg: Signature made Mon Dec  3 05:05:41 2012 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmptWRsou/keystone_2013.1+git201212030502~raring-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmptWRsou/keystone_2013.1+git201212030502~raring-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading keystone_2013.1+git201212030502~raring-0ubuntu1.dsc: done.  Uploading keystone_2013.1+git201212030502~raring.orig.tar.gz: done.  Uploading keystone_2013.1+git201212030502~raring-0ubuntu1.debian.tar.gz: done.  Uploading keystone_2013.1+git201212030502~raring-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', 'raring-grizzly', 'keystone_2013.1+git201212030502~raring-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/k/keystone/keystone-doc_2013.1+git201211291401~raring-0ubuntu1_all.debdeleting and forgetting pool/main/k/keystone/keystone_2013.1+git201211291401~raring-0ubuntu1_all.debdeleting and forgetting pool/main/k/keystone/python-keystone_2013.1+git201211291401~raring-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/keystone/raring-grizzly']Pushed up to revision 165.INFO:root:Storing current commit for next build: af8761d9e0add62a83604b77ab015f5a8b3120a9INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/keystone/grizzly /tmp/tmptWRsou/keystonemk-build-deps -i -r -t apt-get -y /tmp/tmptWRsou/keystone/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log f57098df8e50fae95c2c532407ec5bc6a10205e1..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/keystone/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201212030502~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [af8761d] check the redirected path on the request, not the responsedch -a [5b73757] Validate password type (bug 1081861)debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC keystone_2013.1+git201212030502~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A keystone_2013.1+git201212030502~raring-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing keystone_2013.1+git201212030502~raring-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include raring-grizzly keystone_2013.1+git201212030502~raring-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/keystone/raring-grizzlyEmail 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 Fixed: precise_grizzly_ceilometer_trunk #10

2012-12-03 Thread openstack-testing-bot
Title: precise_grizzly_ceilometer_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_ceilometer_trunk/10/Project:precise_grizzly_ceilometer_trunkDate of build:Mon, 03 Dec 2012 07:01:23 -0500Build duration:3 min 6 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesImplement /meters to make discovery nicer from the clientby asalkeldeditceilometer/api/v1.pyeditceilometer/storage/impl_log.pyeditceilometer/storage/impl_sqlalchemy.pyeditceilometer/storage/impl_mongodb.pyaddtests/api/v1/test_list_meters.pyeditceilometer/storage/base.pyedittests/storage/test_impl_sqlalchemy.pyeditdoc/source/measurements.rstedittests/storage/test_impl_mongodb.pyConsole Output[...truncated 3612 lines...]Checking signature on .changesGood signature on /tmp/tmpCza4C8/ceilometer_2013.1+git201212030701~precise-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpCza4C8/ceilometer_2013.1+git201212030701~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading ceilometer_2013.1+git201212030701~precise-0ubuntu1.dsc: done.  Uploading ceilometer_2013.1+git201212030701~precise.orig.tar.gz: done.  Uploading ceilometer_2013.1+git201212030701~precise-0ubuntu1.debian.tar.gz: done.  Uploading ceilometer_2013.1+git201212030701~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', 'ceilometer_2013.1+git201212030701~precise-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/c/ceilometer/ceilometer-agent-central_2013.1+git201211300931~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-agent-compute_2013.1+git201211300931~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-api_2013.1+git201211300931~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-collector_2013.1+git201211300931~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-common_2013.1+git201211300931~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/python-ceilometer_2013.1+git201211300931~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/ceilometer/precise-grizzly']Pushed up to revision 2.INFO:root:Storing current commit for next build: b67d2c2dfb61dc116e6245d62bd454a972bbb51dINFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmpCza4C8/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmpCza4C8/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 6e38fbfa3fc2b721cfbd65b7c979764fdc097ff2..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201212030701~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [b67d2c2] Implement /meters to make discovery "nicer" from the clientdch -a [36eccfb] Fix sqlalchemy for show_data and v1 web apidch -a [ea8343b] Make Impl of mongodb and sqlalchemy consistentdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201212030701~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A ceilometer_2013.1+git201212030701~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing ceilometer_2013.1+git201212030701~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-grizzly ceilometer_2013.1+git201212030701~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/ceilometer/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: 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: raring_grizzly_ceilometer_trunk #10

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_ceilometer_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_ceilometer_trunk/10/Project:raring_grizzly_ceilometer_trunkDate of build:Mon, 03 Dec 2012 07:01:23 -0500Build duration:4 min 49 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesImplement /meters to make discovery nicer from the clientby asalkeldeditceilometer/storage/impl_mongodb.pyeditdoc/source/measurements.rsteditceilometer/storage/impl_sqlalchemy.pyeditceilometer/storage/base.pyedittests/storage/test_impl_mongodb.pyaddtests/api/v1/test_list_meters.pyeditceilometer/storage/impl_log.pyedittests/storage/test_impl_sqlalchemy.pyeditceilometer/api/v1.pyConsole Output[...truncated 4714 lines...]Checking signature on .changesGood signature on /tmp/tmp_5FbbO/ceilometer_2013.1+git201212030701~raring-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmp_5FbbO/ceilometer_2013.1+git201212030701~raring-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading ceilometer_2013.1+git201212030701~raring-0ubuntu1.dsc: done.  Uploading ceilometer_2013.1+git201212030701~raring.orig.tar.gz: done.  Uploading ceilometer_2013.1+git201212030701~raring-0ubuntu1.debian.tar.gz: done.  Uploading ceilometer_2013.1+git201212030701~raring-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', 'raring-grizzly', 'ceilometer_2013.1+git201212030701~raring-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/c/ceilometer/ceilometer-agent-central_2013.1+git201211300901~raring-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-agent-compute_2013.1+git201211300901~raring-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-api_2013.1+git201211300901~raring-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-collector_2013.1+git201211300901~raring-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/ceilometer-common_2013.1+git201211300901~raring-0ubuntu1_all.debdeleting and forgetting pool/main/c/ceilometer/python-ceilometer_2013.1+git201211300901~raring-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/ceilometer/raring-grizzly']Pushed up to revision 2.INFO:root:Storing current commit for next build: b67d2c2dfb61dc116e6245d62bd454a972bbb51dINFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/ceilometer/grizzly /tmp/tmp_5FbbO/ceilometermk-build-deps -i -r -t apt-get -y /tmp/tmp_5FbbO/ceilometer/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 6e38fbfa3fc2b721cfbd65b7c979764fdc097ff2..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/ceilometer/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201212030701~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [b67d2c2] Implement /meters to make discovery "nicer" from the clientdch -a [36eccfb] Fix sqlalchemy for show_data and v1 web apidch -a [ea8343b] Make Impl of mongodb and sqlalchemy consistentdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC ceilometer_2013.1+git201212030701~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A ceilometer_2013.1+git201212030701~raring-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing ceilometer_2013.1+git201212030701~raring-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include raring-grizzly ceilometer_2013.1+git201212030701~raring-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/ceilometer/raring-grizzlyEmail 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 Fixed: raring_grizzly_python-glanceclient_trunk #18

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_python-glanceclient_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_python-glanceclient_trunk/18/Project:raring_grizzly_python-glanceclient_trunkDate of build:Mon, 03 Dec 2012 08:46:45 -0500Build duration:3 min 28 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesNo ChangesConsole Output[...truncated 3083 lines...]gpg: Signature made Mon Dec  3 08:48:35 2012 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "gpg: Signature made Mon Dec  3 08:48:34 2012 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmpFkvT03/python-glanceclient_0.6.0.11.g7be3395+git201212030846~raring-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpFkvT03/python-glanceclient_0.6.0.11.g7be3395+git201212030846~raring-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading python-glanceclient_0.6.0.11.g7be3395+git201212030846~raring-0ubuntu1.dsc: done.  Uploading python-glanceclient_0.6.0.11.g7be3395+git201212030846~raring.orig.tar.gz: done.  Uploading python-glanceclient_0.6.0.11.g7be3395+git201212030846~raring-0ubuntu1.debian.tar.gz: done.  Uploading python-glanceclient_0.6.0.11.g7be3395+git201212030846~raring-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', 'raring-grizzly', 'python-glanceclient_0.6.0.11.g7be3395+git201212030846~raring-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/p/python-glanceclient/python-glanceclient_0.6.0.7.g09c8216+git201211291352~raring-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/python-glanceclient/raring-grizzly']Pushed up to revision 30.INFO:root:Storing current commit for next build: 4fa68052423c475d25cdb45610f4827aed13d509INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-glanceclient/grizzly /tmp/tmpFkvT03/python-glanceclientmk-build-deps -i -r -t apt-get -y /tmp/tmpFkvT03/python-glanceclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log c0ec97f310bc56c69c22e49928b4aea4cd8458f1..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/python-glanceclient/raring-grizzly --forcedch -b -D raring --newversion 1:0.6.0.11.g7be3395+git201212030846~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [4fa6805] Change default image sort to use namedch -a [4da8b28] Add --sort-key and --sort-dir to image-listdch -a [c2ba627] Allow setting x-image-meta-store through shell on image creationdch -a [7a5946f] Verify that host matches certificatedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-glanceclient_0.6.0.11.g7be3395+git201212030846~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A python-glanceclient_0.6.0.11.g7be3395+git201212030846~raring-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing python-glanceclient_0.6.0.11.g7be3395+git201212030846~raring-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include raring-grizzly python-glanceclient_0.6.0.11.g7be3395+git201212030846~raring-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/python-glanceclient/raring-grizzlyEmail 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: raring_grizzly_nova_trunk #222

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/222/Project:raring_grizzly_nova_trunkDate of build:Mon, 03 Dec 2012 09:00:21 -0500Build duration:5 min 27 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 6569 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', 'nova_2013.1+git201212030900~raring-0ubuntu1.dsc']' returned non-zero exit status 3ERROR:root:Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'nova_2013.1+git201212030900~raring-0ubuntu1.dsc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/grizzly /tmp/tmpkTc8Ys/novamk-build-deps -i -r -t apt-get -y /tmp/tmpkTc8Ys/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 03ae11664d6d42b02ea2996d0125bcdee87db754..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201212030900~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [29cac1f] Patch fake_libvirt_utils with fixtures.MonkeyPatchdch -a [b178e44] Open test xenapi/vm_rrd.xml relative to tests.dch -a [c658a6f] Reset notifier_api before each test.dch -a [529c89c] Reset volume_api before cinder cloud tests.dch -a [4be71ff] Fix rpc control_exchange regression.dch -a [4363a9a] add metadata support for overlapping networksdch -a [32b1027] Split out part of compute's init_host.dch -a [e74c4da] Use elevated cxtx in resource_tracker.resize_claimdch -a [ce79e4c] Fix test_migrations for postgresdch -a [0bf27df] Add vpn ip/port setting support for CloudPipedch -a [48f43fd] Enable debug in run_tests using pdbdch -a [924084b] Add POWERVM_STARTING state to powervm driverdch -a [16cb60c] use libvirt getInfo() to receive number of physical CPUsdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.1+git201212030900~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A nova_2013.1+git201212030900~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', 'nova_2013.1+git201212030900~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', 'nova_2013.1+git201212030900~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 Fixed: raring_grizzly_python-swiftclient_trunk #9

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_python-swiftclient_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_python-swiftclient_trunk/9/Project:raring_grizzly_python-swiftclient_trunkDate of build:Mon, 03 Dec 2012 09:14:17 -0500Build duration:2 min 56 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 2 builds failed.50ChangesNo ChangesConsole Output[...truncated 2555 lines...]Finished at 20121203-0917Build needed 00:01:16, 1032k disc spaceINFO:root:Uploading package to ppa:openstack-ubuntu-testing/grizzly-trunk-testingDEBUG:root:['dput', 'ppa:openstack-ubuntu-testing/grizzly-trunk-testing', 'python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring-0ubuntu1_source.changes']gpg: Signature made Mon Dec  3 09:15:49 2012 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) <ja...@shingle-house.org.uk>"gpg: Signature made Mon Dec  3 09:15:49 2012 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) <ja...@shingle-house.org.uk>"Checking signature on .changesGood signature on /tmp/tmphuJHgH/python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmphuJHgH/python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring-0ubuntu1.dsc: done.  Uploading python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring.orig.tar.gz: done.  Uploading python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring-0ubuntu1.debian.tar.gz: done.  Uploading python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring-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', 'raring-grizzly', 'python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/p/python-swiftclient/python-swiftclient_1.2.0.18.g402d87c+git201211271801~raring-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/python-swiftclient/raring-grizzly']Pushed up to revision 24.INFO:root:Storing current commit for next build: 402d87c75781bc56fb915e3bb0ed40f71c0364f2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-swiftclient/grizzly /tmp/tmphuJHgH/python-swiftclientmk-build-deps -i -r -t apt-get -y /tmp/tmphuJHgH/python-swiftclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hbzr merge lp:~openstack-ubuntu-testing/python-swiftclient/raring-grizzly --forcedch -b -D raring --newversion 1:1.2.0.18.g402d87c+git201212030914~raring-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include raring-grizzly python-swiftclient_1.2.0.18.g402d87c+git201212030914~raring-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/python-swiftclient/raring-grizzlyEmail 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 Fixed: raring_grizzly_swift_trunk #44

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_swift_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_swift_trunk/44/Project:raring_grizzly_swift_trunkDate of build:Mon, 03 Dec 2012 09:17:46 -0500Build duration:4 min 14 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesNo ChangesConsole Output[...truncated 4795 lines...]Checking signature on .dscGood signature on /tmp/tmpuDL_1t/swift_1.7.6+git201212030917~raring-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading swift_1.7.6+git201212030917~raring-0ubuntu1.dsc: done.  Uploading swift_1.7.6+git201212030917~raring.orig.tar.gz: done.  Uploading swift_1.7.6+git201212030917~raring-0ubuntu1.debian.tar.gz: done.  Uploading swift_1.7.6+git201212030917~raring-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', 'raring-grizzly', 'swift_1.7.6+git201212030917~raring-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/s/swift/python-swift_1.7.6+git201211291601~raring-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift-account_1.7.6+git201211291601~raring-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift-container_1.7.6+git201211291601~raring-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift-doc_1.7.6+git201211291601~raring-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift-object_1.7.6+git201211291601~raring-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift-proxy_1.7.6+git201211291601~raring-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift_1.7.6+git201211291601~raring-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/swift/raring-grizzly']Pushed up to revision 137.INFO:root:Storing current commit for next build: 6743e4d57f2da87e947e171d884e4dcabf56a201INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/swift/grizzly /tmp/tmpuDL_1t/swiftmk-build-deps -i -r -t apt-get -y /tmp/tmpuDL_1t/swift/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log abcd87239486c64d8cdfccd00b95b3284c58470c..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/swift/raring-grizzly --forcedch -b -D raring --newversion 1.7.6+git201212030917~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [6743e4d] Swob bugfixes; for ? in names specificallydch -a [4063123] Fix bug with swob.Request.path_info_popdch -a [89a871d] Improve container-sync docs.dch -a [923b8b9] Fix for container sync not syncing last rowiddebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC swift_1.7.6+git201212030917~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A swift_1.7.6+git201212030917~raring-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing swift_1.7.6+git201212030917~raring-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include raring-grizzly swift_1.7.6+git201212030917~raring-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/swift/raring-grizzlyEmail 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 Fixed: raring_grizzly_nova_trunk #223

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/223/Project:raring_grizzly_nova_trunkDate of build:Mon, 03 Dec 2012 09:07:02 -0500Build duration:16 minBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesNo ChangesConsole Output[...truncated 35035 lines...]deleting and forgetting pool/main/n/nova/nova-doc_2013.1+git201211301103~raring-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-network_2013.1+git201211301103~raring-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-novncproxy_2013.1+git201211301103~raring-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-objectstore_2013.1+git201211301103~raring-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-scheduler_2013.1+git201211301103~raring-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-volume_2013.1+git201211301103~raring-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-network_2013.1+git201211301103~raring-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-plugins_2013.1+git201211301103~raring-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xvpvncproxy_2013.1+git201211301103~raring-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/python-nova_2013.1+git201211301103~raring-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/nova/raring-grizzly']Pushed up to revision 505.INFO:root:Storing current commit for next build: 29cac1f08cec5eb1ed00cb0b62ec9b75a78038beINFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/grizzly /tmp/tmpsJnzaX/novamk-build-deps -i -r -t apt-get -y /tmp/tmpsJnzaX/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 03ae11664d6d42b02ea2996d0125bcdee87db754..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201212030907~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [29cac1f] Patch fake_libvirt_utils with fixtures.MonkeyPatchdch -a [b178e44] Open test xenapi/vm_rrd.xml relative to tests.dch -a [c658a6f] Reset notifier_api before each test.dch -a [529c89c] Reset volume_api before cinder cloud tests.dch -a [4be71ff] Fix rpc control_exchange regression.dch -a [4363a9a] add metadata support for overlapping networksdch -a [32b1027] Split out part of compute's init_host.dch -a [e74c4da] Use elevated cxtx in resource_tracker.resize_claimdch -a [ce79e4c] Fix test_migrations for postgresdch -a [0bf27df] Add vpn ip/port setting support for CloudPipedch -a [48f43fd] Enable debug in run_tests using pdbdch -a [924084b] Add POWERVM_STARTING state to powervm driverdch -a [16cb60c] use libvirt getInfo() to receive number of physical CPUsdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.1+git201212030907~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A nova_2013.1+git201212030907~raring-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing nova_2013.1+git201212030907~raring-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include raring-grizzly nova_2013.1+git201212030907~raring-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/nova/raring-grizzly+ [ ! 0 ]+ jenkins-cli build raring_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 Fixed: precise_grizzly_cinder_trunk #57

2012-12-03 Thread openstack-testing-bot
Title: precise_grizzly_cinder_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_cinder_trunk/57/Project:precise_grizzly_cinder_trunkDate of build:Mon, 03 Dec 2012 09:36:34 -0500Build duration:3 min 16 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 4 builds failed.25ChangesNo ChangesConsole Output[...truncated 6217 lines...]Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading cinder_2013.1+git201212030936~precise-0ubuntu1.dsc: done.  Uploading cinder_2013.1+git201212030936~precise.orig.tar.gz: done.  Uploading cinder_2013.1+git201212030936~precise-0ubuntu1.debian.tar.gz: done.  Uploading cinder_2013.1+git201212030936~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', 'cinder_2013.1+git201212030936~precise-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/c/cinder/cinder-api_2013.1+git201211300353~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-common_2013.1+git201211300353~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-scheduler_2013.1+git201211300353~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-volume_2013.1+git201211300353~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/python-cinder_2013.1+git201211300353~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/cinder/precise-grizzly']Pushed up to revision 67.INFO:root:Storing current commit for next build: 503e92332db78a2469fcc853a2be1c5dee9c8da4INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/cinder/grizzly /tmp/tmpoMybqm/cindermk-build-deps -i -r -t apt-get -y /tmp/tmpoMybqm/cinder/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d030c5b10e9e8d73d967562259e7db6146347108..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/cinder/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201212030936~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [503e923] Fix exception when size is None.dch -a [31629f6] Ensure request_spec can be serialized.dch -a [e27b171] attaching volumes will set instance_uuid instantlydch -a [44a2b89] Revert changes to monkey_patch.dch -a [2bdc7a7] Fix import order to make it alphabetical.dch -a [de289a6] Use auth_token middleware from keystoneclient.dch -a [e78667d] Provide i18n to those messages without _()dch -a [70e4f2c] Unpin lxml requirementsdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC cinder_2013.1+git201212030936~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A cinder_2013.1+git201212030936~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing cinder_2013.1+git201212030936~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-grizzly cinder_2013.1+git201212030936~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/cinder/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: 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 #100

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/100/Project:raring_grizzly_quantum_trunkDate of build:Mon, 03 Dec 2012 09:49:54 -0500Build duration:2 min 30 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 3157 lines...]patching file etc/dhcp_agent.iniHunk #1 FAILED at 5.Hunk #2 succeeded at 32 (offset -1 lines).1 out of 2 hunks FAILED -- rejects in file etc/dhcp_agent.inipatching file etc/l3_agent.inipatching file etc/quantum/plugins/linuxbridge/linuxbridge_conf.inipatching file etc/quantum.confPatch 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-13c6b417-7135-4054-815f-e3257152aa87', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-13c6b417-7135-4054-815f-e3257152aa87', '-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/tmp2wKwQ5/quantummk-build-deps -i -r -t apt-get -y /tmp/tmp2wKwQ5/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d0a284de2ff272ae65a62bc2722c0274ff1be7d2..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201212030949~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [e4ee84f] Removes unused code in quantum.commondch -a [d06b511] Fixes import order nitsdch -a [dc107a5] update state_path default to be the same valuedch -a [87e9b62] Use /usr/bin/ for the metadata proxy in l3.filtersdch -a [681d7d3] prevent deletion of router interface if it is needed by a floating ipdch -a [58cb6ce] Completes coverage of quantum.agent.linux.utilsdch -a [ac81d9d] Fixes Rpc related exception in NVP plugindch -a [0c3dd5a] add metadata proxy support for Quantum Networksdebcommitbzr 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-13c6b417-7135-4054-815f-e3257152aa87', '-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-13c6b417-7135-4054-815f-e3257152aa87', '-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 Still Failing: precise_grizzly_glance_trunk #48

2012-12-03 Thread openstack-testing-bot
Title: precise_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_glance_trunk/48/Project:precise_grizzly_glance_trunkDate of build:Mon, 03 Dec 2012 09:48:56 -0500Build duration:7 min 22 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 8101 lines...]Distribution: precise-grizzlyFail-Stage: buildHost Architecture: amd64Install-Time: 42Job: glance_2013.1+git201212030949~precise-0ubuntu1.dscMachine Architecture: amd64Package: glancePackage-Time: 373Source-Version: 2013.1+git201212030949~precise-0ubuntu1Space: 16832Status: attemptedVersion: 2013.1+git201212030949~precise-0ubuntu1Finished at 20121203-0956Build needed 00:06:13, 16832k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'glance_2013.1+git201212030949~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'glance_2013.1+git201212030949~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/glance/grizzly /tmp/tmpQm4ieg/glancemk-build-deps -i -r -t apt-get -y /tmp/tmpQm4ieg/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hbzr merge lp:~openstack-ubuntu-testing/glance/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201212030949~precise-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC glance_2013.1+git201212030949~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A glance_2013.1+git201212030949~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', 'glance_2013.1+git201212030949~precise-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', 'precise-grizzly', '-n', '-A', 'glance_2013.1+git201212030949~precise-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 Fixed: precise_grizzly_nova_trunk #221

2012-12-03 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/221/Project:precise_grizzly_nova_trunkDate of build:Mon, 03 Dec 2012 09:59:03 -0500Build duration:6 min 39 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesNo ChangesConsole Output[...truncated 23320 lines...]deleting and forgetting pool/main/n/nova/nova-doc_2013.1+git201211300731~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-network_2013.1+git201211300731~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-novncproxy_2013.1+git201211300731~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-objectstore_2013.1+git201211300731~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-scheduler_2013.1+git201211300731~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-volume_2013.1+git201211300731~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-network_2013.1+git201211300731~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-plugins_2013.1+git201211300731~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xvpvncproxy_2013.1+git201211300731~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/python-nova_2013.1+git201211300731~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/nova/precise-grizzly']Pushed up to revision 505.INFO:root:Storing current commit for next build: 29cac1f08cec5eb1ed00cb0b62ec9b75a78038beINFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/grizzly /tmp/tmpHThT5u/novamk-build-deps -i -r -t apt-get -y /tmp/tmpHThT5u/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 03ae11664d6d42b02ea2996d0125bcdee87db754..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201212030959~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [29cac1f] Patch fake_libvirt_utils with fixtures.MonkeyPatchdch -a [b178e44] Open test xenapi/vm_rrd.xml relative to tests.dch -a [c658a6f] Reset notifier_api before each test.dch -a [529c89c] Reset volume_api before cinder cloud tests.dch -a [4be71ff] Fix rpc control_exchange regression.dch -a [4363a9a] add metadata support for overlapping networksdch -a [32b1027] Split out part of compute's init_host.dch -a [e74c4da] Use elevated cxtx in resource_tracker.resize_claimdch -a [ce79e4c] Fix test_migrations for postgresdch -a [0bf27df] Add vpn ip/port setting support for CloudPipedch -a [48f43fd] Enable debug in run_tests using pdbdch -a [924084b] Add POWERVM_STARTING state to powervm driverdch -a [16cb60c] use libvirt getInfo() to receive number of physical CPUsdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.1+git201212030959~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A nova_2013.1+git201212030959~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing nova_2013.1+git201212030959~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-grizzly nova_2013.1+git201212030959~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 Fixed: precise_grizzly_python-glanceclient_trunk #20

2012-12-03 Thread openstack-testing-bot
Title: precise_grizzly_python-glanceclient_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_python-glanceclient_trunk/20/Project:precise_grizzly_python-glanceclient_trunkDate of build:Mon, 03 Dec 2012 10:06:05 -0500Build duration:2 min 6 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesNo ChangesConsole Output[...truncated 2168 lines...]gpg: Signature made Mon Dec  3 10:07:06 2012 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "gpg: Signature made Mon Dec  3 10:07:06 2012 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmpS0gD0x/python-glanceclient_0.6.0.11.g7be3395+git201212031006~precise-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpS0gD0x/python-glanceclient_0.6.0.11.g7be3395+git201212031006~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading python-glanceclient_0.6.0.11.g7be3395+git201212031006~precise-0ubuntu1.dsc: done.  Uploading python-glanceclient_0.6.0.11.g7be3395+git201212031006~precise.orig.tar.gz: done.  Uploading python-glanceclient_0.6.0.11.g7be3395+git201212031006~precise-0ubuntu1.debian.tar.gz: done.  Uploading python-glanceclient_0.6.0.11.g7be3395+git201212031006~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', 'python-glanceclient_0.6.0.11.g7be3395+git201212031006~precise-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/p/python-glanceclient/python-glanceclient_0.6.0.7.g09c8216+git201211300353~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/python-glanceclient/precise-grizzly']Pushed up to revision 30.INFO:root:Storing current commit for next build: 4fa68052423c475d25cdb45610f4827aed13d509INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-glanceclient/grizzly /tmp/tmpS0gD0x/python-glanceclientmk-build-deps -i -r -t apt-get -y /tmp/tmpS0gD0x/python-glanceclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log c0ec97f310bc56c69c22e49928b4aea4cd8458f1..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/python-glanceclient/precise-grizzly --forcedch -b -D precise --newversion 1:0.6.0.11.g7be3395+git201212031006~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [4fa6805] Change default image sort to use namedch -a [4da8b28] Add --sort-key and --sort-dir to image-listdch -a [c2ba627] Allow setting x-image-meta-store through shell on image creationdch -a [7a5946f] Verify that host matches certificatedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-glanceclient_0.6.0.11.g7be3395+git201212031006~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A python-glanceclient_0.6.0.11.g7be3395+git201212031006~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing python-glanceclient_0.6.0.11.g7be3395+git201212031006~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-grizzly python-glanceclient_0.6.0.11.g7be3395+git201212031006~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/python-glanceclient/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: 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 #49

2012-12-03 Thread openstack-testing-bot
Title: precise_grizzly_glance_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_glance_trunk/49/Project:precise_grizzly_glance_trunkDate of build:Mon, 03 Dec 2012 10:01:25 -0500Build duration:8 min 16 secBuild cause:Started by user james-pageBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 3 builds failed.33ChangesNo ChangesConsole Output[...truncated 9549 lines...]gpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "gpg: Signature made Mon Dec  3 10:02:55 2012 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmps8Qx2_/glance_2013.1+git201212031001~precise-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmps8Qx2_/glance_2013.1+git201212031001~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading glance_2013.1+git201212031001~precise-0ubuntu1.dsc: done.  Uploading glance_2013.1+git201212031001~precise.orig.tar.gz: done.  Uploading glance_2013.1+git201212031001~precise-0ubuntu1.debian.tar.gz: done.  Uploading glance_2013.1+git201212031001~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+git201212031001~precise-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/g/glance/glance-api_2013.1+git201211300101~precise-0ubuntu1_all.debdeleting and forgetting pool/main/g/glance/glance-common_2013.1+git201211300101~precise-0ubuntu1_all.debdeleting and forgetting pool/main/g/glance/glance-registry_2013.1+git201211300101~precise-0ubuntu1_all.debdeleting and forgetting pool/main/g/glance/glance_2013.1+git201211300101~precise-0ubuntu1_all.debdeleting and forgetting pool/main/g/glance/python-glance-doc_2013.1+git201211300101~precise-0ubuntu1_all.debdeleting and forgetting pool/main/g/glance/python-glance_2013.1+git201211300101~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 227.INFO:root:Storing current commit for next build: 8eca4fd08b5c4071f66dedc44bf2ea54f17a1828INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/glance/grizzly /tmp/tmps8Qx2_/glancemk-build-deps -i -r -t apt-get -y /tmp/tmps8Qx2_/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hbzr merge lp:~openstack-ubuntu-testing/glance/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201212031001~precise-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC glance_2013.1+git201212031001~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A glance_2013.1+git201212031001~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing glance_2013.1+git201212031001~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-grizzly glance_2013.1+git201212031001~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: 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_swift_trunk #46

2012-12-03 Thread openstack-testing-bot
Title: precise_grizzly_swift_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_swift_trunk/46/Project:precise_grizzly_swift_trunkDate of build:Mon, 03 Dec 2012 10:09:16 -0500Build duration:2 min 49 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesNo ChangesConsole Output[...truncated 4063 lines...]Checking signature on .dscGood signature on /tmp/tmpB3q0G1/swift_1.7.6+git201212031009~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading swift_1.7.6+git201212031009~precise-0ubuntu1.dsc: done.  Uploading swift_1.7.6+git201212031009~precise.orig.tar.gz: done.  Uploading swift_1.7.6+git201212031009~precise-0ubuntu1.debian.tar.gz: done.  Uploading swift_1.7.6+git201212031009~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', 'swift_1.7.6+git201212031009~precise-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/s/swift/python-swift_1.7.6+git201211291601~precise-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift-account_1.7.6+git201211291601~precise-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift-container_1.7.6+git201211291601~precise-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift-doc_1.7.6+git201211291601~precise-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift-object_1.7.6+git201211291601~precise-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift-proxy_1.7.6+git201211291601~precise-0ubuntu1_all.debdeleting and forgetting pool/main/s/swift/swift_1.7.6+git201211291601~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/swift/precise-grizzly']Pushed up to revision 137.INFO:root:Storing current commit for next build: 6743e4d57f2da87e947e171d884e4dcabf56a201INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/swift/grizzly /tmp/tmpB3q0G1/swiftmk-build-deps -i -r -t apt-get -y /tmp/tmpB3q0G1/swift/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log abcd87239486c64d8cdfccd00b95b3284c58470c..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/swift/precise-grizzly --forcedch -b -D precise --newversion 1.7.6+git201212031009~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [6743e4d] Swob bugfixes; for ? in names specificallydch -a [4063123] Fix bug with swob.Request.path_info_popdch -a [89a871d] Improve container-sync docs.dch -a [923b8b9] Fix for container sync not syncing last rowiddebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC swift_1.7.6+git201212031009~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A swift_1.7.6+git201212031009~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing swift_1.7.6+git201212031009~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-grizzly swift_1.7.6+git201212031009~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/swift/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: 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 #99

2012-12-03 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/99/Project:precise_grizzly_quantum_trunkDate of build:Mon, 03 Dec 2012 11:31:23 -0500Build duration:1 min 37 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd metadata_agent.ini to config_path in setup.py.by dprinceeditsetup.pyConsole Output[...truncated 2703 lines...]Hunk #1 FAILED at 5.Hunk #2 succeeded at 32 (offset -1 lines).1 out of 2 hunks FAILED -- rejects in file etc/dhcp_agent.inipatching file etc/l3_agent.inipatching file etc/quantum/plugins/linuxbridge/linuxbridge_conf.inipatching file etc/quantum.confPatch 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-7ceb921e-460d-4ec9-852e-cdf3bc7d6967', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-7ceb921e-460d-4ec9-852e-cdf3bc7d6967', '-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/tmpVS6rQ1/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpVS6rQ1/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d0a284de2ff272ae65a62bc2722c0274ff1be7d2..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201212031131~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [643a36b] Add metadata_agent.ini to config_path in setup.py.dch -a [e4ee84f] Removes unused code in quantum.commondch -a [d06b511] Fixes import order nitsdch -a [dc107a5] update state_path default to be the same valuedch -a [87e9b62] Use /usr/bin/ for the metadata proxy in l3.filtersdch -a [681d7d3] prevent deletion of router interface if it is needed by a floating ipdch -a [58cb6ce] Completes coverage of quantum.agent.linux.utilsdch -a [ac81d9d] Fixes Rpc related exception in NVP plugindch -a [0c3dd5a] add metadata proxy support for Quantum Networksdebcommitbzr 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-7ceb921e-460d-4ec9-852e-cdf3bc7d6967', '-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-7ceb921e-460d-4ec9-852e-cdf3bc7d6967', '-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 Still Failing: raring_grizzly_quantum_trunk #101

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/101/Project:raring_grizzly_quantum_trunkDate of build:Mon, 03 Dec 2012 11:31:24 -0500Build duration:2 min 32 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd metadata_agent.ini to config_path in setup.py.by dprinceeditsetup.pyConsole Output[...truncated 3160 lines...]Hunk #1 FAILED at 5.Hunk #2 succeeded at 32 (offset -1 lines).1 out of 2 hunks FAILED -- rejects in file etc/dhcp_agent.inipatching file etc/l3_agent.inipatching file etc/quantum/plugins/linuxbridge/linuxbridge_conf.inipatching file etc/quantum.confPatch 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-edcf75bd-0c2d-4eaf-9743-7d2b461f82d9', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-edcf75bd-0c2d-4eaf-9743-7d2b461f82d9', '-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/tmpSZXfLI/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpSZXfLI/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d0a284de2ff272ae65a62bc2722c0274ff1be7d2..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201212031131~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [643a36b] Add metadata_agent.ini to config_path in setup.py.dch -a [e4ee84f] Removes unused code in quantum.commondch -a [d06b511] Fixes import order nitsdch -a [dc107a5] update state_path default to be the same valuedch -a [87e9b62] Use /usr/bin/ for the metadata proxy in l3.filtersdch -a [681d7d3] prevent deletion of router interface if it is needed by a floating ipdch -a [58cb6ce] Completes coverage of quantum.agent.linux.utilsdch -a [ac81d9d] Fixes Rpc related exception in NVP plugindch -a [0c3dd5a] add metadata proxy support for Quantum Networksdebcommitbzr 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-edcf75bd-0c2d-4eaf-9743-7d2b461f82d9', '-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-edcf75bd-0c2d-4eaf-9743-7d2b461f82d9', '-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 Still Failing: raring_grizzly_quantum_trunk #102

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/102/Project:raring_grizzly_quantum_trunkDate of build:Mon, 03 Dec 2012 15:01:23 -0500Build duration:3 min 12 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0Changesadd state_path sample back to l3_agent.ini fileby mark.mcclaineditetc/l3_agent.iniConsole Output[...truncated 3163 lines...]Hunk #2 succeeded at 32 (offset -1 lines).1 out of 2 hunks FAILED -- rejects in file etc/dhcp_agent.inipatching file etc/l3_agent.inipatching file etc/quantum/plugins/linuxbridge/linuxbridge_conf.inipatching file etc/quantum.confPatch 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-8aa1330c-db21-412a-ba42-1d407f71d7aa', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-8aa1330c-db21-412a-ba42-1d407f71d7aa', '-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/tmpq5UE3m/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpq5UE3m/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d0a284de2ff272ae65a62bc2722c0274ff1be7d2..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201212031501~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [643a36b] Add metadata_agent.ini to config_path in setup.py.dch -a [e56f174] add state_path sample back to l3_agent.ini filedch -a [e4ee84f] Removes unused code in quantum.commondch -a [d06b511] Fixes import order nitsdch -a [dc107a5] update state_path default to be the same valuedch -a [87e9b62] Use /usr/bin/ for the metadata proxy in l3.filtersdch -a [681d7d3] prevent deletion of router interface if it is needed by a floating ipdch -a [58cb6ce] Completes coverage of quantum.agent.linux.utilsdch -a [ac81d9d] Fixes Rpc related exception in NVP plugindch -a [0c3dd5a] add metadata proxy support for Quantum Networksdebcommitbzr 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-8aa1330c-db21-412a-ba42-1d407f71d7aa', '-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-8aa1330c-db21-412a-ba42-1d407f71d7aa', '-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 Still Failing: precise_grizzly_quantum_trunk #101

2012-12-03 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/101/Project:precise_grizzly_quantum_trunkDate of build:Mon, 03 Dec 2012 20:01:23 -0500Build duration:1 min 35 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFix rootwrap cfg for src installed metadata proxy.by mnewbyeditetc/quantum/rootwrap.d/l3.filtersConsole Output[...truncated 2709 lines...]1 out of 2 hunks FAILED -- rejects in file etc/dhcp_agent.inipatching file etc/l3_agent.inipatching file etc/quantum/plugins/linuxbridge/linuxbridge_conf.inipatching file etc/quantum.confPatch 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-630c1192-6bd7-49da-bb33-f55b1c71c46d', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-630c1192-6bd7-49da-bb33-f55b1c71c46d', '-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/tmpePCZIt/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpePCZIt/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d0a284de2ff272ae65a62bc2722c0274ff1be7d2..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201212032001~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [4ec139e] Fix rootwrap cfg for src installed metadata proxy.dch -a [643a36b] Add metadata_agent.ini to config_path in setup.py.dch -a [e56f174] add state_path sample back to l3_agent.ini filedch -a [e4ee84f] Removes unused code in quantum.commondch -a [d06b511] Fixes import order nitsdch -a [dc107a5] update state_path default to be the same valuedch -a [87e9b62] Use /usr/bin/ for the metadata proxy in l3.filtersdch -a [681d7d3] prevent deletion of router interface if it is needed by a floating ipdch -a [58cb6ce] Completes coverage of quantum.agent.linux.utilsdch -a [ac81d9d] Fixes Rpc related exception in NVP plugindch -a [0c3dd5a] add metadata proxy support for Quantum Networksdebcommitbzr 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-630c1192-6bd7-49da-bb33-f55b1c71c46d', '-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-630c1192-6bd7-49da-bb33-f55b1c71c46d', '-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 Still Failing: raring_grizzly_quantum_trunk #103

2012-12-03 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/103/Project:raring_grizzly_quantum_trunkDate of build:Mon, 03 Dec 2012 20:01:24 -0500Build duration:2 min 15 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesFix rootwrap cfg for src installed metadata proxy.by mnewbyeditetc/quantum/rootwrap.d/l3.filtersConsole Output[...truncated 3166 lines...]1 out of 2 hunks FAILED -- rejects in file etc/dhcp_agent.inipatching file etc/l3_agent.inipatching file etc/quantum/plugins/linuxbridge/linuxbridge_conf.inipatching file etc/quantum.confPatch 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-ff1f8195-a7a0-433c-bab2-8b26c6a2ab48', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-ff1f8195-a7a0-433c-bab2-8b26c6a2ab48', '-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/tmpQzLRJT/quantummk-build-deps -i -r -t apt-get -y /tmp/tmpQzLRJT/quantum/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log d0a284de2ff272ae65a62bc2722c0274ff1be7d2..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201212032001~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [4ec139e] Fix rootwrap cfg for src installed metadata proxy.dch -a [643a36b] Add metadata_agent.ini to config_path in setup.py.dch -a [e56f174] add state_path sample back to l3_agent.ini filedch -a [e4ee84f] Removes unused code in quantum.commondch -a [d06b511] Fixes import order nitsdch -a [dc107a5] update state_path default to be the same valuedch -a [87e9b62] Use /usr/bin/ for the metadata proxy in l3.filtersdch -a [681d7d3] prevent deletion of router interface if it is needed by a floating ipdch -a [58cb6ce] Completes coverage of quantum.agent.linux.utilsdch -a [ac81d9d] Fixes Rpc related exception in NVP plugindch -a [0c3dd5a] add metadata proxy support for Quantum Networksdebcommitbzr 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-ff1f8195-a7a0-433c-bab2-8b26c6a2ab48', '-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-ff1f8195-a7a0-433c-bab2-8b26c6a2ab48', '-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