[Bug 1369465] Re: [SRU] nova resize doesn't resize(extend) rbd disk files when using rbd disk backend

2016-08-15 Thread Edmund Rhudy
Jorge is reporting it on my behalf; the error occurs for me with
images_type=lvm. images_type=rbd is fine.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1369465

Title:
  [SRU] nova resize doesn't resize(extend) rbd disk files when using rbd
  disk backend

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1484740] Re: 14.04.2 LTS trousers version 0.3.11.2-1 fails to start

2016-06-08 Thread Edmund Rhudy
I had this problem and hacked around this grunchiness by unpacking the
package, rewriting the postinst script, and then configuring it:

https://github.com/bloomberg/chef-
bcpc/blob/master/cookbooks/bcpc/recipes/tpm.rb#L40-L50

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1484740

Title:
  14.04.2 LTS trousers version 0.3.11.2-1 fails to start

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1469260] Re: Custom vendor data causes cloud-init failure on 0.7.5

2015-07-23 Thread Edmund Rhudy
Screwed up the above script, it should be

from nova.api.metadata import base

class CustomVendordata(base.VendorDataDriver):
def __init__(self, *args, **kwargs):
super(CustomVendordata, self).__init__(*args, **kwargs)

def get(self):
return {msg: , uuid: 4996e2b67d2941818646481453de1efe, users: 
[{username: erhudy, sshPublicKeys: [], uuid: erhudy}], name: 
TestTenant}

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1469260

Title:
  Custom vendor data causes cloud-init failure on 0.7.5

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1469260] Re: Custom vendor data causes cloud-init failure on 0.7.5

2015-07-23 Thread Edmund Rhudy
Screwed up the above script, it should be

from nova.api.metadata import base

class CustomVendordata(base.VendorDataDriver):
def __init__(self, *args, **kwargs):
super(CustomVendordata, self).__init__(*args, **kwargs)

def get(self):
return {msg: , uuid: 4996e2b67d2941818646481453de1efe, users: 
[{username: erhudy, sshPublicKeys: [], uuid: erhudy}], name: 
TestTenant}

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

Title:
  Custom vendor data causes cloud-init failure on 0.7.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1469260/+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 1469260] Re: Custom vendor data causes cloud-init failure on 0.7.5

2015-07-23 Thread Edmund Rhudy
Changing the class to return a string rather than a dictionary avoids
the cloud-init explosion. That runs counter to all the documentation
that says use JSON, but it's the workaround we'll use for now
(serializing to YAML).

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

Title:
  Custom vendor data causes cloud-init failure on 0.7.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1469260/+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 1469260] Re: Custom vendor data causes cloud-init failure on 0.7.5

2015-07-23 Thread Edmund Rhudy
Changing the class to return a string rather than a dictionary avoids
the cloud-init explosion. That runs counter to all the documentation
that says use JSON, but it's the workaround we'll use for now
(serializing to YAML).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1469260

Title:
  Custom vendor data causes cloud-init failure on 0.7.5

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1469260] Re: Custom vendor data causes cloud-init failure on 0.7.5

2015-07-22 Thread Edmund Rhudy
Just doing something simple like

data = str(util.decomp_gzip(raw_data))

causes it to work, because data's now a string and hashable and so the
range data[0:4096] works (whether the content is actually what it's
supposed to be is another question).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1469260

Title:
  Custom vendor data causes cloud-init failure on 0.7.5

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1469260] Re: Custom vendor data causes cloud-init failure on 0.7.5

2015-07-22 Thread Edmund Rhudy
Just doing something simple like

data = str(util.decomp_gzip(raw_data))

causes it to work, because data's now a string and hashable and so the
range data[0:4096] works (whether the content is actually what it's
supposed to be is another question).

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

Title:
  Custom vendor data causes cloud-init failure on 0.7.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1469260/+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 1469260] Re: Custom vendor data causes cloud-init failure on 0.7.5

2015-07-22 Thread Edmund Rhudy
I can reliably reproduce this issue via the following steps:

1) Create blah.py under nova/api/metadata/ with these contents:

from nova.api.metadata import base

class CustomVendordata(base.VendorDataDriver):
def __init__(self, *args, **kwargs):
super(BcpcMetadata, self).__init__(*args, **kwargs)

def get(self):
return {msg: , uuid: 4996e2b67d2941818646481453de1efe, users: 
[{username: erhudy, sshPublicKeys: [], uuid: erhudy}], name: 
TestTenant}

2) Configure Nova to use that class as the vendordata_driver in
nova.conf:

[DEFAULT]
vendordata_driver = nova.api.metadata.blah.CustomVendordata

3) Restart nova-api.

4) Launch an Ubuntu cloud instance on that hypervisor.

5) Experience cloud-init fury:

2015-07-22 15:30:56,075 - util.py[WARNING]: Running ssh-authkey-fingerprints 
(module 'cloudinit.config.cc_ssh_authkey_fingerprints' from 
'/usr/lib/python2.7/dist-packages/cloudinit/config/cc_ssh_authkey_fingerprints.pyc')
 failed
ec2: 
ec2: #
ec2: -BEGIN SSH HOST KEY FINGERPRINTS-
ec2: -END SSH HOST KEY FINGERPRINTS-
ec2: #
-BEGIN SSH HOST KEY KEYS-
-END SSH HOST KEY KEYS-

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1469260

Title:
  Custom vendor data causes cloud-init failure on 0.7.5

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1469260] Re: Custom vendor data causes cloud-init failure on 0.7.5

2015-07-22 Thread Edmund Rhudy
I can reliably reproduce this issue via the following steps:

1) Create blah.py under nova/api/metadata/ with these contents:

from nova.api.metadata import base

class CustomVendordata(base.VendorDataDriver):
def __init__(self, *args, **kwargs):
super(BcpcMetadata, self).__init__(*args, **kwargs)

def get(self):
return {msg: , uuid: 4996e2b67d2941818646481453de1efe, users: 
[{username: erhudy, sshPublicKeys: [], uuid: erhudy}], name: 
TestTenant}

2) Configure Nova to use that class as the vendordata_driver in
nova.conf:

[DEFAULT]
vendordata_driver = nova.api.metadata.blah.CustomVendordata

3) Restart nova-api.

4) Launch an Ubuntu cloud instance on that hypervisor.

5) Experience cloud-init fury:

2015-07-22 15:30:56,075 - util.py[WARNING]: Running ssh-authkey-fingerprints 
(module 'cloudinit.config.cc_ssh_authkey_fingerprints' from 
'/usr/lib/python2.7/dist-packages/cloudinit/config/cc_ssh_authkey_fingerprints.pyc')
 failed
ec2: 
ec2: #
ec2: -BEGIN SSH HOST KEY FINGERPRINTS-
ec2: -END SSH HOST KEY FINGERPRINTS-
ec2: #
-BEGIN SSH HOST KEY KEYS-
-END SSH HOST KEY KEYS-

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

Title:
  Custom vendor data causes cloud-init failure on 0.7.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1469260/+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 355727] Re: audio staticky, does not play through ext spkr, headphone port does not work correctly

2009-04-08 Thread Edmund Rhudy
Upgrading to pulseaudio 1:0.9.14-0ubuntu20 appears to have resolved the
issue of static on the headphones.  The external speaker still does not
work correctly, but I will file a separate bug report as requested for
that.

-- 
audio staticky, does not play through ext spkr, headphone port does not work 
correctly
https://bugs.launchpad.net/bugs/355727
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 358166] [NEW] external speaker does not work for audio playback

2009-04-08 Thread Edmund Rhudy
Public bug reported:

Binary package hint: pulseaudio

This bug is a carryover from #355727, regarding Ubuntu 9.04.  The
relevant version of pulseaudio is 1:0.9.14-0ubuntu20.  I have re-run the
alsa-info.sh script; the output is available at http://www.alsa-
project.org/db/?f=aba8784b3860486e8b1dfc459d386a11d735d4cf

Audio playback originally worked fine in 8.10, then became corrupted in
9.04; the external speaker did not work at all and the headphone jack
played back very staticky audio.  The most recent set of pulseaudio
packages appears to have resolved the headphone issues, but there is
still no audio from the external speaker.

ProblemType: Bug
Amixer.0.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfe938000 irq 16'
   Mixer name   : 'IDT 92HD75B2X5'
   Components   : 'HDA:111d7608,103c361a,00100102'
   Controls  : 27
   Simple ctrls  : 17
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
   Subdevices: 2/2
   Subdevice #0: subdevice #0
   Subdevice #1: subdevice #1
DistroRelease: Ubuntu 9.04
Package: pulseaudio 1:0.9.14-0ubuntu20
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: pulseaudio
Uname: Linux 2.6.28-11-generic i686

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


** Tags: apport-bug i386

-- 
external speaker does not work for audio playback
https://bugs.launchpad.net/bugs/358166
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 358166] Re: external speaker does not work for audio playback

2009-04-08 Thread Edmund Rhudy

** Attachment added: AlsaDevices.txt
   http://launchpadlibrarian.net/25091452/AlsaDevices.txt

** Attachment added: Amixer.0.values.txt
   http://launchpadlibrarian.net/25091453/Amixer.0.values.txt

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/25091454/Dependencies.txt

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/25091455/PciMultimedia.txt

-- 
external speaker does not work for audio playback
https://bugs.launchpad.net/bugs/358166
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 355727] [NEW] audio staticky, does not play through ext spkr, headphone port does not work correctly

2009-04-05 Thread Edmund Rhudy
Public bug reported:

Binary package hint: pulseaudio

After upgrading from 8.10 to 9.04 beta, audio ceased to function
correctly.  The external speaker on the computer (HP Mini 1030NR) no
longer plays any audio.  The headphone port will play audio briefly,
then switch to loud static and crackles.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
Package: pulseaudio 1:0.9.14-0ubuntu16
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: pulseaudio
Uname: Linux 2.6.28-11-generic i686

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


** Tags: apport-bug i386

-- 
audio staticky, does not play through ext spkr, headphone port does not work 
correctly
https://bugs.launchpad.net/bugs/355727
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 355727] Re: audio staticky, does not play through ext spkr, headphone port does not work correctly

2009-04-05 Thread Edmund Rhudy

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/24838716/Dependencies.txt

-- 
audio staticky, does not play through ext spkr, headphone port does not work 
correctly
https://bugs.launchpad.net/bugs/355727
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 355727] Re: audio staticky, does not play through ext spkr, headphone port does not work correctly

2009-04-05 Thread Edmund Rhudy

** Attachment added: alsa-info output.txt
   http://launchpadlibrarian.net/24843050/alsa-info%20output.txt

-- 
audio staticky, does not play through ext spkr, headphone port does not work 
correctly
https://bugs.launchpad.net/bugs/355727
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 336125] [NEW] Broken audio playback with Intel 82801G on 9.04

2009-02-28 Thread Edmund Rhudy
Public bug reported:

This specific problem is occurring on an HP Mini 1030NR and may be
related to bugs #244754 and #229522 in some way.  Audio playback was
fine under the original Windows install and a standard install of 8.10
(though in 8.10 the volume meter was skewed such that 0% to 80% produced
almost no change and 80% to 100% was the only useful part of the volume
meter).  Audio playback under 9.04 does not function at all through the
external speaker, except to produce a loud hissing sound when the
computer is restarted.  When plugging headphones into the headphone
jack, audio can be heard, except it is accompanied by heavy crackling
and popping that begins approximately 1-2 seconds after plugging
headphones into the jack.  Additionally, when plugging headphones in,
crackling and popping can be heard from the external speaker briefly.

lspci -vv output:

00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition 
Audio Controller (rev 02)
Subsystem: Hewlett-Packard Company Device 361a
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Interrupt: pin A routed to IRQ 16
Region 0: Memory at fe938000 (64-bit, non-prefetchable) [size=16K]
Capabilities: [50] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA 
PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [60] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 
Enable-
Address:   Data: 
Capabilities: [70] Express (v1) Root Complex Integrated Endpoint, MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s 64ns, 
L1 1us
ExtTag- RBE- FLReset-
DevCtl: Report errors: Correctable- Non-Fatal- Fatal- 
Unsupported-
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ 
TransPend-
LnkCap: Port #0, Speed unknown, Width x0, ASPM unknown, Latency 
L0 64ns, L1 1us
ClockPM- Suprise- LLActRep- BwNot-
LnkCtl: ASPM Disabled; Disabled- Retrain- CommClk-
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed unknown, Width x0, TrErr- Train- SlotClk- 
DLActive- BWMgmt- ABWMgmt-
Capabilities: [100] Virtual Channel ?
Capabilities: [130] Root Complex Link ?
Kernel driver in use: HDA Intel
Kernel modules: snd-hda-intel

The system and PulseAudio do not appear to print any error messages
regarding audio (though PulseAudio prints a message stating warning:
'pulseaudio' uses 32-bit capabilities (legacy support in use)).

This system is not used for anything important, so I am happy to test
any potential solutions for the issue.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Broken audio playback with Intel 82801G on 9.04
https://bugs.launchpad.net/bugs/336125
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 57972] Re: mdrun fails if large disk present, thus boot fails.

2006-12-12 Thread Edmund Rhudy
This is a duplicate of #53510, which itself is a duplicate of #25093.  I
encountered the same bug today myself, and it is slightly irksome that
no official fix yet exists for 6.06.  Perhaps it can be incorporated
into a future service release for LTS (6.06.2)?

-- 
mdrun fails if large disk present, thus boot fails.
https://launchpad.net/bugs/57972

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs