This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function git_branch { | |
git branch --no-color 2> /dev/null | egrep '^\*' | sed -e 's/^* //' | |
} | |
function git_dirty { | |
# only tracks modifications, not unknown files needing adds | |
if [ -z "`git status -s | awk '{print $1}' | grep '[ADMTU]'`" ] ; then | |
return 1 | |
else | |
return 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
ENDPOINT_TYPE=${3:-$ENDPOINT_TYPE} | |
KEYSTONE_HOST=${4:-$KEYSTONE_HOST} | |
function die { | |
echo $1 | |
echo "usage: $0 <username> <password>" \ | |
"<type=\$ENDPOINT_TYPE> <host=\$KEYSTONE_HOST>" | |
exit 1 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
if [ "$2" == "" ]; then | |
echo "usage: $0 <username> <password> <project=username> <file=novarc>" | |
exit 1 | |
fi | |
USER=$1 | |
PASSWORD=$2 | |
PROJECT=${3:-$USER} | |
FILE=${4:-novarc} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant::Config.run do |config| | |
sshdir = "#{ENV['HOME']}/.ssh/" | |
cachedir = (ENV['CACHEDIR'] or "#{ENV['HOME']}/cache/") | |
checkout = (ENV['COOKBOOKS'] or "#{ENV['HOME']}/openstack-cookbooks") | |
ip_prefix = (ENV['IP_PREFIX'] or "192.168.27.") | |
mac_prefix = (ENV['MAC_PREFIX'] or "080027027") | |
suffix = "100" | |
ip = "#{ip_prefix}#{suffix}" | |
config.vm.box = "oneiric" | |
config.vm.box_url = "http://images.ansolabs.com/vagrant/oneiric64.box" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 7ac94ccf7dbb5838ef877b9d954ea96bf1412b4b | |
Author: Anthony Young <[email protected]> | |
Date: Mon Sep 12 00:16:49 2011 -0700 | |
fix for lp847604 to unbreak instance rebooting | |
diff --git a/nova/compute/api.py b/nova/compute/api.py | |
index b0ea044..48bb266 100644 | |
--- a/nova/compute/api.py | |
+++ b/nova/compute/api.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/nova/scheduler/simple.py b/nova/scheduler/simple.py | |
index fc1b314..b6cbff4 100644 | |
--- a/nova/scheduler/simple.py | |
+++ b/nova/scheduler/simple.py | |
@@ -42,10 +42,13 @@ class SimpleScheduler(chance.ChanceScheduler): | |
def _schedule_instance(self, context, instance_id, *_args, **_kwargs): | |
"""Picks a host that is up and has the fewest running instances.""" | |
instance_ref = db.instance_get(context, instance_id) | |
- if (instance_ref['availability_zone'] | |
- and ':' in instance_ref['availability_zone'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/nova/context.py b/nova/context.py | |
index de5b791..7f08877 100644 | |
--- a/nova/context.py | |
+++ b/nova/context.py | |
@@ -1,5 +1,6 @@ | |
# vim: tabstop=4 shiftwidth=4 softtabstop=4 | |
+# Copyright 2011 OpenStack LLC. | |
# Copyright 2010 United States Government as represented by the | |
# Administrator of the National Aeronautics and Space Administration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/nova/tests/fake_flags.py b/nova/tests/fake_flags.py | |
index 0732164..7d37960 100644 | |
--- a/nova/tests/fake_flags.py | |
+++ b/nova/tests/fake_flags.py | |
@@ -23,7 +23,8 @@ FLAGS = flags.FLAGS | |
flags.DECLARE('volume_driver', 'nova.volume.manager') | |
FLAGS['volume_driver'].SetDefault('nova.volume.driver.FakeISCSIDriver') | |
FLAGS['connection_type'].SetDefault('fake') | |
-FLAGS['fake_rabbit'].SetDefault(True) | |
+FLAGS['fake_rabbit'].SetDefault(False) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vim: tabstop=4 shiftwidth=4 softtabstop=4 | |
# Copyright (c) 2011 X.commerce, a business unit of eBay Inc. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may | |
# not use this file except in compliance with the License. You may obtain | |
# a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/nova/compute/api.py b/nova/compute/api.py | |
index f65b5ce..01f5488 100644 | |
--- a/nova/compute/api.py | |
+++ b/nova/compute/api.py | |
@@ -29,6 +29,7 @@ from nova import flags | |
import nova.image | |
from nova import log as logging | |
from nova import network | |
+from nova import policy | |
from nova import quota |