[Bug 516738] Re: image store broken on Lucid

2011-11-30 Thread graziano obertelli
** Changed in: eucalyptus
   Status: Fix Committed = Fix Released

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

Title:
  image store broken on Lucid

To manage notifications about this bug go to:
https://bugs.launchpad.net/eucalyptus/+bug/516738/+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 516738] Re: image store broken on Lucid

2010-03-05 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-core-dev/eucalyptus/euca2ools

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-19 Thread Scott Moser
The patch applied here broke reading of user config file.

+   user_eucarc = None
+   if 'HOME' in os.environ:
+   os.path.join(os.getenv('HOME'), .eucarc)

should be:

+   user_eucarc = None
+   if 'HOME' in os.environ:
+   user_eucarc = os.path.join(os.getenv('HOME'), .eucarc)

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-11 Thread Dustin Kirkland
** Changed in: euca2ools (Ubuntu Lucid)
 Assignee: (unassigned) = Dustin Kirkland (kirkland)

** Changed in: euca2ools (Ubuntu Lucid)
   Status: New = In Progress

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-11 Thread Launchpad Bug Tracker
This bug was fixed in the package euca2ools - 1.2~bzr245-0ubuntu1

---
euca2ools (1.2~bzr245-0ubuntu1) lucid; urgency=low

  * Merge from upstream bzr revision; should fix:
- LP: #510982 - show kernel and ramdisk attributes
- LP: #516486 - fix attribute display
- LP: #516738 - fix ubuntu image store
 -- Dustin Kirkland kirkl...@ubuntu.com   Thu, 11 Feb 2010 15:35:07 -0600

** Branch linked: lp:~ubuntu-core-dev/eucalyptus/euca2ools

** Changed in: euca2ools (Ubuntu Lucid)
   Status: In Progress = Fix Released

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-11 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/euca2ools

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-03 Thread Dustin Kirkland
Screen shot attached.

** Attachment added: imagestore.png
   http://launchpadlibrarian.net/38718170/imagestore.png

** Also affects: image-store-proxy (Ubuntu Lucid)
   Importance: High
 Assignee: Jamu Kakar (jkakar)
   Status: Triaged

** Changed in: image-store-proxy (Ubuntu Lucid)
Milestone: None = lucid-alpha-3

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-03 Thread Scott Moser
please test this patch

** Attachment added: proposed patch
   http://launchpadlibrarian.net/38718306/bug516738.diff

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-03 Thread Jamu Kakar
The real problem is actually in euca2ools.  The issue is that it
assumes HOME will be defined in the environment and ends up running
os.path.join(HOME, ...) with HOME as None and then everything blows
up.  The 'NoneType' object has no attribute 'endswith' bubbles up
as a result of this.

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-03 Thread Jamu Kakar
I can't seem to adjust the status without OOPSing Launchpad.  This
bug should be marked 'Invalid'.

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-03 Thread Scott Moser
** Also affects: euca2ools (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: eucalyptus
   Importance: Undecided
   Status: New

** Changed in: euca2ools (Ubuntu Lucid)
   Importance: Undecided = High

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-03 Thread Scott Moser
This patch fixes the problem in euca2ools.  The issue is reproducible
by:

   sh -c 'unset HOME; euca-bundle-image'

** Changed in: image-store-proxy (Ubuntu Lucid)
   Status: Triaged = Invalid

** Changed in: euca2ools (Ubuntu Lucid)
Milestone: None = lucid-alpha-3

** Attachment removed: proposed patch
   http://launchpadlibrarian.net/38718306/bug516738.diff

** Attachment added: suggested patch
   http://launchpadlibrarian.net/38723425/bug516738.diff

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-03 Thread Neil Soman
Thanks for the patch. Applied to upstream (revno 245).

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-03 Thread Launchpad Bug Tracker
** Branch linked: lp:eucalyptus/euca2ools-1.0

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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 516738] Re: image store broken on Lucid

2010-02-03 Thread Neil Soman
** Changed in: eucalyptus
   Status: New = Fix Committed

-- 
image store broken on Lucid
https://bugs.launchpad.net/bugs/516738
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to image-store-proxy 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