[Bug 1160372] Re: Login is not possible
Same here :( -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to vsftpd in Ubuntu. https://bugs.launchpad.net/bugs/1160372 Title: Login is not possible To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/1160372/+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 1172091] Re: KVM guests with bridged network drops out intermittently
I may have done this wrong and also I still have the issue. Grabbed the latest snapshot from debians git repo: http://anonscm.debian.org/gitweb/?p=collab-maint/qemu- kvm.git;a=commit;h=b8b4244c0d84cc7904de7ffdc8a01ed70356922a Installed build dependencies: $ sudo apt-get build-dep qemu Configured using the configuration from the Ubuntu package: $ ./configure '--target-list=x86_64-softmmu i386-softmmu x86_64-linux- user i386-linux-user' '--prefix=/usr' '--with-confsuffix=/qemu' '-- datadir=/usr/share' '--sysconfdir=/etc' '--libexecdir=/usr/lib' '--extra-cflags=-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall' '--extra- ldflags=-Wl,-Bsymbolic-functions -Wl,-z,relro' '--disable-strip' '--disable-xen' '--disable-guest-agent' '--audio-drv- list=pa,alsa,sdl,oss' '--enable-docs' '--audio-card-list=ac97 es1370 sb16 cs4231a adlib gus hda' '--enable-attr' '--enable-bluez' '--enable- brlapi' '--enable-curl' '--enable-curses' '--disable-libiscsi' '--enable-linux-aio' '--disable-opengl' '--enable-rbd' '--enable-sdl' '--disable-smartcard-nss' '--disable-smartcard' '--enable-uuid' '--disable-usb-redir' '--enable-vhost-net' '--enable-virtfs' '--enable- vnc' '--enable-vnc-jpeg' '--enable-vnc-png' '--enable-vnc-sasl' '--enable-vnc-tls' '--enable-xfsctl' '--enable-kvm' '--disable-blobs' $ make $ sudo make install I then started the guest and had the same issue. I rebooted the host and started the quest again, still the same issue. -- 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/1172091 Title: KVM guests with bridged network drops out intermittently To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1172091/+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 334374] Re: libnss-ldap should not depend on libpam-ldap
I think Thierry's solution in comment #10 is the way to go. It's appropriate for ldap-auth-client to depend on libpam-ldap, because that's the intent of the metapackage. But ldap-auth-config provides /etc/ldap.conf, which you need whether or not you're using LDAP for authentication. (That package would be better named "ldap-config".) I see that libnss-ldap now recommends ldap-auth-config instead of hard- depending on it. But this is not useful, because without /etc/ldap.conf, you have no working LDAP setup. (Robie Basak made this change recently; I've subscribed him to this bug.) I think that this particular hard dependency was correct, in fact---unless you manually create a new /etc/ldap.conf from scratch, I see no reason why you would want to install libnss-ldap without ldap-auth-config (dependencies of the latter aside). [tl;dr] IMO, the solution is * ldap-auth-config Recommends ldap-auth-client * libnss-ldap Depends-on ldap-auth-config -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to libnss-ldap in Ubuntu. https://bugs.launchpad.net/bugs/334374 Title: libnss-ldap should not depend on libpam-ldap To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ldap-auth-client/+bug/334374/+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 334374] Re: libnss-ldap should not depend on libpam-ldap
** Also affects: ldap-auth-client (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to libnss-ldap in Ubuntu. https://bugs.launchpad.net/bugs/334374 Title: libnss-ldap should not depend on libpam-ldap To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ldap-auth-client/+bug/334374/+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
Using a variation of a test case for the same bug found at http://redes- privadas-virtuales.blogspot.com/2013/02/paramiko-object-with-process- rng-must.html. Looks like this is actually still in issue using the patched package in raring python-paramiko 1.7.7.1-3.1, and the similarly patched package in precise-proposed doesn't fix the issue either. Test case: import paramiko from multiprocessing import Process class B(): def __init__(self): self.__process = None self.__ssh = paramiko.SSHClient() self.__ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) self.__ssh.connect('somelocalsystem', username='adam', password='xx') def start(self): self.__process = Process(target=self.__run_process) self.__process.start() def __run_process(self): _, stdout, _ = self.__ssh.exec_command("hostname") b = B() b.start() Results in a exception on both /w both raring and precise-proposed packages: File "/usr/lib/python2.7/dist-packages/Crypto/Random/_UserFriendlyRNG.py", line 138, in _check_pid raise AssertionError("PID check failed. RNG must be re-initialized after fork(). Hint: Try Random.atfork()") AssertionError: PID check failed. RNG must be re-initialized after fork(). Hint: Try Random.atfork() Exception in thread Thread-1 (most likely raised during interpreter shutdown): Traceback (most recent call last): File "/usr/lib/python2.7/threading.py", line 552, in __bootstrap_inner File "/usr/lib/python2.7/dist-packages/paramiko/transport.py", line 1578, in run : 'NoneType' object has no attribute 'error' -- 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
@ Chuck Can you please post a better test case? I'm trying to reproduce and verify the fix but I haven't been able to trigger the issue. I've followed your test case, and even gone as far as setting up remote access to another system for cinder to create an SSH connection, but haven't been able to trigger this on precise using cinder-volume 2012.2.1-0ubuntu1.1~cloud (UCA) and python-paramiko 1.7.7.1-2 (from 12.04 archive). Also you mention this affects cinder 2012.1 (Essex) but cinder didn't exist until 2012.2 (Folsom). Thanks -- 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 1160372] Re: Login is not possible
Me too, 13.04 upgrade has caused vsftp to stop working with precisely the same symptoms: auth.log: Apr 26 10:36:29 ftpserv vsftpd: PAM audit_log_acct_message() failed: Operation not permitted -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to vsftpd in Ubuntu. https://bugs.launchpad.net/bugs/1160372 Title: Login is not possible To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/1160372/+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 1047040] Re: kvm crashed on precise - memory corruption
@serge-hallyn Sorry for the late respond. The image file is provided by internal colleague in my company. I am not sure if it is suitable to provide it to others other than the one in our company. However, it seems behaves differently on different hardware configuration. The VM was crashed always on some 1U or 2U server. But it seems work fine in my personal desktop. -- 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/1047040 Title: kvm crashed on precise - memory corruption To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1047040/+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 1172981] Re: clamav 0.97.8 security update
** Also affects: clamav (Ubuntu Raring) Importance: Undecided Status: New ** Also affects: clamav (Ubuntu Quantal) Importance: Undecided Status: New ** Also affects: clamav (Ubuntu Precise) Importance: Undecided Status: New ** Also affects: clamav (Ubuntu Oneiric) Importance: Undecided Status: New ** Also affects: clamav (Ubuntu Lucid) Importance: Undecided Status: New ** Also affects: clamav (Ubuntu Hardy) Importance: Undecided Status: New ** Also affects: clamav (Ubuntu Saucy) Importance: Undecided Status: New ** Changed in: clamav (Ubuntu Hardy) Assignee: (unassigned) => Scott Kitterman (kitterman) -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to clamav in Ubuntu. https://bugs.launchpad.net/bugs/1172981 Title: clamav 0.97.8 security update To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/1172981/+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 1172336] Re: MAAS server reference to AvahiBoot wiki page that does not exist
** Changed in: maas Status: New => Triaged ** Changed in: maas Importance: Undecided => High -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1172336 Title: MAAS server reference to AvahiBoot wiki page that does not exist To manage notifications about this bug go to: https://bugs.launchpad.net/maas/+bug/1172336/+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 1172981] [NEW] clamav 0.97.8 security update
*** This bug is a security vulnerability *** Public security bug reported: ClamAV has released 0.97.8 to address several security issues: http://blog.clamav.net/2013/04/clamav-0978-has-been-released.html CVEs are not currently assigned. ** Affects: clamav (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to clamav in Ubuntu. https://bugs.launchpad.net/bugs/1172981 Title: clamav 0.97.8 security update To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/1172981/+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
** Branch linked: lp:~gandelman-a/ubuntu/quantal/cinder/2012.2.4 -- 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 1060238] Re: unmatched entries for sshd
I have a similar problem for other sshd authentication methods. **Unmatched Entries** pam_krb5(sshd:auth): user [CENSORED] authenticated as [CENSORED] : 3 time(s) pam_ldap(sshd:auth): Authentication failure; user=[CENSORED] : 3 time(s) pam_krb5(sshd:auth): authentication failure; logname=[CENSORED] uid=0 euid=0 tty=ssh ruser= rhost=[CENSORED] : 1 time(s) -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to logwatch in Ubuntu. https://bugs.launchpad.net/bugs/1060238 Title: unmatched entries for sshd To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/logwatch/+bug/1060238/+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 1060238] Re: unmatched entries for sshd
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: logwatch (Ubuntu) Status: New => Confirmed -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to logwatch in Ubuntu. https://bugs.launchpad.net/bugs/1060238 Title: unmatched entries for sshd To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/logwatch/+bug/1060238/+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 1172900] [NEW] maas-region-controller post-installation with error status 10
Public bug reported: Description:Ubuntu 13.04 Release:13.04 sudo apt-get install -f Reading package lists... Done Building dependency tree Reading state information... Done 0 upgraded, 0 newly installed, 0 to remove and 55 not upgraded. 3 not fully installed or removed. After this operation, 0 B of additional disk space will be used. Setting up maas-region-controller (1.3+bzr1461+dfsg-0ubuntu2) ... dpkg: error processing maas-region-controller (--configure): subprocess installed post-installation script returned error exit status 10 No apport report written because MaxReports is reached already dpkg: dependency problems prevent configuration of maas: maas depends on maas-region-controller; however: Package maas-region-controller is not configured yet. dpkg: error processing maas (--configure): dependency problems - leaving unconfigured dpkg: dependency problems prevent configuration of maas-dns: maas-dns depends on maas-region-controller (= 1.3+bzr1461+dfsg-0ubuntu2); however: Package maas-region-controller is not configured yet. dpkg: error processing maas-dns (--configure): dependency problems - leaving unconfigured No apport report written because MaxReports is reached already No apport report written because MaxReports is reached already Errors were encountered while processing: maas-region-controller maas maas-dns E: Sub-process /usr/bin/dpkg returned an error code (1) ** Affects: maas (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1172900 Title: maas-region-controller post-installation with error status 10 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1172900/+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 1160372] Re: Login is not possible
I am also affected by this bug after upgrading to 13.04 :( -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to vsftpd in Ubuntu. https://bugs.launchpad.net/bugs/1160372 Title: Login is not possible To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/1160372/+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 1172742] Re: maas datasource fails if no user-data
** Branch linked: lp:cloud-init -- 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/1172742 Title: maas datasource fails if no user-data To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-init/+bug/1172742/+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 1029430] Re: KVM guests networking issues with no virbr0 and with vhost_net kernel modules loaded
This bug was fixed in the package nova - 2012.2.3-0ubuntu2 --- nova (2012.2.3-0ubuntu2) quantal-proposed; urgency=low * Re-sync with latest security updates. * SECURITY UPDATE: fix denial of service via fixed IPs when using extensions - debian/patches/CVE-2013-1838.patch: add explicit quota for fixed IP - CVE-2013-1838 * SECURITY UPDATE: fix VNC token validation - debian/patches/CVE-2013-0335.patch: force console auth service to flush all tokens associated with an instance when it is deleted - CVE-2013-0335 * SECURITY UPDATE: fix denial of service - CVE-2013-1664.patch: Add a new utils.safe_minidom_parse_string function and update external API facing Nova modules to use it - CVE-2013-1664 -- James PageFri, 22 Mar 2013 12:40:07 + ** Changed in: nova (Ubuntu Quantal) Status: Fix Committed => Fix Released ** CVE added: http://www.cve.mitre.org/cgi- bin/cvename.cgi?name=2013-0335 ** CVE added: http://www.cve.mitre.org/cgi- bin/cvename.cgi?name=2013-1664 ** CVE added: http://www.cve.mitre.org/cgi- bin/cvename.cgi?name=2013-1838 -- 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/1029430 Title: KVM guests networking issues with no virbr0 and with vhost_net kernel modules loaded To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1029430/+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 1055929] Re: Can not display usage data for Quota Summary
This bug was fixed in the package horizon - 2012.2.3-0ubuntu1 --- horizon (2012.2.3-0ubuntu1) quantal-proposed; urgency=low * Resynchronize with stable/folsom (f421145b) (LP: #1116671): - [20fa0fc] EC2 panel shouldn't be visible when the EC2 service isn't enabled LP: 1102411 - [0b1c553] Server error pages are broken LP: 1067206 - [476072d] login not possible if not service "volume" defined on keystone LP: 1084137 - [ebc5e6d] Quota tally not handling unlimited values correctly LP: 1084976 - [e19a218] Unable to set unlimited quotas in Horizon LP: 1082489 - [2f959c6] The css class td.actions_column's width is not enough LP: 1081875 - [817d628] Revert "Temp fix for api/keystone.py" - [9060885] Can not display usage data for Quota Summary (LP: #1055929) * debian/static/openstack-dashboard: Recompress static JS and CSS based on changes applied upstream in stable/folsom. -- Adam GandelmanTue, 05 Feb 2013 14:06:12 -0400 ** Changed in: horizon (Ubuntu Quantal) Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to horizon in Ubuntu. https://bugs.launchpad.net/bugs/1055929 Title: Can not display usage data for Quota Summary To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1055929/+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 1055929] Update Released
The verification of this Stable Release Update has completed successfully and the package has now been released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you encounter a regression using the package from -updates please report a new bug using ubuntu-bug and tag the bug report regression-update so we can easily find any regresssions. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to horizon in Ubuntu. https://bugs.launchpad.net/bugs/1055929 Title: Can not display usage data for Quota Summary To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1055929/+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 1097451] Re: quantum-plugin-nicira miss a dependency
This bug was fixed in the package quantum - 2012.2.3-0ubuntu2 --- quantum (2012.2.3-0ubuntu2) quantal-proposed; urgency=low * debian/quantum-common.install: Install the quantum-ovs-cleanup script that was backported to stable/folsom (LP: #1116671). quantum (2012.2.3-0ubuntu1) quantal-proposed; urgency=low * Resynchronize with stable/folsom (d2a85e65) (LP: #1116671): - [a84ba7e] Quantum port update invokes invalid method LP: 1109001 - [b56c2c9] Linuxbridge plugin: when admin status is set to False, port status is still ACTIVE LP: 1099065 - [fe0ae7a] OVS cleanup utility does not use the correct root_helper LP: 1105193 - [1a24b68] quantum server does not honor default_notification_level LP: 1089773 - [24244c1] Gateway validation on subnet LP: 1096532 - [2730e47] tenant cannot set his router's gateway port on an external network owned by other tenant LP: 1087243 - [4c9326a] Invalid output when deleting a subnet with a port attached LP: 1093754 - [9f1bf8d] quantum-plugin-nicira miss a dependency (LP: #1097451) - [579727a] ipallocationpools remains after subnet deletion LP: 1091946 - [5f8dd88] Printing a list of networks terminates with exception LP: 1093637 - [9c3812f] Update router gateway successful with existed floatingip association LP: 1081877 - [5df31af] quantum-dhcp-agent should pass --conf-file with no argument to dnsmasq when no configure file specified instead not pass --conf-file at all LP: 1094183 - [88261ce] the local vairable physical_network should be alloc.physical_network LP: 1091664 - [43ece8f] Internal interfaces defined via OVS are not brought up properly after a reboot LP: 1091605 - [a587abc] no check prevents deletion of router interface needed by a floating ip LP: 1081325 - [d973a35] Pin pep8 to v1.3.3. - [19b5904] DHCP agent does not listen on a unique queue LP: 1084621 - [0e05ddd] dhcp.filters needs ovs_vsctl permission LP: 1090072 - [16e128c] Bump next version to 2012.2.3 - [30572ac] Quantum-l3-agent leaves multiple NAT rules for same floating IP LP: 1083990 - [01ea272] delete router fails with internal sever error when floatingip association remains LP: 1080638 - [8017d09] Fix rpc control_exchange regression. * debian/patches/fix-ubuntu-tests.patch: Refreshed, added skipTests for linuxbridge tests that attempt to setup udev monitors. -- Adam GandelmanFri, 01 Mar 2013 11:12:34 -0800 ** Changed in: quantum (Ubuntu Quantal) Status: Fix Committed => 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/1097451 Title: quantum-plugin-nicira miss a dependency To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1097451/+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 1116671] Re: Meta bug for tracking Openstack 2012.2.3 Stable Update
This bug was fixed in the package cinder - 2012.2.3-0ubuntu2 --- cinder (2012.2.3-0ubuntu2) quantal-proposed; urgency=low * Re-sync with latest security updates. * SECURITY UPDATE: fix denial of service - CVE-2013-1664.patch: Add a new utils.safe_minidom_parse_string function and update external API facing Cinder modules to use it - CVE-2013-1664 -- James PageFri, 22 Mar 2013 11:43:38 + -- 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/1116671 Title: Meta bug for tracking Openstack 2012.2.3 Stable Update To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Re: Meta bug for tracking Openstack 2012.2.3 Stable Update
This bug was fixed in the package keystone - 2012.2.3+stable-20130206-82c87e56-0ubuntu2 --- keystone (2012.2.3+stable-20130206-82c87e56-0ubuntu2) quantal-proposed; urgency=low * Resync with latest security updates. * SECURITY UPDATE: fix PKI revocation bypass - debian/patches/CVE-2013-1865.patch: validate tokens from the backend - CVE-2013-1865 * SECURITY UPDATE: fix EC2-style authentication for disabled users - debian/patches/CVE-2013-0282.patch: adjust keystone/contrib/ec2/core.py to ensure user and tenant are enabled in EC2 - CVE-2013-0282 * SECURITY UPDATE: fix denial of service - debian/patches/CVE-2013-1664+1665.patch: disable XML entity parsing - CVE-2013-1664 - CVE-2013-1665 -- James PageFri, 22 Mar 2013 12:02:56 + ** Changed in: cinder (Ubuntu Quantal) 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/1116671 Title: Meta bug for tracking Openstack 2012.2.3 Stable Update To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Re: Meta bug for tracking Openstack 2012.2.3 Stable Update
This bug was fixed in the package nova - 2012.2.3-0ubuntu2 --- nova (2012.2.3-0ubuntu2) quantal-proposed; urgency=low * Re-sync with latest security updates. * SECURITY UPDATE: fix denial of service via fixed IPs when using extensions - debian/patches/CVE-2013-1838.patch: add explicit quota for fixed IP - CVE-2013-1838 * SECURITY UPDATE: fix VNC token validation - debian/patches/CVE-2013-0335.patch: force console auth service to flush all tokens associated with an instance when it is deleted - CVE-2013-0335 * SECURITY UPDATE: fix denial of service - CVE-2013-1664.patch: Add a new utils.safe_minidom_parse_string function and update external API facing Nova modules to use it - CVE-2013-1664 -- James PageFri, 22 Mar 2013 12:40:07 + ** Changed in: keystone (Ubuntu Quantal) Status: Fix Committed => Fix Released ** CVE added: http://www.cve.mitre.org/cgi- bin/cvename.cgi?name=2013-0282 ** CVE added: http://www.cve.mitre.org/cgi- bin/cvename.cgi?name=2013-1665 ** CVE added: http://www.cve.mitre.org/cgi- bin/cvename.cgi?name=2013-1865 -- 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/1116671 Title: Meta bug for tracking Openstack 2012.2.3 Stable Update To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Re: Meta bug for tracking Openstack 2012.2.3 Stable Update
This bug was fixed in the package quantum - 2012.2.3-0ubuntu2 --- quantum (2012.2.3-0ubuntu2) quantal-proposed; urgency=low * debian/quantum-common.install: Install the quantum-ovs-cleanup script that was backported to stable/folsom (LP: #1116671). quantum (2012.2.3-0ubuntu1) quantal-proposed; urgency=low * Resynchronize with stable/folsom (d2a85e65) (LP: #1116671): - [a84ba7e] Quantum port update invokes invalid method LP: 1109001 - [b56c2c9] Linuxbridge plugin: when admin status is set to False, port status is still ACTIVE LP: 1099065 - [fe0ae7a] OVS cleanup utility does not use the correct root_helper LP: 1105193 - [1a24b68] quantum server does not honor default_notification_level LP: 1089773 - [24244c1] Gateway validation on subnet LP: 1096532 - [2730e47] tenant cannot set his router's gateway port on an external network owned by other tenant LP: 1087243 - [4c9326a] Invalid output when deleting a subnet with a port attached LP: 1093754 - [9f1bf8d] quantum-plugin-nicira miss a dependency (LP: #1097451) - [579727a] ipallocationpools remains after subnet deletion LP: 1091946 - [5f8dd88] Printing a list of networks terminates with exception LP: 1093637 - [9c3812f] Update router gateway successful with existed floatingip association LP: 1081877 - [5df31af] quantum-dhcp-agent should pass --conf-file with no argument to dnsmasq when no configure file specified instead not pass --conf-file at all LP: 1094183 - [88261ce] the local vairable physical_network should be alloc.physical_network LP: 1091664 - [43ece8f] Internal interfaces defined via OVS are not brought up properly after a reboot LP: 1091605 - [a587abc] no check prevents deletion of router interface needed by a floating ip LP: 1081325 - [d973a35] Pin pep8 to v1.3.3. - [19b5904] DHCP agent does not listen on a unique queue LP: 1084621 - [0e05ddd] dhcp.filters needs ovs_vsctl permission LP: 1090072 - [16e128c] Bump next version to 2012.2.3 - [30572ac] Quantum-l3-agent leaves multiple NAT rules for same floating IP LP: 1083990 - [01ea272] delete router fails with internal sever error when floatingip association remains LP: 1080638 - [8017d09] Fix rpc control_exchange regression. * debian/patches/fix-ubuntu-tests.patch: Refreshed, added skipTests for linuxbridge tests that attempt to setup udev monitors. -- Adam GandelmanFri, 01 Mar 2013 11:12:34 -0800 ** Changed in: nova (Ubuntu Quantal) Status: Fix Committed => Fix Released ** CVE added: http://www.cve.mitre.org/cgi- bin/cvename.cgi?name=2013-0335 ** CVE added: http://www.cve.mitre.org/cgi- bin/cvename.cgi?name=2013-1664 ** CVE added: http://www.cve.mitre.org/cgi- bin/cvename.cgi?name=2013-1838 -- 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/1116671 Title: Meta bug for tracking Openstack 2012.2.3 Stable Update To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Re: Meta bug for tracking Openstack 2012.2.3 Stable Update
This bug was fixed in the package glance - 2012.2.3-0ubuntu2 --- glance (2012.2.3-0ubuntu2) quantal-proposed; urgency=low * Resync with latest security update. * SECURITY UPDATE: fix information disclosure via Glance v1 API - debian/patches/CVE-2013-1840.patch: adjust api/middleware/cache.py to not show image_meta['location'] - CVE-2013-1840 -- James PageFri, 22 Mar 2013 11:48:52 + ** Changed in: quantum (Ubuntu Quantal) 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/1116671 Title: Meta bug for tracking Openstack 2012.2.3 Stable Update To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Re: Meta bug for tracking Openstack 2012.2.3 Stable Update
This bug was fixed in the package horizon - 2012.2.3-0ubuntu1 --- horizon (2012.2.3-0ubuntu1) quantal-proposed; urgency=low * Resynchronize with stable/folsom (f421145b) (LP: #1116671): - [20fa0fc] EC2 panel shouldn't be visible when the EC2 service isn't enabled LP: 1102411 - [0b1c553] Server error pages are broken LP: 1067206 - [476072d] login not possible if not service "volume" defined on keystone LP: 1084137 - [ebc5e6d] Quota tally not handling unlimited values correctly LP: 1084976 - [e19a218] Unable to set unlimited quotas in Horizon LP: 1082489 - [2f959c6] The css class td.actions_column's width is not enough LP: 1081875 - [817d628] Revert "Temp fix for api/keystone.py" - [9060885] Can not display usage data for Quota Summary (LP: #1055929) * debian/static/openstack-dashboard: Recompress static JS and CSS based on changes applied upstream in stable/folsom. -- Adam GandelmanTue, 05 Feb 2013 14:06:12 -0400 ** Changed in: horizon (Ubuntu Quantal) Status: Fix Committed => Fix Released ** Changed in: glance (Ubuntu Quantal) Status: Fix Committed => Fix Released ** CVE added: http://www.cve.mitre.org/cgi- bin/cvename.cgi?name=2013-1840 -- 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/1116671 Title: Meta bug for tracking Openstack 2012.2.3 Stable Update To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Update Released
The verification of this Stable Release Update has completed successfully and the package has now been released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you encounter a regression using the package from -updates please report a new bug using ubuntu-bug and tag the bug report regression-update so we can easily find any regresssions. -- 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/1116671 Title: Meta bug for tracking Openstack 2012.2.3 Stable Update To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1171988] Re: MAAS fails to use virsh when managing virtual nodes
** Description changed: [Impact] MAAS fails to start/stop virtual nodes when using virsh. This is because MAAS lacks permissions to run virsh. [Solution] The solution is to run virsh with sudo, as well as allowing the 'maas' user to run 'virsh' in the sudoers file. [Test Case] To reproduce do the following: 1. install MAAS and configure local KVM nodes with it. 2. Confiugure the power pameters in MAAS. 3. Deploy a node. Without the fix the node will be never turned on/off and /var/log/maas/maas.log will show: + [Regression Potential] + Minimal. This has been tested in our labs. And this actually fixes something that is currently broken and won't work out of the box. The MAAS team and Server team are dedicated to perform any corrective actions in the events of a regression. + [2013-04-23 11:20:21,482: ERROR/MainProcess] Task provisioningserver.tasks.power_off[926784f3-d90d-4277-bbfc-0471b2c82e80] raised exception: UnpickleableExceptionWrapper('provisioningserver.power.poweraction', 'PowerActionFail', (), 'PowerActionFail()') Traceback (most recent call last): - File "/usr/lib/python2.7/dist-packages/celery/execute/trace.py", line 181, in trace_task - R = retval = fun(*args, **kwargs) - File "/usr/lib/python2.7/dist-packages/provisioningserver/tasks.py", line 146, in power_off - issue_power_action(power_type, 'off', **kwargs) - File "/usr/lib/python2.7/dist-packages/provisioningserver/tasks.py", line 126, in issue_power_action - pa.execute(**kwargs) - File "/usr/lib/python2.7/dist-packages/provisioningserver/power/poweraction.py", line 138, in execute - self.run_shell(rendered) - File "/usr/lib/python2.7/dist-packages/provisioningserver/power/poweraction.py", line 126, in run_shell - raise PowerActionFail(self, e) + File "/usr/lib/python2.7/dist-packages/celery/execute/trace.py", line 181, in trace_task + R = retval = fun(*args, **kwargs) + File "/usr/lib/python2.7/dist-packages/provisioningserver/tasks.py", line 146, in power_off + issue_power_action(power_type, 'off', **kwargs) + File "/usr/lib/python2.7/dist-packages/provisioningserver/tasks.py", line 126, in issue_power_action + pa.execute(**kwargs) + File "/usr/lib/python2.7/dist-packages/provisioningserver/power/poweraction.py", line 138, in execute + self.run_shell(rendered) + File "/usr/lib/python2.7/dist-packages/provisioningserver/power/poweraction.py", line 126, in run_shell + raise PowerActionFail(self, e) PowerActionFail: PowerActionFail() With the fix, nodes will be turned on/off successfully. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1171988 Title: MAAS fails to use virsh when managing virtual nodes To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1171988/+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 1131418] Re: Nodes don't go to ready, after commissioning they get a 500 error when reporting back to maas
** Description changed: maas version installed: 1.2+bzr1359+dfsg-0ubuntu1~ppa1 on Ubuntu Precise 12.04.2 We enlist a node, the accept and commission it and the node stays in Commissioning state. We see that after cloud-init the node tries to access maas and gets an internal server error. In the maas.log file we see this: ERROR 2013-02-21 16:11:46,283 maas.maasserver Exception: Invalid expression ERROR 2013-02-21 16:11:46,283 maas.maasserver Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/django/core/handlers/base.py", line 111, in get_response response = callback(request, *callback_args, **callback_kwargs) File "/usr/lib/python2.7/dist-packages/django/views/decorators/vary.py", line 22, in inner_func response = func(*args, **kwargs) File "/usr/lib/python2.7/dist-packages/piston/resource.py", line 166, in __call__ result = self.error_handler(e, request, meth, em_format) File "/usr/lib/python2.7/dist-packages/piston/resource.py", line 164, in __call__ result = meth(request, *args, **kwargs) File "/usr/lib/python2.7/dist-packages/maasserver/api.py", line 308, in dispatch return function(self, request, *args, **kwargs) File "/usr/lib/python2.7/dist-packages/metadataserver/api.py", line 230, in signal self._store_commissioning_results(node, request) File "/usr/lib/python2.7/dist-packages/metadataserver/api.py", line 191, in _store_commissioning_results node.set_hardware_details(raw_content) File "/usr/lib/python2.7/dist-packages/maasserver/models/node.py", line 798, in set_hardware_details update_hardware_details(self, xmlbytes, Tag.objects) File "/usr/lib/python2.7/dist-packages/maasserver/models/node.py", line 398, in update_hardware_details has_tag = evaluator(tag.definition) File "xpath.pxi", line 321, in lxml.etree.XPathElementEvaluator.__call__ (src/lxml/lxml.etree.c:117734) File "xpath.pxi", line 239, in lxml.etree._XPathEvaluatorBase._handle_result (src/lxml/lxml.etree.c:116911) File "xpath.pxi", line 225, in lxml.etree._XPathEvaluatorBase._raise_eval_error (src/lxml/lxml.etree.c:116780) XPathEvalError: Invalid expression Maybe related, on juju we set a maas-name constraint to install each service to a particular. node (that worked) and then constraints weren't recognized at some point (we destroyed the juju environment and started again). - [Impact] MAAS machines in the commissioning process fail to successfully commission and be placed into Ready state. This is caused when the user defines tag with no definition. These tag with no definition simply server for node identification purposes. Without this fix, machine wont be able to commission successfully if the user has previously defined a 'no-definition' tag. [Test Case] To reproduce do the following: 1. Install MAAS 2. Enlist machines 3. Define a tag with no definition 4. Try to commission machines, These will fail to commission, or if they do, their hardware requirements wont be appear and juju wont be able to deploy these machines. 5. Try the proposed fix. Machines would be able to commission successfully. + + [Regression Potential] + Minimal, this actually fixes a regression. This has been tested both manually and in automated labs. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1131418 Title: Nodes don't go to ready, after commissioning they get a 500 error when reporting back to maas To manage notifications about this bug go to: https://bugs.launchpad.net/maas/+bug/1131418/+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 1131418] Re: Nodes don't go to ready, after commissioning they get a 500 error when reporting back to maas
Hi, this is missing Regression Potential. Please see https://wiki.ubuntu.com/StableReleaseUpdates#Procedure for more information. ** Also affects: maas (Ubuntu Raring) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1131418 Title: Nodes don't go to ready, after commissioning they get a 500 error when reporting back to maas To manage notifications about this bug go to: https://bugs.launchpad.net/maas/+bug/1131418/+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 1171418] Re: MAAS fails to power up machines when trying to install nodes
Hi, this is missing Regression Potential. Please see https://wiki.ubuntu.com/StableReleaseUpdates#Procedure for more information. ** Also affects: maas (Ubuntu Raring) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1171418 Title: MAAS fails to power up machines when trying to install nodes To manage notifications about this bug go to: https://bugs.launchpad.net/maas/+bug/1171418/+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 1171988] Re: MAAS fails to use virsh when managing virtual nodes
Hi, this is missing Regression Potential. Please see https://wiki.ubuntu.com/StableReleaseUpdates#Procedure for more information. ** Also affects: maas (Ubuntu Raring) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1171988 Title: MAAS fails to use virsh when managing virtual nodes To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1171988/+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 1172742] Re: maas datasource fails if no user-data
** Branch linked: lp:~smoser/cloud-init/lp1172742 -- 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/1172742 Title: maas datasource fails if no user-data To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-init/+bug/1172742/+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 1172742] [NEW] maas datasource fails if no user-data
Public bug reported: It seems that in re-working to use requests instead of urllib2, we regressed here. $ echo $maasds /usr/share/pyshared/cloudinit/sources/DataSourceMAAS.py $ echo == $cfg == ; sudo cat $cfg == /etc/cloud/cloud.cfg.d/90_dpkg_maas.cfg == # written by cloud-init debian package per preseed entries # cloud-init/{maas-metadata-url,/maas-metadata-credentials} datasource: MAAS: {consumer_key: RW2x8P3mxz4ym5sQvc, metadata_url: 'http://192.168.64.1/MAAS/metadata/', token_key: XRH3eh9brJpAVGahGB, token_secret: zC4cUvHDjErAMkS7H92GKVKpQYqEVw2Y} $ sudo python $maasds --config=$cfg check-seed ${url%/} Traceback (most recent call last): File "/usr/share/pyshared/cloudinit/sources/DataSourceMAAS.py", line 399, in main() File "/usr/share/pyshared/cloudinit/sources/DataSourceMAAS.py", line 383, in main version=args.apiver) File "/usr/share/pyshared/cloudinit/sources/DataSourceMAAS.py", line 233, in read_maas_seed_url ssl_details=ssl_details) File "/usr/lib/python2.7/dist-packages/cloudinit/util.py", line 690, in read_file_or_url ssl_details=ssl_details) File "/usr/lib/python2.7/dist-packages/cloudinit/url_helper.py", line 194, in readurl raise excps[-1] cloudinit.url_helper.UrlError: 401 Client Error: UNAUTHORIZED There are 2 issues here: a.) when re-trying, you actually need to re-generate headers. as implemented, DataSourceMAAS.py:read_maas_seed_url uses util.read_file_or_url without 'retries' param, which then defaults to 10. The first request returns (correctly) 404 on non-existant url. Subsequent requests then get 401 (possibly because the oauth headers have already been seen). The last error is raised, thus showing the 401. b.) 'readurl' in url_helper.py fails to set code in the UrlError From the debugger, we see why, in the exception handling block: pdb> bool(isinstance(e, (exceptions.HTTPError))) True pdb> bool(hasattr(e, 'response')) True pdb> bool(e.response) False pdb> e.response pdb> e.response.status_code 404 pdb> bool(hasattr(e.response, 'status_code')) True The fix for 'b' appears to be: - and e.response) + and hasattr(e.response, 'status_code')) The fix for 'a' may entail re-generating headers pre re-try. ProblemType: Bug DistroRelease: Ubuntu 13.04 Package: cloud-init 0.7.2~bzr809-0ubuntu1 [modified: usr/share/pyshared/cloudinit/sources/DataSourceMAAS.py usr/share/pyshared/cloudinit/url_helper.py] ProcVersionSignature: Ubuntu 3.8.0-19.29-generic 3.8.8 Uname: Linux 3.8.0-19-generic x86_64 ApportVersion: 2.9.2-0ubuntu8 Architecture: amd64 Date: Thu Apr 25 14:31:19 2013 MarkForUpload: True PackageArchitecture: all ProcEnviron: TERM=screen-bce PATH=(custom, no user) LANG=C SHELL=/bin/bash SourcePackage: cloud-init UpgradeStatus: No upgrade log present (probably fresh install) ** Affects: cloud-init Importance: Undecided Status: New ** Affects: cloud-init (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug raring uec-images ** Also affects: cloud-init 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/1172742 Title: maas datasource fails if no user-data To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-init/+bug/1172742/+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 1172699] [NEW] Novaclient bash autocomplete symlink invalid
Public bug reported: vagrant@controller:~$ ls -l /etc/bash_completion.d/nova.bash_completion lrwxrwxrwx 1 root root 53 Apr 9 07:02 /etc/bash_completion.d/nova.bash_completion -> /usr/share/doc/python-novaclient/nova.bash_completion vagrant@controller:~$ ls -l /usr/share/doc/python-novaclient/nova.bash_completion ls: cannot access /usr/share/doc/python-novaclient/nova.bash_completion: No such file or directory vagrant@controller:~$ dpkg -S /etc/bash_completion.d/nova.bash_completion python-novaclient: /etc/bash_completion.d/nova.bash_completion vagrant@controller:~$ dpkg -l python-novaclient Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ NameVersion Description +++-===-===-== ii python-novaclient 1:2.13.0-0ubuntu1~cloud0client library for OpenStack Compute API vagrant@controller:~$ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=12.04 DISTRIB_CODENAME=precise DISTRIB_DESCRIPTION="Ubuntu 12.04 LTS" ** Affects: python-novaclient (Ubuntu) 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/1172699 Title: Novaclient bash autocomplete symlink invalid To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/1172699/+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-seeded-qa-workflow] Improving QA for seeded server packages
Blueprint changed by Yolanda Robla: Work items changed: Work items: [andreserl] write dep-8 test for heartbeat/corosync/pacemaker: POSTPONED [andreserl] write dep-8 test for tftpd-hpa: POSTPONED [gandelman-a] write dep-8 test for haproxy: POSTPONED [gandelman-a] write dep-8 tests puppet + facter: POSTPONED Get all tests automated by QA team: DONE [gema.gomez] identify documentation and comparison of test approaches for use in Ubuntu: POSTPONED [james-page] write dep-8 test for bacula: POSTPONED [james-page] write dep-8 test for ganglia: POSTPONED [james-page] write dep-8 test for iscsitarget: TODO [james-page] write dep-8 test for jenkins: POSTPONED [james-page] write dep-8 test for nagios3: POSTPONED [james-page] write dep-8 test for open-iscsi: POSTPONED [james-page] write dep-8 test for quagga: POSTPONED [james-page] write dep-8 test for radvd: POSTPONED [james-page] write dep-8 test for solr-tomcat/jetty: POSTPONED [james-page] write dep-8 test for tgt: POSTPONED [james-page] write dep-8 test for openvswitch: DONE [james-page] Write some guidelines for test authors so we get things right first time: POSTPONED [james-page] Update https://wiki.ubuntu.com/QATeam/RequiredTests where appropriate: DONE [pcarrier] write dep-8 test for munin: POSTPONED [racb] write dep-8 test for clamav: POSTPONED [racb] write dep-8 test for exim4: POSTPONED [racb] write dep-8 test for mailman: POSTPONED [racb] write dep-8 test for memcached: POSTPONED [racb] write dep-8 test for squid3: POSTPONED [racb] write dep-8 test for varnish: POSTPONED [racb] write dep-8 test for vsftpd: POSTPONED review backuppc for continued seed inclusion: POSTPONED review likewise-open for continued seed inclusion: POSTPONED [serge-hallyn] write dep-8 test for kvm: POSTPONED [serge-hallyn] write dep-8 test for lxc: DONE - write dep-8 test for amavisd-new: POSTPONED + [yolanda] write dep-8 test for amavisd-new: TODO write dep-8 test for nut: POSTPONED write dep-8 test for postfix: POSTPONED write dep-8 test for slapd/openldap: POSTPONED [pcarrier] write dep-8 test for snmpd: POSTPONED write dep-8 test for spamassassin: POSTPONED [zulcss] write dep-8 test for freeradius: POSTPONED [zulcss] write dep-8 test for rabbitmq-server: POSTPONED -- Improving QA for seeded server packages https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-seeded-qa-workflow -- 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 1163218] Re: Typo in nova-cells upstart script
This bug was fixed in the package nova - 1:2013.1-0ubuntu2 --- nova (1:2013.1-0ubuntu2) raring; urgency=low * debian/nova-cells.upstart: Fix typo in upstart job. (LP: #1163218) * debian/control: Add iptables dependency. (LP: #1172393) -- Chuck ShortWed, 24 Apr 2013 07:39:25 -0500 ** Changed in: nova (Ubuntu Raring) 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/1163218 Title: Typo in nova-cells upstart script To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1163218/+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 1169730] Re: cinder-scheduler fails if stevedore version < 0.8-2
This bug was fixed in the package cinder - 1:2013.1-0ubuntu2 --- cinder (1:2013.1-0ubuntu2) raring; urgency=low * debian/control: Bump minimum stevedore version 0.8. (LP: #1169730) -- Adam GandelmanTue, 16 Apr 2013 14:38:46 -0700 ** 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/1169730 Title: cinder-scheduler fails if stevedore version < 0.8-2 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/cinder/+bug/1169730/+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
This bug was fixed in the package nova - 1:2013.1-0ubuntu2 --- nova (1:2013.1-0ubuntu2) raring; urgency=low * debian/nova-cells.upstart: Fix typo in upstart job. (LP: #1163218) * debian/control: Add iptables dependency. (LP: #1172393) -- Chuck ShortWed, 24 Apr 2013 07:39:25 -0500 ** 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/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 1172566] Re: MAAS Server install fails when network is disconnected
I am marking this medium, as I think it is a marginal use case of people that would want to install a network dependant application, without a network. Thanks. ** Changed in: maas (Ubuntu) Status: New => Confirmed ** Changed in: maas (Ubuntu) Importance: Undecided => Low ** Changed in: maas (Ubuntu) Importance: Low => Medium -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1172566 Title: MAAS Server install fails when network is disconnected To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-release-notes/+bug/1172566/+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 1172566] Re: MAAS Server install fails when network is disconnected
** Also affects: ubuntu-release-notes Importance: Undecided Status: New ** Changed in: ubuntu-release-notes Status: New => In Progress ** Changed in: ubuntu-release-notes Assignee: (unassigned) => Andy Whitcroft (apw) ** Description changed: Using today's server iso, the maas server will fail to install if no network is connected. It fails to dpkg-reconfigure maas-region- controller. see the attached tarball for the logs. This occurs on bare metal and VM. + + == RELEASE NOTE TEXT == + + * MAAS Server install fails without a network connection during install + of maas-region-controller (LP: #1155327) ** Description changed: Using today's server iso, the maas server will fail to install if no network is connected. It fails to dpkg-reconfigure maas-region- controller. see the attached tarball for the logs. This occurs on bare metal and VM. == RELEASE NOTE TEXT == - * MAAS Server install fails without a network connection during install - of maas-region-controller (LP: #1155327) + * MAAS Server install fails without a network connection during install + of maas-region-controller (LP: #1172566) ** Changed in: ubuntu-release-notes Status: In Progress => Fix Released -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1172566 Title: MAAS Server install fails when network is disconnected To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-release-notes/+bug/1172566/+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 1172583] Re: maas-region-controller.config fails to preconfigure: dbc_go: not found
I suspect this is just that you may not use anything other than essential packages plus debconf itself in config scripts; any attempts to use anything not in that set generally ought to be moved to the postinst instead. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1172583 Title: maas-region-controller.config fails to preconfigure: dbc_go: not found To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1172583/+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 1131418] Re: Nodes don't go to ready, after commissioning they get a 500 error when reporting back to maas
** Changed in: maas/1.2 Importance: Undecided => Critical ** Changed in: maas/1.2 Status: New => Fix Committed -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1131418 Title: Nodes don't go to ready, after commissioning they get a 500 error when reporting back to maas To manage notifications about this bug go to: https://bugs.launchpad.net/maas/+bug/1131418/+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 1117761] Re: SRU Tracking Bug for Postfix 2.9.6
I know I have probably overlooked the fix but can you send me the link or directions? This is the message I keep getting when trying to install: Package operation failed installArchives() failed: Setting up postfix (2.9.3-2~12.04.3) ... Postfix configuration was not changed. If you need to make changes, edit /etc/postfix/main.cf (and others) as needed. To view Postfix configuration values, see postconf(1). After modifying main.cf, be sure to run '/etc/init.d/postfix reload'. Running newaliases newaliases: warning: valid_hostname: numeric hostname: 1 newaliases: fatal: file /etc/postfix/main.cf: parameter mydomain: bad parameter value: 1 dpkg: error processing postfix (--configure): subprocess installed post-installation script returned error exit status 75 No apport report written because MaxReports is reached already Processing triggers for libc-bin ... ldconfig deferred processing now taking place Errors were encountered while processing: postfix localepurge: Disk space freed in /usr/share/locale: 0 KiB localepurge: Disk space freed in /usr/share/man: 0 KiB localepurge: Disk space freed in /usr/share/gnome/help: 0 KiB localepurge: Disk space freed in /usr/share/omf: 0 KiB localepurge: Disk space freed in /usr/share/doc/kde/HTML: 0 KiB Total disk space freed by localepurge: 0 KiB localepurge: Disk space freed in /usr/share/locale: 0 KiB localepurge: Disk space freed in /usr/share/man: 0 KiB localepurge: Disk space freed in /usr/share/gnome/help: 0 KiB localepurge: Disk space freed in /usr/share/omf: 0 KiB localepurge: Disk space freed in /usr/share/doc/kde/HTML: 0 KiB Total disk space freed by localepurge: 0 KiB localepurge: Disk space freed in /usr/share/locale: 0 KiB localepurge: Disk space freed in /usr/share/man: 0 KiB localepurge: Disk space freed in /usr/share/gnome/help: 0 KiB localepurge: Disk space freed in /usr/share/omf: 0 KiB localepurge: Disk space freed in /usr/share/doc/kde/HTML: 0 KiB Total disk space freed by localepurge: 0 KiB localepurge: Disk space freed in /usr/share/locale: 0 KiB localepurge: Disk space freed in /usr/share/man: 0 KiB localepurge: Disk space freed in /usr/share/gnome/help: 0 KiB localepurge: Disk space freed in /usr/share/omf: 0 KiB localepurge: Disk space freed in /usr/share/doc/kde/HTML: 0 KiB Total disk space freed by localepurge: 0 KiB Setting up postfix (2.9.3-2~12.04.3) ... Postfix configuration was not changed. If you need to make changes, edit /etc/postfix/main.cf (and others) as needed. To view Postfix configuration values, see postconf(1). After modifying main.cf, be sure to run '/etc/init.d/postfix reload'. Running newaliases newaliases: warning: valid_hostname: numeric hostname: 1 newaliases: fatal: file /etc/postfix/main.cf: parameter mydomain: bad parameter value: 1 dpkg: error processing postfix (--configure): subprocess installed post-installation script returned error exit status 75 Processing triggers for libc-bin ... ldconfig deferred processing now taking place Recommended updates: High-performance mail transport agent postfix(size 1.3MB) The installationof removal of a software package failed. Changes for the versions: Installed version: 2.9.3-2~12.04.3 Available version: 2.9.6-1~12.04.1 Version 2.9.6-1~12.04.1: * New upstream micro-version release (LP: #1117761) Version 2.9.3-2~12.04.4: * Add back support for NIS authentication that was inadvertently dropped (LP: #1068036) Thank you Scott -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to postfix in Ubuntu. https://bugs.launchpad.net/bugs/1117761 Title: SRU Tracking Bug for Postfix 2.9.6 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/1117761/+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 1131418] Re: Nodes don't go to ready, after commissioning they get a 500 error when reporting back to maas
** Branch linked: lp:~rvb/maas/backport-fixes ** Also affects: maas/1.2 Importance: Undecided Status: New ** Changed in: maas Assignee: (unassigned) => Raphaël Badin (rvb) ** Changed in: maas Status: Triaged => Fix Committed ** Changed in: maas/1.2 Assignee: (unassigned) => Raphaël Badin (rvb) -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1131418 Title: Nodes don't go to ready, after commissioning they get a 500 error when reporting back to maas To manage notifications about this bug go to: https://bugs.launchpad.net/maas/+bug/1131418/+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-q-juju-charm-best-practices] Juju Charm Best practices
Blueprint changed by Antonio Rosales: Work items changed: Work items: [jorge] Pick better example charms, "flagbearer charms".: DONE - [jorge] Choose a single place for presenting flagbearer charms (charm browser?): TODO + [jorge] Choose a single place for presenting flagbearer charms (charm browser?): POSTPONED [jorge] Move rules and charm best practices into juju/docs.: DONE [jorge] Add Maintainer field information to documentation. (thanks clint!): DONE [jorge] Reach out to maintainers to get their maintainer field filled out.: DONE [jorge] Add docs work items to patch pilot!: DONE - [jorge] pull "file bug" or "join the doc team" from other projects: TODO + [jorge] pull "file bug" or "join the doc team" from other projects: POSTPONED [jorge] Clarify documentention on what to expect when your using LXC and EC2. Cost, wait time, what you see, logs, downloading. "You should expect this to download 300 megs, etc." Here's a table of look here troubleshooting your LXC thing: DONE [imbrandon] Reach out to maintainers to get their maintainer filled out.: DONE - [imbrandon] Put Doc instructions in the docs: http://askubuntu.com/q/52063 : TODO + [imbrandon] Put Doc instructions in the docs: http://askubuntu.com/q/52063 : POSTPONED [mark-mims] (and individual maintainers!) clean up existing charms wrt best practices: DONE [clint-fewbar] Comment and add links to docs in 'charm create' templates: POSTPONED [clint-fewbar] juju in Debian! NOW!: DONE [clint-fewbar] determine most likely maintainers based on bzr logs: DONE [clint-fewbar] fix doc repos wrt (trunk, go, docs): DONE [marcoceppi] tag:juju review on AU and SE network: DONE [hazmat] incorporate output of charm proof into charm browser: DONE [hazmat] clear out trunk docs for juju: DONE - [imbrandon] Clarify documentention on what to expect when your using LXC and EC2. Cost, wait time, what you see, logs, downloading. "You should expect this to download 300 megs, etc." Here's a table of look here troubleshooting your LXC thing.: TODO - [hazmat] make juju report on initial lxc image downloads ?: TODO - [clint-fewbar] make juju lxc use lxc networking instead of libvirt networking ?: INPROGRESS + [imbrandon] Clarify documentention on what to expect when your using LXC and EC2. Cost, wait time, what you see, logs, downloading. "You should expect this to download 300 megs, etc." Here's a table of look here troubleshooting your LXC thing.: POSTPONED + [hazmat] make juju report on initial lxc image downloads ?: POSTPONED + [clint-fewbar] make juju lxc use lxc networking instead of libvirt networking ?: POSTPONED -- Juju Charm Best practices https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-charm-best-practices -- 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-juju-charmhelper2] Charm Helper 2 - Declarative Charming
Blueprint changed by Antonio Rosales: Name: servercloud-r-juju-charmhelper2 => servercloud-s-juju-charmhelper2 -- Charm Helper 2 - Declarative Charming https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-juju-charmhelper2 -- 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-juju-charmhelper2] Charm Helper 2 - Declarative Charming
Blueprint changed by Antonio Rosales: Assignee: Mark Mims => Marco Ceppi -- Charm Helper 2 - Declarative Charming https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-juju-charmhelper2 -- 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 1172566] Re: MAAS Server install fails when network is disconnected
** Package changed: debian-installer (Ubuntu) => maas (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1172566 Title: MAAS Server install fails when network is disconnected To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1172566/+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-juju-charm-testing] Juju Charm Testing
Blueprint changed by Antonio Rosales: Name: servercloud-r-juju-charm-testing => servercloud-s-juju-charm-testing -- Juju Charm Testing https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-juju-charm-testing -- 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-juju-charmhelper2] Charm Helper 2 - Declarative Charming
Blueprint changed by Antonio Rosales: Whiteboard changed: - --- User Stories --- - - --- Risks --- - - --- Test Plans --- - - --- Release Note --- - - --- Blog Post --- - - (Needs spec and WI definition) -[a.rosales; 12-DEC-2012] + [USER STORIES] + [ASSUMPTIONS] + [RISKS] + [IN SCOPE] + [OUT OF SCOPE] + [USER ACCEPTANCE] + [RELEASE NOTE/BLOG] --- UDS Discussion --- We've learned a lot since the creation of charm helper. Debian packagers took 7 iterations before boiling all of debhelper's goodness into a declarative system. We can learn from them, and get there in our second iteration. Discussion: Charm-helper is not easily discoverable, poorly documented, and not as awesome as it could be. dannf likes to write makefiles sources list config settings with meaning want common things to go in a declarative charm get rid of copied lib files/folder Maintain charm-helper seperately from juju, calling it at the top of the hook vs included in juju trunk What happens during upgrade-charm or if a pakcage gets removed? Juju can't help with leader election across units of a service, but charm-helper could) Work: - describe how to handle lifecycle changes for packages in charm-helper/packages (also thinkof: upgrade-charm) - install packages - debconf preseeding too - templating and/or building config files with dotd/concat partials (erb_template _and_ cheetah_template helpers)? - remote_files - deploy from {distro,ppa,upstream?} ? - Manage config files (dynamic, static, etc) - Sanitize relation settings (potential risk of SQL Ejection, highjacking, terror) - Plugin based for easy extension of charm-helper - leader election (perhaps somewhere other than charmhelper) - private files (SSL certs) ... no clue... - Collaborate on files that no charm "owns" -- Charm Helper 2 - Declarative Charming https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-juju-charmhelper2 -- 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 1172583] Re: maas-region-controller.config fails to preconfigure: dbc_go: not found
This bug has been reported on the Ubuntu ISO testing tracker. A list of all reports related to this bug can be found here: http://iso.qa.ubuntu.com/qatracker/reports/bugs/1172583 ** Tags added: iso-testing -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1172583 Title: maas-region-controller.config fails to preconfigure: dbc_go: not found To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1172583/+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-juju-contributor-onramp] Juju Contributor Onramp
Blueprint changed by Antonio Rosales: Priority: Undefined => Medium -- Juju Contributor Onramp https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-juju-contributor-onramp -- 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-juju-contributor-onramp] Juju Contributor Onramp
Blueprint changed by Antonio Rosales: Whiteboard changed: UDS 1303 Pad Data: Pad: http://pad.ubuntu.com/uds-1303-servercloud-1303-juju-contributor-onramp Old spec: https://blueprints.launchpad.net/ubuntu/+spec/community-r-juju-contributor-onramp-1 Idea: In regards to using other code hosting: mariusko_: Also maybe compare with how it is done with nodejs: "npm help publish" (https://npmjs.org/doc/developers.html) + + [USER STORIES] + [ASSUMPTIONS] + [RISKS] + [IN SCOPE] + [OUT OF SCOPE] + [USER ACCEPTANCE] + [RELEASE NOTE/BLOG] -- Juju Contributor Onramp https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-juju-contributor-onramp -- 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-juju-contributor-onramp] Juju Contributor Onramp
Blueprint changed by Antonio Rosales: Name: servercloud-1303-juju-contributor-onramp => servercloud-s-juju-contributor-onramp -- Juju Contributor Onramp https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-juju-contributor-onramp -- 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 1172566] [NEW] MAAS Server install fails when network is disconnected
You have been subscribed to a public bug: Using today's server iso, the maas server will fail to install if no network is connected. It fails to dpkg-reconfigure maas-region- controller. see the attached tarball for the logs. This occurs on bare metal and VM. ** Affects: maas (Ubuntu) Importance: Undecided Status: New ** Tags: iso-testing -- MAAS Server install fails when network is disconnected https://bugs.launchpad.net/bugs/1172566 You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas 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 1170458] Re: iptables service not functionnal - Solution included
** Changed in: logwatch (Ubuntu) Status: New => Confirmed ** Changed in: logwatch (Ubuntu) Importance: Undecided => Medium -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to logwatch in Ubuntu. https://bugs.launchpad.net/bugs/1170458 Title: iptables service not functionnal - Solution included To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/logwatch/+bug/1170458/+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 1170223] Re: backport quantal ec2-api-tools to precise
upgrade-software-version ** Changed in: ec2-api-tools (Ubuntu) Status: New => Confirmed ** Changed in: ec2-api-tools (Ubuntu) Importance: Undecided => Medium -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to ec2-api-tools in Ubuntu. https://bugs.launchpad.net/bugs/1170223 Title: backport quantal ec2-api-tools to precise To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ec2-api-tools/+bug/1170223/+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 1172042] Re: ocfs2 readlink hangs on
** Changed in: ocfs2-tools (Ubuntu) Status: New => Confirmed ** Changed in: ocfs2-tools (Ubuntu) Importance: Undecided => Medium -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to ocfs2-tools in Ubuntu. https://bugs.launchpad.net/bugs/1172042 Title: ocfs2 readlink hangs on To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ocfs2-tools/+bug/1172042/+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 1163536] Re: Cloud-init does not run from init, but runs when started manually
** Changed in: cloud-init (Ubuntu) Status: New => Incomplete -- 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/1163536 Title: Cloud-init does not run from init, but runs when started manually To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1163536/+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 1161338] Re: python-nova should depend on ebtables
** Changed in: nova (Ubuntu) Status: New => Confirmed ** Changed in: nova (Ubuntu) Importance: Undecided => High -- 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/1161338 Title: python-nova should depend on ebtables To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1161338/+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 1171888] Re: typo in conditional causes maas-signal to always execute
*** This bug is a duplicate of bug 1103716 *** https://bugs.launchpad.net/bugs/1103716 ** This bug has been marked a duplicate of bug 1103716 bug in commissioning-user-data means power_settings always passed from commissioning -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu. https://bugs.launchpad.net/bugs/1171888 Title: typo in conditional causes maas-signal to always execute To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1171888/+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 995823] Re: Machines occasionally fail to start the machine agent correctly because of an unhandled ConnectionTimeoutException
** Changed in: juju (Ubuntu) Status: New => Confirmed ** Changed in: juju (Ubuntu) Importance: Undecided => Wishlist -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to juju in Ubuntu. https://bugs.launchpad.net/bugs/995823 Title: Machines occasionally fail to start the machine agent correctly because of an unhandled ConnectionTimeoutException To manage notifications about this bug go to: https://bugs.launchpad.net/juju/+bug/995823/+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 1155736] Re: 12.04.2 cloud image boot halts at " * Starting execute cloud user/final scripts" when meta-data is absent [ OK ]
Thanks for reporting this Can you supply a log for the failure on 12.04 ? ** Changed in: cloud-init (Ubuntu) Status: New => Incomplete -- 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/1155736 Title: 12.04.2 cloud image boot halts at " * Starting execute cloud user/final scripts" when meta-data is absent [ OK ] To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1155736/+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