[Bug 607339] [NEW] Upgrade package to 7.0

2010-07-19 Thread Chuck
Public bug reported:

Binary package hint: awstats

The awstats package is two revisions behind.  The newest version is 7.0.
Newest functionality is listed below:

* 7.0 *

New features/improvements:
- Detect Windows 7.
- Can format numbers according to language.
- More mime types.
- Added geoip_asn_maxmind plugin.
- Geoip Maxmind city plugin have now override file capabilities to complete
  missing entries in geoip maxmind database. 
- Added graphgooglechartapi to use online Google chart api to build graph.
- Can show map of country to report countries when using graphgooglechartapi.
- Part of codes was change to use more functions and have a cleaner code.
- Added parameter to ignore missing log files when merging for a site on 
  multiple servers where a single server may not have created a log for a given 
day.
- Update robots database.
- Added Download tracking where certain mime types are defined as downloads
  and HTTP status 206 is tracked as download continuation

Thanks to Chris Larsen (author of most thoses changes).

Fixes: 
- Webmin module works with new version of webmin.
- Security fix.


* 6.95 *

New features/improvements:
- Fix security in awredir.pl script by adding a security key required by
  default.
- Enhance security of parameter sanitizing function.
- Add name of config file used to build data files inside data files header.
- Added details of version for Chrome, Opera, Safari and Konqueror browsers.
- Add AdobeAir detection.
- Major update of browsers, robots and search_engines databases (among them,
  the Bing search engine).
- Increase seriously bot detection.
- Add Brezhoneg language.
- Add a better way to detect Safari versions.
- Added subpages for geoip maxmind modules in awstats_buildstaticpages.
 
Fixes:
- Fix typo in polish language file
- awstats emmits ton of warnings with new geoipfree - ID: 2794728
- Fix: can detect robots with robots.txt url even if file is not root.
- Other minor fixes.

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

-- 
Upgrade package to 7.0
https://bugs.launchpad.net/bugs/607339
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to awstats in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 497559] [NEW] php5-curl not flushing files to disk correctly until script exits

2009-12-16 Thread Chuck
Public bug reported:

Binary package hint: php5

Package: php5-curl 
Distribution: Ubuntu 9.10 
uname -a:
Linux administrator-desktop 2.6.31-16-generic-pae #53-Ubuntu SMP Tue Dec 8 
05:20:21 UTC 2009 i686 GNU/Linux

apt-cache policy php5-curl

php5-curl:
  Installed: 5.2.10.dfsg.1-2ubuntu6.3
  Candidate: 5.2.10.dfsg.1-2ubuntu6.3
  Version table:
 *** 5.2.10.dfsg.1-2ubuntu6.3 0
500 http://us.archive.ubuntu.com karmic-updates/main Packages
500 http://security.ubuntu.com karmic-security/main Packages
100 /var/lib/dpkg/status
 5.2.10.dfsg.1-2ubuntu6 0
500 http://us.archive.ubuntu.com karmic/main Packages

php5:
  Installed: 5.2.10.dfsg.1-2ubuntu6.3
  Candidate: 5.2.10.dfsg.1-2ubuntu6.3
  Version table:
 *** 5.2.10.dfsg.1-2ubuntu6.3 0
500 http://us.archive.ubuntu.com karmic-updates/main Packages
500 http://security.ubuntu.com karmic-security/main Packages
100 /var/lib/dpkg/status
 5.2.10.dfsg.1-2ubuntu6 0
500 http://us.archive.ubuntu.com karmic/main Packages


Ran the following script which uses curl to download file from a remote web 
server:

http://downloads.sourceforge.net/freeghost/Kernel-2.6.32.1.kitchensink"; );
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt( $ch, CURLOPT_BINARYTRANSFER, 1 );
$fp = fopen("/tmp/bzImage", 'wb');
if ( $fp )
{
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_exec ($ch);
curl_close ($ch);
fclose($fp);
}   

for( $i = 0; $i < 3; $i++ )
{
echo filesize( "/tmp/bzImage" ) . "\n";
sleep( 10 );
}
?>


Expected:

file size to report the real size of 4142832 bytes

using 
 
ls -l 

during the running of the script (before it terminates) returns a
filesize of 4141056 but it should return 4142832 as it does when the
script exits.

This was confirmed on two desktops, and functions correctly on Fedora 9

This is a problem is you are chain operations in the same script,
because it appears as if the file doesn't get flushed to disk.  So for
example, we attempt to ftp the file off after download, but it is
corrupted as only 4141056 bytes are sent.

Thanks in advance for any help you can provide.

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

-- 
php5-curl not flushing files to disk correctly until script exits
https://bugs.launchpad.net/bugs/497559
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 497559] Re: php5-curl not flushing files to disk correctly until script exits

2009-12-16 Thread Chuck

** Attachment added: "php file to run from the cli with 'php curl.php'"
   http://launchpadlibrarian.net/36884233/curl.php

-- 
php5-curl not flushing files to disk correctly until script exits
https://bugs.launchpad.net/bugs/497559
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 497559] Re: php5-curl not flushing files to disk correctly until script exits

2009-12-17 Thread Chuck
How can I test 5.2.11, I am not seeing it in the repo?

I am running:

PHP 5.2.10-2ubuntu6.3 with Suhosin-Patch 0.9.7 (cli) (built: Nov 26 2009 
14:42:49) 
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies

** Changed in: php5 (Ubuntu)
   Status: Fix Released => Fix Committed

** Changed in: php5 (Ubuntu)
   Status: Fix Committed => In Progress

-- 
php5-curl not flushing files to disk correctly until script exits
https://bugs.launchpad.net/bugs/497559
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1568095] [NEW] FFE for nova-lxd 13.0.0

2016-04-08 Thread Chuck Short
Public bug reported:

13.0.0b3 - > 13.0.0

Highlights include:

* Query the LXD API for memory usage
* Fix issue #20
*  Fix migration with configdrive
*  Fix spelling typos
*  Remove old LXD console configuration
* Fix launching instance with configdrive
*  fix pep8
* Fix unit tests
* Simplify block detection
* Adjust function name.
*  Check for LXD block devices
* Fix pep8
* Remove extra debug messages

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

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

Title:
  FFE for nova-lxd 13.0.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova-lxd/+bug/1568095/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1569538] [NEW] Mount points fail removal

2016-04-12 Thread Chuck Short
Public bug reported:

LVM instance removal fail because the console.log is still open on the
mount point.

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

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

Title:
  Mount points fail removal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova-lxd/+bug/1569538/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1569535] [NEW] Image detection is not backward compatible

2016-04-12 Thread Chuck Short
Public bug reported:

When using images from a liberty installation. Images are not detected
as valid images.

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

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

Title:
  Image detection is not backward compatible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova-lxd/+bug/1569535/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1569630] [NEW] charm-tools 2.1.2 is not installable

2016-04-12 Thread Chuck Short
Public bug reported:

21:51:04 Reading package lists...
21:51:04 Building dependency tree...
21:51:05 Reading state information...
21:51:05 amulet is already the newest version.
21:51:05 juju-deployer is already the newest version.
21:51:05 Some packages could not be installed. This may mean that you have
21:51:05 requested an impossible situation or if you are using the unstable
21:51:05 distribution that some required packages have not yet been created
21:51:05 or been moved out of Incoming.
21:51:05 The following information may help to resolve the situation:
21:51:05 
21:51:05 The following packages have unmet dependencies:
21:51:05  charm-tools : Depends: python-path.py but it is not installable
21:51:05 E: Unable to correct problems, you have held broken packages.
21:51:05 Build step 'Execute shell' marked build as failure
21:51:05 Archiving artifacts
21:51:05 Finished: FAILURE

** Affects: charm-tools (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  charm-tools 2.1.2 is not installable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/charm-tools/+bug/1569630/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1571699] [NEW] Configdrive failure

2016-04-18 Thread Chuck Short
Public bug reported:


Instances with configdrive attach fail to boot:

[ 8189.897706] cloud-init[325]: Traceback (most recent call last):
[ 8189.897955] cloud-init[325]: File "/usr/bin/cloud-init", line 668, in
[ 8189.898121] cloud-init[325]: sys.exit(main())
[ 8189.898280] cloud-init[325]: File "/usr/bin/cloud-init", line 664, in main
[ 8189.898433] cloud-init[325]: get_uptime=True, func=functor, args=(name, 
args))
[ 8189.898585] cloud-init[325]: File 
"/usr/lib/python3/dist-packages/cloudinit/util.py", line 2040, in log_time
[ 8189.898738] cloud-init[325]: ret = func(args, *kwargs)
[ 8189.898890] cloud-init[325]: File "/usr/bin/cloud-init", line 469, in 
status_wrapper
[ 8189.899040] cloud-init[325]: util.ensure_dirs((data_d, link_d,))
[ 8189.899189] cloud-init[325]: File 
"/usr/lib/python3/dist-packages/cloudinit/util.py", line 1376, in ensure_dirs
[ 8189.900470] cloud-init[325]: ensure_dir(d, mode)
[ 8189.901480] cloud-init[325]: File 
"/usr/lib/python3/dist-packages/cloudinit/util.py", line 1415, in ensure_dir
[ 8189.901846] cloud-init[325]: chmod(path, mode)
[ 8189.901996] cloud-init[325]: File 
"/usr/lib/python3/dist-packages/cloudinit/util.py", line 1628, in chmod
[ 8189.902152] cloud-init[325]: os.chmod(path, real_mode)
[ 8189.902300] cloud-init[325]: PermissionError: [Errno 1] Operation not 
permitted: '/var/lib/cloud/data'

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

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

Title:
  Configdrive failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova-lxd/+bug/1571699/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1569535] Re: Image detection is not backward compatible

2016-04-18 Thread Chuck Short
** Changed in: nova-lxd (Ubuntu)
   Status: New => Fix Released

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

Title:
  Image detection is not backward compatible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova-lxd/+bug/1569535/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1439280] Re: Libvirt CPU affinity error

2017-01-05 Thread Chuck Short
This should be fixed now, please re-open if it isnt.

** Changed in: nova (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Libvirt CPU affinity error

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1673411] Re: config-drive support is broken

2017-04-05 Thread Chuck Short
** Changed in: nova-lxd (Ubuntu Zesty)
   Status: Triaged => Fix Committed

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

Title:
  config-drive support is broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1673411/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1006898] Re: [SRU] dnsmasq fails at leasing issues when using vlan mode

2013-01-23 Thread Chuck Short
No we are probably going to be backporting it to the cloud archive.

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

Title:
  [SRU] dnsmasq fails at leasing issues when using vlan mode

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-r-openstack-grizzly] Openstack next steps

2013-01-29 Thread Chuck Short
Blueprint changed by Chuck Short:

Work items changed:
  Work items:
  Release and package nova, glance, keystone, cinder, swift, horizon, quantum, 
and ceilometer for main: INPROGRESS
  MIR dependencies that need to be done for ceilometer: DONE
  SSL support openstack endpoints: TODO
  Apparmor profile for openstack projects: TODO
  Make sure that vmware esxi works on ubuntu: TODO
  Make sure libvirt-xen works on ubuntu openstack: DONE
  Make sure that XCP/Xenserver work on Ubuntu openstack: TODO
- Make sure that openstack works with postgresql (revisit db-common): TODO
+ Make sure that openstack works with postgresql (revisit db-common): DONE
  rabbitmq vs activemq vs zeromq vs qpid: TODO
  Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
  Adding HA to CI testing: TODO
- Look at packaging Synaps contributed by Samsung: TODO
+ Look at packaging Synaps contributed by Samsung: DONE
  Look at packaging Red Dwarf: TODO
  Look at packaging DNS as a service: TODO
  Look at Load Balancing as a service: TODO
  Look at NRPE Plugins Package: TODO
  Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
  [zulcss] FTBFS from is missing binaries: DONE
  [zulcss] Remove nova-volume in Grizzly: DONE
  [ivoks] Test quantum on ARM: TODO
  (Folsom->Grizzly) (Grizzly->) for the Ubuntu Devel release + Precise: TODO

-- 
Openstack next steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-openstack-grizzly

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1099382] Re: quantum: Raring depwait on universe package alembic

2013-01-29 Thread Chuck Short
** Changed in: quantum (Ubuntu Raring)
   Status: Confirmed => Fix Released

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

Title:
  quantum: Raring depwait on universe package alembic

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1089833] Re: Duplicate files provided by multiple packages

2013-01-31 Thread Chuck Short
Please re-open this bug when you have attached the missing file.

** Changed in: quantum (Ubuntu)
   Status: Incomplete => Won't Fix

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

Title:
  Duplicate files provided by multiple packages

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1043564] Re: quantum packages are broken

2013-01-31 Thread Chuck Short
This should be fixed in the latest updates.

** Changed in: quantum (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  quantum packages are broken

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1110567] Re: Openstack Ubuntu Testing: nova-common dpkg --configure broken

2013-02-04 Thread Chuck Short
** Also affects: nova (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Openstack Ubuntu Testing: nova-common dpkg --configure broken

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1104137] Re: FTBFS on raring in schroot

2013-02-04 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: Confirmed => Fix Committed

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

Title:
  FTBFS on raring in schroot

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1103202] Re: grizzly scheduler can not start with import error

2013-02-04 Thread Chuck Short
Please attach your configuration file.

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

Title:
  grizzly scheduler can not start with import error

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1107121] Re: nova-compute crashed with ConfigFilesNotFoundError in _parse_config_files(): Failed to read some config files: /etc/nova/nova-compute.conf

2013-02-06 Thread Chuck Short
Do you have a /etc/nova/nova-compute.conf?

** Changed in: nova (Ubuntu)
   Status: New => Incomplete

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

Title:
  nova-compute crashed with ConfigFilesNotFoundError in
  _parse_config_files(): Failed to read some config files: /etc/nova
  /nova-compute.conf

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1091939] Re: nova-network applies too liberal a SNAT rule

2013-02-06 Thread Chuck Short
** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

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

Title:
  nova-network applies too liberal a SNAT rule

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1117815] Re: python-keystone 2012.1+stable~20120824-a16a0ab9-0ubuntu2.4 improperly pulled in patch from upstream

2013-02-07 Thread Chuck Short
** Changed in: keystone (Ubuntu Precise)
   Status: Incomplete => Invalid

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

Title:
  python-keystone 2012.1+stable~20120824-a16a0ab9-0ubuntu2.4 improperly
  pulled in patch from upstream

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1110567] Re: Openstack Ubuntu Testing: nova-common dpkg --configure broken

2013-02-11 Thread Chuck Short
** Changed in: nova
   Status: New => Invalid

** Changed in: nova (Ubuntu)
   Status: Confirmed => Fix Committed

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

Title:
  Openstack Ubuntu Testing: nova-common dpkg --configure broken

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 954915] Re: Add dbconfig-common support to nova

2013-02-18 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  Add dbconfig-common support to nova

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1084261] Re: 'nova-manage project quota' command fails with 'nova-manage: error: no such option: --project'

2013-02-18 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  'nova-manage project quota' command fails with 'nova-manage: error: no
  such option: --project'

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1051924] Re: lock files may be removed in error dues to permissions issues

2013-02-18 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: Confirmed => Fix Released

** Changed in: nova (Ubuntu Precise)
   Status: Confirmed => Fix Released

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

Title:
  lock files may be removed in error dues to permissions issues

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/essex/+bug/1051924/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 890272] Re: FTBFS nova when in /usr/src

2013-02-18 Thread Chuck Short
I dont think this is no longer a problem. Please re-open if it is.

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

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

Title:
  FTBFS nova when in /usr/src

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 861504] Re: nova-compute-lxc limited by available nbd devices to 16 instances

2013-02-18 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  nova-compute-lxc limited by available nbd devices to 16 instances

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1103202] Re: grizzly scheduler can not start with import error

2013-02-18 Thread Chuck Short
Again please attach your configuration file.

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

Title:
  grizzly scheduler can not start with import error

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1101187] Re: in case ow two networks on the same bridge nova overwrites dnsmasq config

2013-02-18 Thread Chuck Short
** Changed in: nova
   Status: New => Confirmed

** Changed in: nova
   Importance: Undecided => Wishlist

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

Title:
  in case ow two networks on the same bridge nova overwrites dnsmasq
  config

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1122146] Re: python-keystoneclient conflicts with python-requests

2013-02-18 Thread Chuck Short
** Changed in: python-keystoneclient (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  python-keystoneclient conflicts with python-requests

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-keystoneclient/+bug/1122146/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1079022] Re: nova --version does not function as intended

2013-02-18 Thread Chuck Short
This has been fixed in the latest update

** Changed in: cloud-archive
   Status: New => Fix Released

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

Title:
  nova --version does not function as intended

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1079022/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1079022] Re: nova --version does not function as intended

2013-02-18 Thread Chuck Short
This has been fixed in the latest update

** Changed in: python-novaclient (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  nova --version does not function as intended

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1079022/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1088411] Re: Cannot attach volumes to instances if using NexentaStor driver

2013-02-18 Thread Chuck Short
** Also affects: cinder
   Importance: Undecided
   Status: New

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

Title:
  Cannot attach volumes to instances if using NexentaStor driver

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1039763] Re: Multiple nova-volume services fails to create volume on second storage server when using Nexenta driver

2013-02-18 Thread Chuck Short
** Changed in: cinder (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  Multiple nova-volume services fails to create volume on second storage
  server when using Nexenta driver

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1011636] Re: Symbols & and ? in the name of a large object

2013-02-18 Thread Chuck Short
** Changed in: python-swiftclient (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  Symbols & and ? in the name of a large object

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-swiftclient/+bug/1011636/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1065926] Re: can't seem to install keystone on quantal/dbconfig-common integration broken

2013-02-18 Thread Chuck Short
dbcofnig-common stuff has been removed.

** Changed in: keystone (Ubuntu)
   Status: Triaged => Won't Fix

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

Title:
  can't seem to install keystone on quantal/dbconfig-common integration
  broken

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 960350] Re: Cleanup Keystone package descriptions

2013-02-18 Thread Chuck Short
** Changed in: keystone (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  Cleanup Keystone package descriptions

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1104137] Re: FTBFS on raring in schroot

2013-02-24 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  FTBFS on raring in schroot

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1134604] Re: New IPs not available after subnet changes

2013-02-27 Thread Chuck Short
** Package changed: nova (Ubuntu) => nova

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

Title:
  New IPs not available after subnet changes

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 861656] Re: Kernel oops when nbd device is removed before it is unmounted

2013-02-28 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Kernel oops when nbd device is removed before it is unmounted

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1092108] Re: resume_state_on_host_boot fails on instances in error state

2013-02-28 Thread Chuck Short
James which version is this with?

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

Title:
  resume_state_on_host_boot fails on instances in error state

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1103202] Re: grizzly scheduler can not start with import error

2013-02-28 Thread Chuck Short
Please re-open this bug when you have the information.

** Changed in: nova
   Status: Incomplete => Won't Fix

** Changed in: nova (Ubuntu)
   Status: Incomplete => Won't Fix

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

Title:
  grizzly scheduler can not start with import error

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1089791] Re: route_info failed

2013-02-28 Thread Chuck Short
can you attach your nova-network.log and nova-compute.log.

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

Title:
  route_info failed

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1131284] Re: Folsom erroneously destroys paused VMs

2013-02-28 Thread Chuck Short
** Also affects: nova
   Importance: Undecided
   Status: New

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

Title:
  Folsom erroneously destroys paused VMs

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1107121] Re: nova-compute crashed with ConfigFilesNotFoundError in _parse_config_files(): Failed to read some config files: /etc/nova/nova-compute.conf

2013-02-28 Thread Chuck Short
Please re-open this bug when you have provided the information.

** Changed in: nova (Ubuntu)
   Status: Incomplete => Won't Fix

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

Title:
  nova-compute crashed with ConfigFilesNotFoundError in
  _parse_config_files(): Failed to read some config files: /etc/nova
  /nova-compute.conf

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1092126] Re: Instances can get into a 'highlander' state - no obvious way to kill them

2013-02-28 Thread Chuck Short
Elmo,

So something like nova delete --force as an admin?

chuck

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

Title:
  Instances can get into a 'highlander' state - no obvious way to kill
  them

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1091939] Re: nova-network applies too liberal a SNAT rule

2013-02-28 Thread Chuck Short
** Also affects: nova
   Importance: Undecided
   Status: New

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

Title:
  nova-network applies too liberal a SNAT rule

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1144108] Re: Unable to create instances due to QueuePool limit

2013-03-04 Thread Chuck Short
This is due sqlalchemy not closing your sessions to your database
properly, can you try adjusting the following settings:

DEFINE_integer('sql_pool_timeout', 30,
'seconds to wait for connection from pool before erroring')
DEFINE_integer('sql_min_pool_size', 30,
'minimum number of SQL connections to pool')
DEFINE_integer('sql_max_pool_size', 30,
'maximum number of SQL connections to pool') 

** Changed in: nova (Ubuntu)
   Importance: Undecided => Low

** Changed in: nova (Ubuntu)
   Status: New => Incomplete

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

Title:
  Unable to create instances due to QueuePool limit

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1087112] Re: python-swift missing dependancy python-swiftclient

2013-03-04 Thread Chuck Short
This is fixed in recent versions of swift on Ubuntu.

** Changed in: swift (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  python-swift missing dependancy python-swiftclient

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1131284] Re: Folsom erroneously destroys paused VMs

2013-03-17 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Folsom erroneously destroys paused VMs

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1089711] Re: nova.conf unreadable is hard to diagnose

2013-03-17 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  nova.conf unreadable is hard to diagnose

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 969088] Re: Role conflict when importing nova auth

2013-03-17 Thread Chuck Short
Should already be in the cloud archive.

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

** Changed in: keystone (Ubuntu Precise)
   Status: In Progress => Fix Released

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

Title:
  Role conflict when importing nova auth

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1150720] Re: [SRU] There is now a dependency on paramiko v1.8.0

2013-03-18 Thread Chuck Short
** Summary changed:

- There is now a dependency on paramiko v1.8.0
+ [SRU] There is now a dependency on paramiko v1.8.0

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

Title:
  [SRU] There is now a dependency on paramiko v1.8.0

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1150720] Re: [SRU] There is now a dependency on paramiko v1.8.0

2013-03-18 Thread Chuck Short
[Impact] When starting cinder-volume  version 2012.1 on 12.04, cinder-
volume will give an error and exit:

SSHException: Error connecting via ssh: PID check failed. RNG must be
re-initialized after fork(). Hint: Try Random.atfork()

[Test Case]

1. Install 2012.1 on 12.04 from the Ubuntu Cloud Archive
2. Activate the storwize_svc driver
3. Start cinder-volume
4. Observe the exception when starting cinder-volume

[Regression Potential]

None

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

Title:
  [SRU] There is now a dependency on paramiko v1.8.0

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1146865] Re: glance-api fails to start

2013-03-18 Thread Chuck Short
** Changed in: glance (Ubuntu)
   Status: Confirmed => Won't Fix

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

Title:
  glance-api fails to start

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1012551] Re: Cannot delete instance in ERROR status

2013-03-18 Thread Chuck Short
I am not able to reproduce this at all on Grizzly.

** Changed in: nova
   Status: Confirmed => Fix Committed

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

Title:
  Cannot delete instance in ERROR status

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1012551] Re: Cannot delete instance in ERROR status

2013-03-18 Thread Chuck Short
I am not able to reproduce this at all on Grizzly.

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

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

Title:
  Cannot delete instance in ERROR status

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1152820] Re: Unable to install quantum due to hash sum mismatch on python-gflags

2013-03-18 Thread Chuck Short
This has been fixed in the last quantum upload.

** Changed in: quantum (Ubuntu)
   Status: New => Fix Released

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

Title:
  Unable to install quantum due to hash sum mismatch on python-gflags

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1112216] Re: Quantum plugin RestProxy is missing package

2013-03-18 Thread Chuck Short
Fixed in the latest upload in raring will be backported to the cloud-
archive shortly.

** Changed in: quantum (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Quantum plugin RestProxy is missing package

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1104952] Re: quantum-plugin-nec-agent is missing

2013-03-18 Thread Chuck Short
** Changed in: quantum (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  quantum-plugin-nec-agent is missing

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1156338] Re: openvswitch-datapath-dkms should be a dependancy for quantum-plugin-openvswitch-agent

2013-03-18 Thread Chuck Short
** Changed in: quantum (Ubuntu)
   Importance: Undecided => Medium

** Changed in: quantum (Ubuntu)
   Status: New => Opinion

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

Title:
  openvswitch-datapath-dkms should be a dependancy for quantum-plugin-
  openvswitch-agent

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 998942] Re: requires.txt has wrong dependancy versions

2013-03-18 Thread Chuck Short
Fixed in grizzly

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

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

Title:
  requires.txt has wrong dependancy versions

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1157599] Re: Using an iscsi device in the nova-volume VG lets nova-volume crash on system boot

2013-03-20 Thread Chuck Short
Please attach your /etc/nova/nova.conf.

** Changed in: nova (Ubuntu)
   Status: New => Incomplete

** Changed in: nova
   Status: New => Incomplete

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

Title:
  Using an iscsi device in the nova-volume VG lets nova-volume crash on
  system boot

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1157599] Re: Using an iscsi device in the nova-volume VG lets nova-volume crash on system boot

2013-03-22 Thread Chuck Short
Can you add --volume_group nova-volumes to your /etc/nova/nova.conf and
try again. Please re-open if this is still a problem.

** Changed in: nova (Ubuntu)
   Status: New => Won't Fix

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

Title:
  Using an iscsi device in the nova-volume VG lets nova-volume crash on
  system boot

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-r-openstack-grizzly] Openstack next steps

2013-03-26 Thread Chuck Short
Blueprint changed by Chuck Short:

Work items changed:
  Work items:
  Release and package nova, glance, keystone, cinder, swift, horizon, quantum, 
and ceilometer for main: INPROGRESS
  MIR dependencies that need to be done for ceilometer: DONE
- SSL support openstack endpoints: TODO
- Apparmor profile for openstack projects: TODO
- Make sure that vmware esxi works on ubuntu: TODO
+ SSL support openstack endpoints: DONE
+ Apparmor profile for openstack projects: POSTPONED
+ Make sure that vmware esxi works on ubuntu: POSTPONED
  Make sure libvirt-xen works on ubuntu openstack: DONE
  Make sure that XCP/Xenserver work on Ubuntu openstack: TODO
  Make sure that openstack works with postgresql (revisit db-common): DONE
- rabbitmq vs activemq vs zeromq vs qpid: TODO
+ rabbitmq vs activemq vs zeromq vs qpid: POSTPONED
  Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
  Adding HA to CI testing: TODO
  Look at packaging Synaps contributed by Samsung: DONE
- Look at packaging Red Dwarf: TODO
- Look at packaging DNS as a service: TODO
+ Look at packaging Red Dwarf: DONE
+ Look at packaging DNS as a service: DONE
  Look at Load Balancing as a service: DONE
- Look at NRPE Plugins Package: TODO
+ Look at NRPE Plugins Package: POSTPONED
  Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
  [zulcss] FTBFS from is missing binaries: DONE
  [zulcss] Remove nova-volume in Grizzly: DONE
- [ivoks] Test quantum on ARM: TODO
+ [ivoks] Test quantum on ARM: POSTPONED
  (Folsom->Grizzly) (Grizzly->) for the Ubuntu Devel release + Precise: TODO

-- 
Openstack next steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-openstack-grizzly

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1157687] Re: Upgrade to raring fails in prerm

2013-04-04 Thread Chuck Short
** Package changed: python-novaclient (Ubuntu) => python2.7 (Ubuntu)

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

Title:
  Upgrade to raring fails in prerm

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1157274] Re: Nova list_images using image_type parameter does not return expected images

2013-04-04 Thread Chuck Short
** Also affects: python-novaclient
   Importance: Undecided
   Status: New

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

Title:
  Nova list_images using image_type parameter does not return expected
  images

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-novaclient/+bug/1157274/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1129735] Re: nova --debug fails with "ERROR: hasattr(): attribute name must be string"

2013-04-04 Thread Chuck Short
** Changed in: python-novaclient (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  nova --debug fails with "ERROR: hasattr(): attribute name must be
  string"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/1129735/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1100356] Re: Grizzly glance command fails on Ubuntu Raring with jsonschema error

2013-04-04 Thread Chuck Short
** Changed in: python-glanceclient (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Grizzly glance command fails on Ubuntu Raring with jsonschema error

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-glanceclient/+bug/1100356/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1131327] Re: Grizzly glance command fails on Ubuntu Precise with warlock error

2013-04-04 Thread Chuck Short
** Changed in: python-glanceclient (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Grizzly glance command fails on Ubuntu Precise with warlock error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-glanceclient/+bug/1131327/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1164664] Re: Unable to install latest python-quantumclient on non-Quantum node

2013-04-04 Thread Chuck Short
** Project changed: quantum => python-quantumclient

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

Title:
  Unable to install latest python-quantumclient on non-Quantum node

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-quantumclient/+bug/1164664/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-r-openstack-grizzly] Openstack next steps

2013-04-06 Thread Chuck Short
Blueprint changed by Chuck Short:

Work items changed:
  Work items:
- Release and package nova, glance, keystone, cinder, swift, horizon, quantum, 
and ceilometer for main: INPROGRESS
+ Release and package nova, glance, keystone, cinder, swift, horizon, quantum, 
and ceilometer for main: DONE
  MIR dependencies that need to be done for ceilometer: DONE
  SSL support openstack endpoints: DONE
  Apparmor profile for openstack projects: POSTPONED
  Make sure that vmware esxi works on ubuntu: POSTPONED
  Make sure libvirt-xen works on ubuntu openstack: DONE
  Make sure that XCP/Xenserver work on Ubuntu openstack: TODO
  Make sure that openstack works with postgresql (revisit db-common): DONE
  rabbitmq vs activemq vs zeromq vs qpid: POSTPONED
  Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
  Adding HA to CI testing: TODO
  Look at packaging Synaps contributed by Samsung: DONE
  Look at packaging Red Dwarf: DONE
  Look at packaging DNS as a service: DONE
  Look at Load Balancing as a service: DONE
  Look at NRPE Plugins Package: POSTPONED
  Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
  [zulcss] FTBFS from is missing binaries: DONE
  [zulcss] Remove nova-volume in Grizzly: DONE
  [ivoks] Test quantum on ARM: POSTPONED
  (Folsom->Grizzly) (Grizzly->) for the Ubuntu Devel release + Precise: TODO

-- 
Openstack next steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-openstack-grizzly

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1165059] Re: Grizzly testing packages : python-quantumclient installation/upgrade fails

2013-04-06 Thread Chuck Short
** Project changed: quantum => python-quantumclient

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

Title:
  Grizzly testing packages : python-quantumclient installation/upgrade
  fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-quantumclient/+bug/1165059/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1165310] Re: nova-volume package problem

2013-04-07 Thread Chuck Short
nova-volume is not supported in grizzly please use cinder.

** Changed in: nova (Ubuntu)
   Status: New => Invalid

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

Title:
  nova-volume package problem

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-r-openstack-grizzly] Openstack next steps

2013-04-09 Thread Chuck Short
Blueprint changed by Chuck Short:

Work items changed:
  Work items:
  Release and package nova, glance, keystone, cinder, swift, horizon, quantum, 
and ceilometer for main: DONE
  MIR dependencies that need to be done for ceilometer: DONE
  SSL support openstack endpoints: DONE
  Apparmor profile for openstack projects: POSTPONED
  Make sure that vmware esxi works on ubuntu: POSTPONED
  Make sure libvirt-xen works on ubuntu openstack: DONE
- Make sure that XCP/Xenserver work on Ubuntu openstack: TODO
+ Make sure that XCP/Xenserver work on Ubuntu openstack: POSTPONED
  Make sure that openstack works with postgresql (revisit db-common): DONE
  rabbitmq vs activemq vs zeromq vs qpid: POSTPONED
- Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
- Adding HA to CI testing: TODO
+ Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: POSTPONED
+ Adding HA to CI testing: POSTPONED
  Look at packaging Synaps contributed by Samsung: DONE
  Look at packaging Red Dwarf: DONE
  Look at packaging DNS as a service: DONE
  Look at Load Balancing as a service: DONE
  Look at NRPE Plugins Package: POSTPONED
- Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
+ Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: POSTPONED
  [zulcss] FTBFS from is missing binaries: DONE
  [zulcss] Remove nova-volume in Grizzly: DONE
  [ivoks] Test quantum on ARM: POSTPONED
- (Folsom->Grizzly) (Grizzly->) for the Ubuntu Devel release + Precise: TODO
+ (Folsom->Grizzly) (Grizzly->) for the Ubuntu Devel release + Precise: 
POSTPONED

-- 
Openstack next steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-openstack-grizzly

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1167888] Re: Error with Deallocating network for instance

2013-04-11 Thread Chuck Short
Which version were you upgrading from?

** Changed in: nova (Ubuntu)
   Status: New => Incomplete

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

Title:
  Error with Deallocating network for instance

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1166455] Re: nova flavor-list only shows 1000 flavors

2013-04-11 Thread Chuck Short
** Package changed: nova (Ubuntu) => nova

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

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

Title:
  nova flavor-list only shows 1000 flavors

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1088411] Re: Cannot attach volumes to instances if using NexentaStor driver

2013-04-11 Thread Chuck Short
This should already be fixed please re-open if it isnt.

** Changed in: cinder (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Cannot attach volumes to instances if using NexentaStor driver

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1088411] Re: Cannot attach volumes to instances if using NexentaStor driver

2013-04-11 Thread Chuck Short
This should already be fixed please re-open if it isnt.

** Changed in: cinder
   Status: New => Fix Released

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

Title:
  Cannot attach volumes to instances if using NexentaStor driver

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1167073] Re: nova-network should increase nf_conntrack_max

2013-04-11 Thread Chuck Short
net.netfilter.nf_conntrack_max is not set by nova-network it uses the
default.

** Changed in: nova (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: nova (Ubuntu)
   Status: New => Confirmed

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

Title:
  nova-network should increase nf_conntrack_max

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1167073] Re: nova-network should increase nf_conntrack_max

2013-04-11 Thread Chuck Short
net.netfilter.nf_conntrack_max is not set by nova-network it uses the
default.

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

Title:
  nova-network should increase nf_conntrack_max

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1167073] Re: nova-network should increase nf_conntrack_max

2013-04-11 Thread Chuck Short
net.netfilter.nf_conntrack_max is not set by nova-network it uses the
default.

** Changed in: nova
   Importance: Undecided => Wishlist

** Changed in: nova
   Status: New => Confirmed

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

Title:
  nova-network should increase nf_conntrack_max

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1166455] Re: nova flavor-list only shows 1000 flavors

2013-04-12 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => Confirmed

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

Title:
  nova flavor-list only shows 1000 flavors

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1172393] [NEW] nova-api should include iptables

2013-04-24 Thread Chuck Short
Public bug reported:

If IP tables is not installed then nova-api will not get the proper
routing for the metadata service.

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

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

Title:
  nova-api should include iptables

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1172393] Re: nova-api should include iptables

2013-04-24 Thread Chuck Short
** Description changed:

  If IP tables is not installed then nova-api will not get the proper
- routing for the metadata service.
+ routing for the metadata service which would prevent the instances from
+ running properly by failing to setup the information the instances need
+ to run properly.

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

Title:
  nova-api should include iptables

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-database-alternatives] Investigate alternatives to mysql

2013-04-30 Thread Chuck Short
Blueprint changed by Chuck Short:

Drafter: Chuck Short => Ubuntu Server Team

-- 
Investigate alternatives to mysql
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-database-alternatives

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-database-alternatives] Investigate alternatives to mysql

2013-04-30 Thread Chuck Short
Blueprint changed by Chuck Short:

Assignee: (none) => Chuck Short

-- 
Investigate alternatives to mysql
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-database-alternatives

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-openstack-qa] Openstack qa

2013-04-30 Thread Chuck Short
Blueprint changed by Chuck Short:

Drafter: (none) => Ubuntu Server Team

-- 
Openstack qa
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-openstack-qa

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-openstack-qa] Openstack qa

2013-04-30 Thread Chuck Short
Blueprint changed by Chuck Short:

Assignee: (none) => Chuck Short

-- 
Openstack qa
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-openstack-qa

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-openstack-hypervisor] Openstack Hypervisors

2013-04-30 Thread Chuck Short
Blueprint changed by Chuck Short:

Drafter: (none) => Ubuntu Server Team

-- 
Openstack Hypervisors
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-openstack-hypervisor

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-openstack-hypervisor] Openstack Hypervisors

2013-04-30 Thread Chuck Short
Blueprint changed by Chuck Short:

Assignee: (none) => Chuck Short

-- 
Openstack Hypervisors
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-openstack-hypervisor

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-openstack-pkg] Openstack packaging for S

2013-04-30 Thread Chuck Short
Blueprint changed by Chuck Short:

Drafter: (none) => Ubuntu Server Team

-- 
Openstack packaging for S
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-openstack-pkg

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-openstack-pkg] Openstack packaging for S

2013-04-30 Thread Chuck Short
Blueprint changed by Chuck Short:

Assignee: (none) => Chuck Short

-- 
Openstack packaging for S
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-openstack-pkg

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-r-openstack-grizzly] Openstack next steps

2013-05-13 Thread Chuck Short
Blueprint changed by Chuck Short:

Definition Status: Approved => Obsolete

-- 
Openstack next steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-openstack-grizzly

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-openstack-qa] Openstack & Server QA

2013-05-13 Thread Chuck Short
Blueprint changed by Chuck Short:

Whiteboard changed:
- [USER STORIES] 
+ [USER STORIES]
+ Andres is an Ubuntu Developer who wants the Ubuntu packaging to be a high 
quality at all times. He uses the Openstack CI to track possible problems with 
the Ubuntu packages and fixes them in a timely matter.
+ 
+ Roger is an user who wants to test the latest cutting edge upstream
+ changes. Roger installs the Openstack packages from the Openstack-CI ppa
+ and reports bugs upstream and in Ubuntu.
+ 
+ Sebastian is an Ubuntu Developer who wants to test package upgrades from 
Ubuntu 12.04 to the latest version. He writes a testcase to perform the upgrade 
and writes a pipeline to perform the tests at regular intervals.
+  
  [ASSUMPTIONS]
  [RISKS]
  [IN SCOPE]
  [OUT OF SCOPE]
  [USER ACCEPTANCE]
  [RELEASE NOTE/BLOG]

-- 
Openstack & Server QA
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-openstack-qa

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-openstack-qa] Openstack & Server QA

2013-05-13 Thread Chuck Short
Blueprint changed by Chuck Short:

Whiteboard changed:
  [USER STORIES]
  Andres is an Ubuntu Developer who wants the Ubuntu packaging to be a high 
quality at all times. He uses the Openstack CI to track possible problems with 
the Ubuntu packages and fixes them in a timely matter.
  
  Roger is an user who wants to test the latest cutting edge upstream
  changes. Roger installs the Openstack packages from the Openstack-CI ppa
  and reports bugs upstream and in Ubuntu.
  
- Sebastian is an Ubuntu Developer who wants to test package upgrades from 
Ubuntu 12.04 to the latest version. He writes a testcase to perform the upgrade 
and writes a pipeline to perform the tests at regular intervals.
-  
+ Sebastian is an Ubuntu Developer who wants to test package upgrades from
+ Ubuntu 12.04 to the latest version. He writes a testcase to perform the
+ upgrade and writes a pipeline to perform the tests at regular intervals.
+ 
  [ASSUMPTIONS]
+ Server QA lab will be virtualized using OpenStack supporting regular testing 
activities.
+ 
  [RISKS]
  [IN SCOPE]
  [OUT OF SCOPE]
  [USER ACCEPTANCE]
  [RELEASE NOTE/BLOG]

-- 
Openstack & Server QA
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-openstack-qa

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-server-app-banner-updates] Server Application Banner Updates

2013-05-13 Thread Chuck Short
Blueprint changed by Chuck Short:

Assignee: Chuck Short => Ubuntu Server Team

-- 
Server Application Banner Updates
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-server-app-banner-updates

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-s-openstack-qa] Openstack & Server QA

2013-05-13 Thread Chuck Short
Blueprint changed by Chuck Short:

Whiteboard changed:
  Add Xen, VMWare, IPV6, Landscape, Ceph, chaos monkey, and mayhem badger
  to CI testing.
  
  [USER STORIES]
  Andres is an Ubuntu Developer who wants the Ubuntu packaging to be a high 
quality at all times. He uses the Openstack CI to track possible problems with 
the Ubuntu packages and fixes them in a timely matter.
  
  Roger is an user who wants to test the latest cutting edge upstream
  changes. Roger installs the Openstack packages from the Openstack-CI ppa
  and reports bugs upstream and in Ubuntu.
  
  Sebastian is an Ubuntu Developer who wants to test package upgrades from
  Ubuntu 12.04 to the latest version. He writes a testcase to perform the
  upgrade and writes a pipeline to perform the tests at regular intervals.
  
  [ASSUMPTIONS]
  Server QA lab will be virtualized using OpenStack supporting regular testing 
activities.
  
  [RISKS]
+ Tests get deferred due to suitability to the test environment.
+ 
  [IN SCOPE]
  [OUT OF SCOPE]
+ 
  [USER ACCEPTANCE]
+ 
  [RELEASE NOTE/BLOG]

-- 
Openstack & Server QA
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-openstack-qa

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


  1   2   3   4   5   6   7   8   9   10   >