[Bug 1223176] Re: package rabbitmq-server 3.0.2-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1
[Expired for rabbitmq-server (Ubuntu) because there has been no activity for 60 days.] ** Changed in: rabbitmq-server (Ubuntu) Status: Incomplete => Expired -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to rabbitmq-server in Ubuntu. https://bugs.launchpad.net/bugs/1223176 Title: package rabbitmq-server 3.0.2-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/1223176/+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 1244694] Re: Creating snapshot fails due to nonexistent temporary directory
Dirk, I am not using ceph, I'm using shared NFS storage at /var/lib/nova/instances only. All the snapshots we do are of QCOW2 images. OpenStack by default converts all images to QCOW2 when you run an instance from them. We had QCOW snapshots working perfectly in Grizzly, it only stopped working in Havana. As a result of above, we can not create any snapshot so I don't know if we would have any problems to boot from them. We can boot properly from snapshots created before upgrade. -- 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/1244694 Title: Creating snapshot fails due to nonexistent temporary directory To manage notifications about this bug go to: https://bugs.launchpad.net/nova/+bug/1244694/+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 1249828] [NEW] runcmd does not run if cloud-config contains apt directives
Public bug reported: using AWS image ubuntu-raring-13.04-i386-server-20130615 (ami-05831335) using user-data script containing #cloud-config #cloud-config apt_update: true apt_upgrade: true packages: - runcmd: output: {all: '| tee -a /var/log/cloud-init-output.log'} I had this configuration running for several months without any problems. Now, the commands under runcmd do not run. There is nothing in the logs after package installation. narrowed down problem to this: if apt statements are removed, problem is fixed, scripts run again. So seems that package upgrade messes up execution of the scripts. ** Affects: cloud-init (Ubuntu) Importance: Undecided Status: New -- 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/1249828 Title: runcmd does not run if cloud-config contains apt directives To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1249828/+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 1244694] Re: Creating snapshot fails due to nonexistent temporary directory
Daniel Speichert (dasp) - were you using a ceph/RBD backend? Were you trying to snapshot a QCOW image? Try it with a RAW. Openstack has issues snapping QCOW (I think there's a cinder bug filed on this). I can create a snapshow of RAW images and create a volume from that snapshot. I can not, however, boot directly from the snap-shotted image. -- 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/1244694 Title: Creating snapshot fails due to nonexistent temporary directory To manage notifications about this bug go to: https://bugs.launchpad.net/nova/+bug/1244694/+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 685096] Re: USB Passthrough not working for Windows 7 guest
I have the same problem. I tried it with qemu 1.4 and the last 1.6.0-dfsg-2 on a debian testing system. Win 7 says always "This device cannot start. (Code 10)". I tried a lot of usb sticks but always the same... I hope there will be sometime a solution for this :( I wait over a year in the hope that this will work. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to qemu-kvm in Ubuntu. https://bugs.launchpad.net/bugs/685096 Title: USB Passthrough not working for Windows 7 guest To manage notifications about this bug go to: https://bugs.launchpad.net/qemu/+bug/685096/+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 1232469] Re: Apache coredump when started with dbd and php5 enabled
Thanks for the analysis. If I can help, please let me know. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to apache2 in Ubuntu. https://bugs.launchpad.net/bugs/1232469 Title: Apache coredump when started with dbd and php5 enabled To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1232469/+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 1247803] Re: dnsmasq temporarily breaks DNS resolution when starting for the first time
Hmm, good questions . /me thinks. The (small) gain is that we omit an unneeded update run prior to the update run that occurs shortly afterwards when the dnsmasq initscript calls resolvconf. When other things touch resolvconf the update run can't be omitted. We don't want to skip the update run when ENABLED=0 because in that case the initscript itself does not instigate an update run. If no update run is instigated either in the postinst or in the initscript, and the admin later sets ENABLED=1 and IGNORE_RESOLVCONF=no and does "/etc/init.d/dnsmasq start" and nothing else has instigated an update run in the meantime then dnsmasq starts with an out-of-date /var/run/dnsmasq/resolv.conf which is what we are trying to avoid. So when ENABLED=0 the update run must be done in the postinst even if IGNORE_RESOLVCONF is set. The code should thus look like this: # # If ENABLED=0 then the initscript does not call resolvconf, so we do an # update run here in order to ensure that /var/run/dnsmasq/resolv.conf # is up to date should dnsmasq later be started (with ENABLED=1). # # If ENABLED=1 then the initscript will call resolvconf and thus instigate an # update run, thus updating /var/run/dnsmasq/resolv.conf; but, unless # IGNORE_RESOLVCONF is "yes", we have to do an update run here so that # /var/run/dnsmasq/resolv.conf is valid before dnsmasq starts. # if [ "$ENABLED" = "0" ] || [ "$IGNORE_RESOLVCONF" != yes ] ; then resolvconf -u fi -- 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/1247803 Title: dnsmasq temporarily breaks DNS resolution when starting for the first time To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1247803/+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