Re: [Openstack] OpenStack (+ Quantum Deployment) Scenarios

2012-11-12 Thread Dan Wendlandt
Robert, yes, I'm sure in certain configurations and with certain tuning, one can potentially place all services on a single device, and Quantum supports that just fine as well. For the sake of documentation, we wanted to show the case where the two were separated, as this tends to be what we see

[Openstack] [Nova] Question about instance_metadata and instance_system_metadata

2012-11-12 Thread hzyangtk
Hi, all Recently, I find out that when the instance with some metadata or system_metadata was deleted, but instance_metadata and instance_system_metadata these two tables are still keep the metadata and system_metadata deleted=0 (means these datas are not deleted). I am a little confused about

Re: [Openstack] snapshots, backups of running VMs and compute node recovery

2012-11-12 Thread Édouard Thuleau
I try to implement a simple way to automate the backup mechanism (eg. every day): https://blueprints.launchpad.net/nova/+spec/backup-schedule And I though of a solution to respond to your needs: when a node fails (for any reasons), I disable it, I delete all servers was running on it and I

Re: [Openstack] snapshots, backups of running VMs and compute node recovery

2012-11-12 Thread Jānis Ģeņģeris
On Fri, Nov 9, 2012 at 9:45 PM, Vishvananda Ishaya vishvana...@gmail.comwrote: The libvirt driver has actually gotten quite good at rebuilding all of the data for instances. This only thing it can't do right now is redownload base images from glance. With current state if you simply back up

Re: [Openstack] snapshots, backups of running VMs and compute node recovery

2012-11-12 Thread Jānis Ģeņģeris
Hi, What do you mean with deleting all servers? If the node is down, then all the VM data is gone too, or you are talking about DB entries? On Mon, Nov 12, 2012 at 11:08 AM, Édouard Thuleau thul...@gmail.com wrote: I try to implement a simple way to automate the backup mechanism (eg. every

Re: [Openstack] how to configure l3_agent when you have Per-tenant Routers !

2012-11-12 Thread Emilien Macchi
Hi,I suggest you reading my script [1] which helps to create virtual networking in Folsom with OVS Plugin for you use case.[1] https://github.com/EmilienM/openstack-folsom-guide/blob/master/scripts/quantum-networking.shRegards,Emilien Macchi//

Re: [Openstack] Strange network behavior

2012-11-12 Thread Joe Warren-Meeks
Hi Vish et al. I still can't make head nor tail of it. ICMP works in both directions fine, but when I try to ssh out from the VM (even with the dmz_cidr flags) the SYN gets through un-snatted ok, then my desktop SYN-ACKs back, but the virt never gets to see it. Instead, the snat layer sends a

[Openstack] Bridge mappings in folsom

2012-11-12 Thread Neelakantam Gaddam
Hi All, I have few questions regarding bridge mapping in folsom release. In the quantum configuration file, there is a config param for bridge mapping: bridge_mappings=default:br-eth1 (ListOpt) Comma-separated list of physical_network:bridge tuples mapping physical network names to agent's

[Openstack] Essex Dashboard: KeyError at /nova/instances_and_volumes/

2012-11-12 Thread Christian Parpart
Hey all, since quite some weeks I am getting an error page instead of the Instances and Volumes page in the Essex Horizon Dashboard with the above title and the below detailed error output: Environment: Request Method: GETRequest URL: http://controller.rz.dawanda.com/nova/instances_and_volumes/

Re: [Openstack] how to configure l3_agent when you have Per-tenant Routers !

2012-11-12 Thread Logan_McLeod
You have to create multiple routers. You have one provider level router that will be your external network router, You can then create a router either for each tenant or for all tenants to support the internal network depending on your needs/topology. Logan From:

Re: [Openstack] how to configure l3_agent when you have Per-tenant Routers !

2012-11-12 Thread Skible OpenStack
This means that each tenant router should be linked to the external network router ? is that what you mean Logan ? Le 12/11/2012 15:10, logan_mcl...@dell.com a crit: You have to create multiple routers.

Re: [Openstack] how to configure l3_agent when you have Per-tenant Routers !

2012-11-12 Thread Logan_McLeod
I haven’t tried it yet, but yes. You should be able to add internal network interfaces from the external router setup to a common internal network to which each of the tenant routers is also connected to. Setting the external network gateway of the tenant routers to that of the ext_net router

Re: [Openstack] Quantum Debug

2012-11-12 Thread Emilio García
Hello again, I had some progress now. I followed another guide and now using VLAN+bridge interface ( https://github.com/mseknibilel/OpenStack-Folsom-Install-guide/blob/master/OpenStack_Folsom_Install_Guide_WebVersion.rst ) Now I can ping the instances (after configuring the interface manually

Re: [Openstack] Strange network behavior

2012-11-12 Thread Joe Warren-Meeks
Hey guys, Ignore this q. I didn't really have my head around how Openstack works and I think I get it now. Thanks for all your help. -- joe. On 12 November 2012 10:12, Joe Warren-Meeks joe.warren.me...@gmail.comwrote: Hi Vish et al. I still can't make head nor tail of it. ICMP works in

[Openstack] [Horizon] Error in /var/log/apache2/error.log

2012-11-12 Thread Srikanth Kumar Lingala
Hi, I created a custom page in horizon. Most of the new page is working fine. But, when I wanted to load some custom 'quantum' DB table data in horizon, I am getting the following error in '*/var/log/apache2/error.log*': *Traceback (most recent call last): [Mon Nov 12 15:52:58 2012] [error]

Re: [Openstack] Essex Dashboard: KeyError at /nova/instances_and_volumes/

2012-11-12 Thread Gabriel Hurley
That is actually the manifestation of a bug in Nova that was addressed very late in Folsom. The short version is that Nova inconsistently scoped the ownership of volumes vs. instances so it was possible for an admin user to view a mixed set of resources which could lead to the scenario you hit

Re: [Openstack] [Cinder] Cinder snapshots

2012-11-12 Thread Chuck Thier
Top posting to give some general history and some thoughts. Snapshots, as implemented currently in cinder, are derived from the EBS definition of a snapshot. This is more of a consistent block level backup of a volume. New volumes can be created from any given snapshot. This is *not* usually

Re: [Openstack] [Horizon] Error in /var/log/apache2/error.log

2012-11-12 Thread Gabriel Hurley
Your Quantum API route is returning a 404. Whether this is because you have your route wrong or Quantum is misconfigured or [something else] I could tell you. I would recommend narrowing down your possibilities by trying to make the call directly with quantumclient or using curl to make the

[Openstack] [Horizon] tables.DeleteAction not working

2012-11-12 Thread Srikanth Kumar Lingala
Hi, I created a custom table in Quantum DB, and getting rows from that, and show as Table in Horizon. For each row, I put only action 'Delete', and called subsequent class for eg. 'DeleteRow(tables.DeleteAction)'. In this, I wrote 'delete' function, in which I am calling quantum API to delete the

Re: [Openstack] [openstack-dev] [Horizon] tables.DeleteAction not working

2012-11-12 Thread Gabriel Hurley
For questions like that it would be *very* helpful if you could post your code somewhere (github/gerrit). Debugging them otherwise is basically shooting in the dark. - Gabriel From: Srikanth Kumar Lingala [mailto:srikanthkumar.ling...@gmail.com] Sent: Monday, November 12, 2012 11:51

Re: [Openstack] Plans for Trusted Computing in OpenStack

2012-11-12 Thread Dugger, Donald D
Nicolae- We've been working under the assumption you have trust the IaaS provider (individual nodes might have been compromised somehow but you trust the provider itself). I think what you are looking at is adding a 3rd party CA which is significantly increasing the complexity of the solution

Re: [Openstack] [openstack-dev] [Horizon] tables.DeleteAction not working

2012-11-12 Thread Srikanth Kumar Lingala
Ok .. I will post there ... Srikanth. On Mon, Nov 12, 2012 at 2:06 PM, Gabriel Hurley gabriel.hur...@nebula.comwrote: For questions like that it would be **very** helpful if you could post your code somewhere (github/gerrit). Debugging them otherwise is basically shooting in the dark.

Re: [Openstack] Cannot start nova-api service

2012-11-12 Thread Ahmed Al-Mehdi
Hello, Can someone please help me with a nova-api issue. After install all the nova services, all seem to be running fine, except for nova-api. I even reboot my controller node, no luck. After reboot all services are running, except nova-api. When I manually start nova-api, nova-api

Re: [Openstack] Cannot start nova-api service

2012-11-12 Thread Jian Hua Geng
By default both cinder and nova-api are listening on the same port 8776 (this should be a bug I think), you can try to change the default value in the cinder.conf like: osapi_volume_listen_port = 8777 if you are running the cinder and nova-api on the same machine.

Re: [Openstack] Cannot start nova-api service

2012-11-12 Thread John Griffith
On Mon, Nov 12, 2012 at 6:57 PM, Jian Hua Geng gen...@cn.ibm.com wrote: By default both cinder and nova-api are listening on the same port 8776 (this should be a bug I think), you can try to change the default value in the cinder.conf like: osapi_volume_listen_port = 8777 if you are running

Re: [Openstack] Cannot start nova-api service

2012-11-12 Thread Ahmed Al-Mehdi
From: John Griffith john.griff...@solidfire.commailto:john.griff...@solidfire.com Date: Monday, November 12, 2012 7:17 PM To: Jian Hua Geng gen...@cn.ibm.commailto:gen...@cn.ibm.com Cc: Ahmed Al-Mehdi ah...@coraid.commailto:ah...@coraid.com,

[Openstack] [Swift] retrieve tenant-level, account-level and container-level usage information

2012-11-12 Thread ning2008wisc
Hello All, Is there any Swift (GUI or command line) tool that can retrieve the tenant-level, account-level and container-level usage information (e.g. how large space has been used under an account, how large space has been used under a tenant) and also works with keystone? Thanks, Ning

Re: [Openstack] Cannot start nova-api service

2012-11-12 Thread John Griffith
On Mon, Nov 12, 2012 at 7:34 PM, Ahmed Al-Mehdi ah...@coraid.com wrote: From: John Griffith john.griff...@solidfire.com Date: Monday, November 12, 2012 7:17 PM To: Jian Hua Geng gen...@cn.ibm.com Cc: Ahmed Al-Mehdi ah...@coraid.com, openstack-bounces+gengjh=cn.ibm@lists.launchpad.net

Re: [Openstack] Cannot start nova-api service

2012-11-12 Thread Ahmed Al-Mehdi
From: John Griffith john.griff...@solidfire.commailto:john.griff...@solidfire.com Date: Monday, November 12, 2012 7:47 PM To: Ahmed Al-Mehdi ah...@coraid.commailto:ah...@coraid.com Cc: Jian Hua Geng gen...@cn.ibm.commailto:gen...@cn.ibm.com,

[Openstack] [Swift] account-level and container-level usage information

2012-11-12 Thread Ning Zhang
Hello All, Is there any Swift (GUI or command line) tool that can retrieve the account-level and container-level usage information (e.g. how large space has been used under an account, how large space has been used under a tenant) and also works with keystone? Thanks, Ning

Re: [Openstack] [Swift] account-level and container-level usage information

2012-11-12 Thread Alex Yang
Hi, The python-swiftclient(https://github.com/openstack/python-swiftclient) can retrieve the account-level and container-level usage infomation. To retrieve the account usage information: $ swift -V 2 -A http://127.0.0.1:5000/v2.0 -U tenant1:swift_user -K 19561212 stat Account:

Re: [Openstack] [Cinder] Cinder snapshots

2012-11-12 Thread Avishay Traeger
Chuck Thier cth...@gmail.com wrote on 12/11/2012 21:25:32: Top posting to give some general history and some thoughts. Snapshots, as implemented currently in cinder, are derived from the EBS definition of a snapshot. This is more of a consistent block level backup of a volume. New volumes

Re: [Openstack] Essex Dashboard: KeyError at /nova/instances_and_volumes/

2012-11-12 Thread Yong Jiang
This bug is reported at https://bugs.launchpad.net/horizon/+bug/1053488, one potential way to fix it is proposed at https://review.openstack.org/14801 2012/11/13 Gabriel Hurley gabriel.hur...@nebula.com That is actually the manifestation of a bug in Nova that was addressed very late in

Re: [Openstack-volume] Netapp: migrate Essex datasets to Folsom - missing metadata in DFM

2012-11-12 Thread Brano Zarnovican
On Fri, Nov 9, 2012 at 4:55 PM, Swartzlander, Ben ben.swartzlan...@netapp.com wrote: This sounds less like an Essex-Folsom upgrade issue and more like an old version-new version issue. We made some changes to the driver in the Folsom timeframe and backported those changes to Essex, but we never

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

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/30/Project:precise_grizzly_quantum_trunkDate of build:Mon, 12 Nov 2012 08:31:21 -0500Build duration:1 min 42 secBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/31/Project:precise_grizzly_quantum_trunkDate of build:Mon, 12 Nov 2012 12:01:21 -0500Build duration:1 min 42 secBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/32/Project:precise_grizzly_quantum_trunkDate of build:Mon, 12 Nov 2012 13:01:22 -0500Build duration:1 min 40 secBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
at 20121112

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

2012-11-12 Thread openstack-testing-bot
at 20121112

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

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/72/Project:precise_grizzly_nova_trunkDate of build:Mon, 12 Nov 2012 13:31:24 -0500Build duration:15 minBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/74/Project:raring_grizzly_nova_trunkDate of build:Mon, 12 Nov 2012 13:31:25 -0500Build duration:16 minBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/34/Project:precise_grizzly_quantum_trunkDate of build:Mon, 12 Nov 2012 14:01:38 -0500Build duration:2 min 31 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #73

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/73/Project:precise_grizzly_nova_trunkDate of build:Mon, 12 Nov 2012 14:01:30 -0500Build duration:15 minBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/75/Project:raring_grizzly_nova_trunkDate of build:Mon, 12 Nov 2012 14:01:24 -0500Build duration:17 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_glance_trunk #9

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_glance_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_glance_trunk/9/Project:precise_grizzly_glance_trunkDate of build:Mon, 12 Nov 2012 14:31:22 -0500Build duration:1 min 56 secBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/76/Project:raring_grizzly_nova_trunkDate of build:Mon, 12 Nov 2012 15:01:24 -0500Build duration:16 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_swift_trunk #20

2012-11-12 Thread openstack-testing-bot
at 20121112-1535Build needed 00:01:45, 17660k disc

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

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/75/Project:precise_grizzly_nova_trunkDate of build:Mon, 12 Nov 2012 15:33:56 -0500Build duration:14 minBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/76/Project:precise_grizzly_nova_trunkDate of build:Mon, 12 Nov 2012 16:01:28 -0500Build duration:14 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_nova_trunk #78

2012-11-12 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/78/Project:raring_grizzly_nova_trunkDate of build:Mon, 12 Nov 2012 16:01:22 -0500Build duration:16 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_glance_trunk #11

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_glance_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_glance_trunk/11/Project:precise_grizzly_glance_trunkDate of build:Mon, 12 Nov 2012 16:31:21 -0500Build duration:2 min 4 secBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
at 20121112-1639Build needed 00:05:30

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

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/35/Project:precise_grizzly_quantum_trunkDate of build:Mon, 12 Nov 2012 16:39:47 -0500Build duration:2 min 14 secBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/77/Project:precise_grizzly_nova_trunkDate of build:Mon, 12 Nov 2012 16:31:23 -0500Build duration:16 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Fixed: raring_grizzly_nova_trunk #79

2012-11-12 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/79/Project:raring_grizzly_nova_trunkDate of build:Mon, 12 Nov 2012 16:33:26 -0500Build duration:18 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_glance_trunk #12

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_glance_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_glance_trunk/12/Project:precise_grizzly_glance_trunkDate of build:Mon, 12 Nov 2012 17:01:24 -0500Build duration:2 min 4 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #78

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/78/Project:precise_grizzly_nova_trunkDate of build:Mon, 12 Nov 2012 17:01:23 -0500Build duration:15 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #80

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/80/Project:precise_grizzly_nova_trunkDate of build:Tue, 13 Nov 2012 00:31:24 -0500Build duration:13 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #81

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/81/Project:precise_grizzly_nova_trunkDate of build:Tue, 13 Nov 2012 01:01:24 -0500Build duration:13 minBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/36/Project:precise_grizzly_quantum_trunkDate of build:Tue, 13 Nov 2012 02:01:21 -0500Build duration:1 min 51 secBuild cause:Started by an SCM changeBuilt

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

2012-11-12 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/35/Project:raring_grizzly_quantum_trunkDate of build:Tue, 13 Nov 2012 02:01:22 -0500Build duration:7 min 49 secBuild cause:Started by an SCM changeBuilt