[Bug 972254] Re: vmtoolsd crashed with SIGSEGV in SmcCloseConnection()

2012-04-03 Thread Graham Binns
** Visibility changed to: Public -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to open-vm-tools in Ubuntu. https://bugs.launchpad.net/bugs/972254 Title: vmtoolsd crashed with SIGSEGV in SmcCloseConnection() To manage notifications

Re: [Bug 1246236] Re: pxe boot from maas fails due to time out

2014-03-14 Thread Graham Binns
On 14 March 2014 14:43, Adam Collard adam.coll...@canonical.com wrote: So in my case, the problem was PEBKAC and networking. Specifically I had two interfaces on my MAAS server that were connected to the same network, both had equally weighted routes to the gateway. Only one of them was

[Bug 1305839] Re: FFe: Support for Third Party Driver Installation

2014-04-15 Thread Graham Binns
If you land code for this feature without tests then *please* file a bug (tagged tech-debt) and let us on the MAAS team know so that we can either write the tests or help you write the tests. If you don't file a bug, chances are it's going to get forgotten about. I've already filed bug 1307906

[Bug 1310846] Re: amt template gives up way too easily

2014-04-22 Thread Graham Binns
** Branch linked: lp:~gmb/maas/dustins-patch -- 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/1310846 Title: amt template gives up way too easily To manage notifications about this bug

[Bug 1355680] Re: MAAS upgrade struggles with BIND

2014-08-12 Thread Graham Binns
** Also affects: maas (Ubuntu) Importance: Undecided Status: New ** Changed in: maas Status: New = Invalid -- 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/1355680

[Bug 1379144] Re: maas-proxy package won't install when upgrading from older version

2014-10-16 Thread Graham Binns
maas-proxy installs *fine* from a PPA — but you have to install it manually; it's not installed by default on upgrade from 1.5, so we should add something to the release notes to explain that. ** Changed in: maas (Ubuntu) Status: Confirmed = Invalid ** Changed in: maas Status:

[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-22 Thread Graham Binns
://www.thedumbterminal.co.uk/?action=showArticlearticleId=116 ** Changed in: maas Status: Incomplete = Triaged ** Changed in: maas Assignee: Julian Edwards (julian-edwards) = Graham Binns (gmb) -- You received this bug notification because you are a member of Ubuntu Server Team, which

[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-22 Thread Graham Binns
I started out by poking the $GENERATE directive into my reverse zone file manually: ; Zone file modified: 2014-10-21 18:24:59.654931. ; Note that the modification time of this file doesn't reflect ; the actual modification time. MAAS controls the modification time ; of this file to be able to

[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-22 Thread Graham Binns
I think this will work for IPv6 too, but as Kiko pointed out on IRC so will wildcards — the main reason I'd like to stick with $GENERATE for both is that it's one less bit of code to write ;) -- You received this bug notification because you are a member of Ubuntu Server Team, which is

Re: [Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-22 Thread Graham Binns
On 22 October 2014 23:19, Gavin Panella gavin.pane...@canonical.com wrote: On 22 October 2014 22:03, Graham Binns graham.bi...@canonical.com wrote: This works perfectly: Awesome, that's great. Sort of brain-dump follows: How does this work for networks that don't line up with IPv4 octets

Re: [Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-22 Thread Graham Binns
On 22 October 2014 23:56, Graham Binns graham.bi...@canonical.com wrote: $GENERATE 1-254 $.$.0.10.in-addr.arpa. IN PTR no-name-yet-$.$.maas. But a quick check of that on my local MAAS suggests it doesn't work. I'll dig further tomorrow. Nope, scratch that, it works fine. Well, named-checkzone

[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-23 Thread Graham Binns
** Changed in: maas Status: Triaged = In Progress -- 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/1382190 Title: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries To manage

[Bug 1274947] Re: juju lxc instances deployed via MAAS don't have resolvable hostnames

2014-10-23 Thread Graham Binns
*** This bug is a duplicate of bug 1382190 *** https://bugs.launchpad.net/bugs/1382190 ** This bug has been marked a duplicate of bug 1382190 LXCs assigned IPs by MAAS DHCP lack DNS PTR entries -- You received this bug notification because you are a member of Ubuntu Server Team, which is

[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-23 Thread Graham Binns
Ah, so, the light of day: $GENERATE is only useful for networks with an address range /24 — i.e. up to 255 addresses. After that it breaks down, because: $GENERATE 1-254 $.$.0.10.in-addr.arpa. IN PTR no-name-yet-$.$.maas. Only generates 255 addresses; it's not recursive. You just get

[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-23 Thread Graham Binns
(I'd say that option 3 is the most tasteful, as long as we can solve the lag problem). -- 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/1382190 Title: LXCs assigned IPs by MAAS DHCP

Re: [Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-23 Thread Graham Binns
On 23 October 2014 11:04, Julian Edwards 1382...@bugs.launchpad.net wrote: I don't think #3 is that bad actually; remember that's how we used to do it before static IP days so it's tried and tested (although admittedly the DNS was in place by the time commissioning ended). Yeah, #3 doesn't

[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-23 Thread Graham Binns
Andres and I have discussed this further, and he pointed out that the LXCs can take a *long* time to start. That would be sufficient time for us to parse the leases file and update the DNS with a PTR for the new node (option #3). I've tested this out locally. The LXC container took ~30minutes to

[Bug 1373261] Re: pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

2014-10-28 Thread Graham Binns
** Changed in: maas Assignee: (unassigned) = Graham Binns (gmb) -- 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/1373261 Title: pserv.yaml rewrite breaks when MAAS URL uses IPv6

[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-28 Thread Graham Binns
Using $GENERATE statements, I get the following results: /16 dynamic range: 10.0.0.1 - 10.0.255.255 - Reverse Zone: http://paste.ubuntu.com/8721352/ - Forward Zone: http://paste.ubuntu.com/8721358/ /24 dynamic range: 10.0.0.1 - 10.0.0.255 - Reverse zone: http://paste.ubuntu.com/8721363/ -

[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-29 Thread Graham Binns
** Branch linked: lp:~gmb/maas/restrict-dynamic-range-to- slash-16-bug-1382190 -- 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/1382190 Title: LXCs assigned IPs by MAAS DHCP lack DNS

[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-29 Thread Graham Binns
** Changed in: maas Status: In Progress = Fix Committed ** Branch linked: lp:~gmb/maas/generate-dns-for-dynamic-pool-bug-1382190 -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu.

[Bug 1373261] Re: pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

2014-10-30 Thread Graham Binns
** Changed in: maas Status: Triaged = In Progress ** Changed in: maas (Ubuntu) Assignee: Gavin Panella (allenap) = (unassigned) -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to maas in Ubuntu.

[Bug 1373261] Re: pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

2014-10-30 Thread Graham Binns
I can't reproduce this locally; it seems to work fine with properly formatted — and even improperly formatted — IPv6 addresses. We really need to see the problem you're seeing Jeroen. ** Changed in: maas Status: In Progress = Incomplete -- You received this bug notification because you

Re: [Bug 1373261] Re: pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

2014-11-05 Thread Graham Binns
On 5 November 2014 11:23, Jeroen T. Vermeulen 1373...@bugs.launchpad.net wrote: Note how the first part of the netloc, up to the first colon, is replaced with the new address — but the rest of the netloc is still there. Ah, now ISWYM. Sorry, I'd missed that the *existing* MAAS URL in

[Bug 1368497] Re: AMT Power control doesn't handle some passwords

2014-11-10 Thread Graham Binns
** Changed in: maas Status: New = Triaged ** Changed in: maas Importance: Undecided = 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/1368497 Title: AMT Power control

[Bug 286206] Re: Scheduled Transaction Calendar Is One Occurrence Short

2008-10-22 Thread Graham Binns
See http://bugzilla.gnome.org/show_bug.cgi?id=557019. -- Scheduled Transaction Calendar Is One Occurrence Short https://bugs.launchpad.net/bugs/286206 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 221098] [NEW] [Hardy] Firefox 3 causes X to lock up

2008-04-23 Thread Graham Binns
Public bug reported: I have experienced the following several times on Hardy (up-to-date as of 2008-04-23). When Firefox 3 opens a pop-up window (usually an HTTP Authentication dialog), X will completely lock up, to the point where I can't even get to one of the terminals using Ctrl-Alt-F1 or

[Bug 221098] Re: [Hardy] Firefox 3 causes X to lock up

2008-04-23 Thread Graham Binns
** Attachment added: logs.tar.bz2 http://launchpadlibrarian.net/13839267/logs.tar.bz2 -- [Hardy] Firefox 3 causes X to lock up https://bugs.launchpad.net/bugs/221098 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

[Bug 192885] Re: firefox keeps crushing

2008-02-18 Thread Graham Binns
** Also affects: firefox-3.0 (Ubuntu) Importance: Undecided Status: New -- firefox keeps crushing https://bugs.launchpad.net/bugs/192885 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list

[Bug 188015] Re: GUI crashes while activating/changing destop effects (Ubuntu 7.04 Fiesty Fawn)

2008-02-01 Thread Graham Binns
This isn't a bug in Launchpad Bugs; I've retargeted it to Ubuntu. ** Also affects: ubuntu Importance: Undecided Status: New ** Changed in: malone Status: New = Invalid -- GUI crashes while activating/changing destop effects (Ubuntu 7.04 Fiesty Fawn)

[Bug 63529] Re: Automatic dictionary installation doesn't work because file http://opendict.sf.net/Repository/Data/opendict-add-ons.xml is not reacheable

2007-12-10 Thread Graham Binns
The link to http://opendict.inhangar.com/ticket/2 is incorrect. It points to some kind of advertising page and is raising errors when our bug status importer tries to update the bug. Does anyone know where the bug watch should be pointing? -- Automatic dictionary installation doesn't work

[Bug 184300] Re: files on hard disc destroyed

2008-01-19 Thread Graham Binns
This bug would be better filed as a question at http://answers.launchpad.net/ubuntu, so I'm converting it into one. ** Changed in: ubuntu Status: New = Invalid ** bug changed to question: https://answers.edge.launchpad.net/ubuntu/+question/22543 -- files on hard disc destroyed

[Bug 184300] Re: files on hard disc destroyed

2008-01-19 Thread Graham Binns
This is not a bug in Launchpad Bugs. ** Also affects: ubuntu Importance: Undecided Status: New ** Changed in: malone Status: New = Invalid -- files on hard disc destroyed https://bugs.launchpad.net/bugs/184300 You received this bug notification because you are a member of

[Bug 221098] Re: [Hardy] Firefox 3 causes X to lock up

2008-04-30 Thread Graham Binns
I've tried to reproduce this in other browsers without success. However, I've also tried to reproduce it in Firefox without success, though I've seen it happen several times before I reported the bug. I'll comment again should the problem re-occur. Hopefully, it won't :). -- [Hardy] Firefox 3

[Bug 225316] Re: X session crashes

2008-05-06 Thread Graham Binns
*** This bug is a duplicate of bug 212648 *** https://bugs.launchpad.net/bugs/212648 Deleted the bug watch attached to this bug since a) The bug's a dupe and b) the watch had nothing to do with the bug and was auto-created from a comment. -- X session crashes

[Bug 251282] [NEW] checkwatches is fragile when non-existent bugtrackers are specified at the command line

2008-07-23 Thread Graham Binns
Public bug reported: If you use `checkwatches.py -t $bugtracker` to specify a bugtracker to update, checkwatches will error messily: Traceback (most recent call last): File ./checkwatches.py, line 39, in ? script.lock_and_run() File

[Bug 251282] Re: checkwatches is fragile when non-existent bugtrackers are specified at the command line

2008-07-23 Thread Graham Binns
Rats. This should have been a malone bug; apologies. -- checkwatches is fragile when non-existent bugtrackers are specified at the command line https://bugs.launchpad.net/bugs/251282 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 251282] Re: checkwatches is fragile when non-existent bugtrackers are specified at the command line

2008-07-23 Thread Graham Binns
** Changed in: ubuntu Status: New = Invalid ** Also affects: malone Importance: Undecided Status: New ** Changed in: malone Importance: Undecided = Low Status: New = Confirmed -- checkwatches is fragile when non-existent bugtrackers are specified at the command line

[Bug 258532] Re: add tags like confirm or metoo for bug comments

2008-08-19 Thread Graham Binns
*** This bug is a duplicate of bug 149775 *** https://bugs.launchpad.net/bugs/149775 ** This bug has been marked a duplicate of bug 149775 Adding tags and voting on bug reports -- add tags like confirm or metoo for bug comments https://bugs.launchpad.net/bugs/258532 You received this bug

[Bug 221098] Re: [Hardy] Firefox 3 causes X to lock up

2008-05-10 Thread Graham Binns
The problem has reoccurred twice now, once with Firefox and once with OpenOffice, when I was opening a .ods and a .odt at the same time. Unfortunately I forgot to retrieve .xsession-errors and Xorg.0.log this time round. If it happens again I'll attach them to this bug. -- [Hardy] Firefox 3

[Bug 146883] Re: application menu is empty

2007-09-30 Thread Graham Binns
Marking this as confirmed as this has also happened to me after the latest batch of updates. I see the same error in .xsession-errors as is listed above when I try to fire up alacarte. ** Changed in: gnome-menus (Ubuntu) Status: New = Confirmed -- application menu is empty

[Bug 146883] Re: application menu is empty

2007-09-30 Thread Graham Binns
A work-around for me was to copy /usr/share/ubuntustudio- menu/applications.menu into my .config/menus directory. Obviously this won't work for non Ubuntustudio users, but copying /etc/xdg/menus/applications.menu (attached) to ~/.configs/menus/ will do the same job for standard Ubuntu. --

[Bug 331347] Re: Evolution alarm notification does not persist after snooze and reboot

2009-03-16 Thread Graham Binns
** Changed in: null Product: Launchpad Bugs = NULL Project -- Evolution alarm notification does not persist after snooze and reboot https://bugs.launchpad.net/bugs/331347 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 102408] Re: Helper apps inherit open file descriptors

2009-04-22 Thread Graham Binns
Marking the centos task invalid at Pedro's request. ** Changed in: centos-dead Status: New = Invalid -- Helper apps inherit open file descriptors https://bugs.launchpad.net/bugs/102408 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

Re: [Bug 221098] Re: [Hardy] Firefox 3 causes X to lock up

2009-03-23 Thread Graham Binns
with the latest Ubuntu release? Thanks in advance. I haven't seen this bug since upgrading to Intrepid (I'm not yet running Jaunty). -- Graham Binns | PGP Key: 4DAD18FA -- [Hardy] Firefox 3 causes X to lock up https://bugs.launchpad.net/bugs/221098 You received this bug notification because you

[Bug 346886] Re: Error while exporting my photos to my PTP digital camera whereas import works fine

2009-04-02 Thread Graham Binns
Apologies for the repeated description changes. Bug 354158 is preventing this bug from being forwarded upstream. As far as I can tell at the moment that's due to unicode data that Launchpad's not handling property. I've removed the unicode characters from the bug description and this bug is no

[Bug 306238] Re: launchpad looses bug report when selecting packages with javascript turned off

2008-12-10 Thread Graham Binns
** Changed in: ubuntu Status: New = Invalid -- launchpad looses bug report when selecting packages with javascript turned off https://bugs.launchpad.net/bugs/306238 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

[Bug 263241] Re: launchpad trac requires a change to trac installation!!

2009-01-24 Thread Graham Binns
** Also affects: trac-launchpad Importance: Undecided Status: New -- launchpad trac requires a change to trac installation!! https://bugs.launchpad.net/bugs/263241 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 263241] Re: launchpad trac requires a change to trac installation!!

2009-01-24 Thread Graham Binns
: (unassigned) = Graham Binns (gmb) Status: New = Incomplete -- launchpad trac requires a change to trac installation!! https://bugs.launchpad.net/bugs/263241 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu

[Bug 311690] Re: Report A Bug Launchpad page missing for Rhythmbox

2009-01-04 Thread Graham Binns
) = Graham Binns (gmb) Target: None = 2.2.1 -- Report A Bug Launchpad page missing for Rhythmbox https://bugs.launchpad.net/bugs/311690 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs

[Bug 311690] Re: Report A Bug Launchpad page missing for Rhythmbox

2009-01-04 Thread Graham Binns
As Sarah pointed out, waiting and refreshing makes everything work nicely. The added token at the end is generated by Launchpad and returned to the launchpad-integration package in an X-Launchpad-Blob- Token header (James Westby explained this on IRC). So it appears that Launchpad is generating a

Re: [Bug 311690] Re: Report A Bug Launchpad page missing for Rhythmbox

2009-01-05 Thread Graham Binns
On Mon, Jan 05, 2009 at 12:35:13AM -, Michael Hudson wrote: This could be fallout from the replicated db setup? That's my suspicion, too. I'll investigate and see if that's the case. If it is, it should be trivial to fix. -- Report A Bug Launchpad page missing for Rhythmbox

[Bug 311690] Re: Delay between blob submission and blob availability causes Launchpad to OOPS.

2009-01-05 Thread Graham Binns
Setting this to invalid for launchpad-integration; the problem is with Launchpad itself. ** Summary changed: - Report A Bug Launchpad page missing for Rhythmbox + Delay between blob submission and blob availability causes Launchpad to OOPS. ** Changed in: launchpad-integration (Ubuntu)

[Bug 314075] Re: Blob ID is returned before blob is available

2009-01-05 Thread Graham Binns
*** This bug is a duplicate of bug 311690 *** https://bugs.launchpad.net/bugs/311690 ** This bug has been marked a duplicate of bug 311690 Report A Bug Launchpad page missing for Rhythmbox -- Blob ID is returned before blob is available https://bugs.launchpad.net/bugs/314075 You received

[Bug 311690] Re: Delay between blob submission and blob availability causes Launchpad to OOPS.

2009-01-06 Thread Graham Binns
I'm marking the Launchpad task invalid since the bug is specifically in the Launchpad bug tracker, for which there is already a task. ** Changed in: launchpad Status: Confirmed = Invalid -- Delay between blob submission and blob availability causes Launchpad to OOPS.

[Bug 311690] Re: Delay between blob submission and blob availability causes Launchpad to OOPS.

2009-01-08 Thread Graham Binns
Marking this Won't Fix for malone since Stuart's solution should take care of the problem across all Launchpad apps. ** Changed in: malone Status: New = Won't Fix -- Delay between blob submission and blob availability causes Launchpad to OOPS. https://bugs.launchpad.net/bugs/311690 You

[Bug 263241] Re: launchpad trac requires a change to trac installation!!

2009-12-11 Thread Graham Binns
** Changed in: trac-launchpad Assignee: Graham Binns (gmb) = (unassigned) -- launchpad trac requires a change to trac installation!! https://bugs.launchpad.net/bugs/263241 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu

[Bug 487728] Re: When VirtualBox OSE preferences selected during guest set-up, host system logs off

2009-12-12 Thread Graham Binns
*** This bug is a duplicate of bug 487734 *** https://bugs.launchpad.net/bugs/487734 ** Project changed: malone = null -- When VirtualBox OSE preferences selected during guest set-up, host system logs off https://bugs.launchpad.net/bugs/487728 You received this bug notification because

[Bug 448563] [NEW] NetworkManager uses a disconnection notification to tell me I'm connected

2009-10-11 Thread Graham Binns
Public bug reported: Binary package hint: network-manager What happens: In Karmic, when resuming after the machine has been suspended to RAM, NetworkManager will usually take a few seconds to reconnect to the wireless network. Once it's reconnected, it pops up a notification bubble, but the

[Bug 448563] Re: NetworkManager uses a disconnection notification to tell me I'm connected

2009-10-11 Thread Graham Binns
** Attachment added: Dependencies.txt http://launchpadlibrarian.net/33439244/Dependencies.txt ** Attachment added: Gconf.txt http://launchpadlibrarian.net/33439245/Gconf.txt ** Attachment added: IpAddr.txt http://launchpadlibrarian.net/33439246/IpAddr.txt ** Attachment added:

[Bug 456630] Re: timeout error in launchpad while navigating to bug #178038

2009-11-12 Thread Graham Binns
*** This bug is a duplicate of bug 471974 *** https://bugs.launchpad.net/bugs/471974 ** This bug is no longer a duplicate of bug 458180 BugTask:+index timing out ** This bug has been marked a duplicate of bug 471974 100s/1000s breaks +bug and +subscribe with SQL timeout -- timeout

[Bug 367335] Re: Expand on PPA package listing does not work on edge

2009-04-26 Thread Graham Binns
*** This bug is a duplicate of bug 357337 *** https://bugs.launchpad.net/bugs/357337 ** This bug is no longer a duplicate of bug 366709 [edge] PPA: cannot see Publishing details of the source package ** This bug has been marked a duplicate of bug 357337 totem player wont let me use

[Bug 366709] Re: [edge] PPA: cannot see Publishing details of the source package

2009-04-26 Thread Graham Binns
*** This bug is a duplicate of bug 357337 *** https://bugs.launchpad.net/bugs/357337 ** This bug has been marked a duplicate of bug 357337 totem player wont let me use buttons and freezes -- [edge] PPA: cannot see Publishing details of the source package

[Bug 399581] Re: glx fails to load with a seg fault at startup with nvidia-glx-185

2009-07-15 Thread Graham Binns
This is not a bug in the Launchpad bug tracker; I've retargeted it to Ubuntu. ** Also affects: ubuntu Importance: Undecided Status: New ** Project changed: malone = null -- glx fails to load with a seg fault at startup with nvidia-glx-185 https://bugs.launchpad.net/bugs/399581 You

[Bug 107247] Re: Launchpad bug pages trigger caret browsing in Firefox and other Gecko browsers

2009-07-15 Thread Graham Binns
** Changed in: malone Status: Confirmed = Triaged ** Changed in: malone Status: Triaged = Confirmed ** Changed in: malone Milestone: None = 2.2.7 ** Changed in: malone Status: Confirmed = Triaged -- Launchpad bug pages trigger caret browsing in Firefox and other Gecko

[Bug 272738] Re: Error when recording sound with Audacity

2008-09-21 Thread Graham Binns
Marking this as invalid on Launchpad bugs. ** Changed in: malone Status: New = Invalid ** Also affects: audacity (Ubuntu) Importance: Undecided Status: New -- Error when recording sound with Audacity https://bugs.launchpad.net/bugs/272738 You received this bug notification

[Bug 272738] Re: Error when recording sound with Audacity

2008-09-21 Thread Graham Binns
Retargeted to Audacity in Ubuntu. -- Error when recording sound with Audacity https://bugs.launchpad.net/bugs/272738 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

[Bug 267675] Re: 111111

2008-09-08 Thread Graham Binns
Marking this as invalid since it appears to be a nonsense bug (see thread on launchpad-users). ** Changed in: ubuntu Status: Incomplete = Invalid -- 11 https://bugs.launchpad.net/bugs/267675 You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 415211] Re: [karmic] computer failed to suspend after todays upgrades

2009-08-18 Thread Graham Binns
This isn't a problem in Launchpad, so I've added an Ubuntu bug task for it. ** Also affects: ubuntu Importance: Undecided Status: New ** Project changed: malone = null -- [karmic] computer failed to suspend after todays upgrades https://bugs.launchpad.net/bugs/415211 You received

[Bug 931345] [NEW] Latest byobu in Precise ignores byobu-ctrl-a settings, treats CTRL-A like Emacs

2012-02-13 Thread Graham Binns
Public bug reported: After the most recent update, byobu-ctrl-a ran when I logged in. I selected option (1) (Screen mode). However, hitting CTRL-A does nothing any more (so CTRL-A, c, which used to create a new window, now just types the letter c). This is true regardless of what I choose in

[Bug 931345] Re: Latest byobu in Precise ignores byobu-ctrl-a settings, treats CTRL-A like Emacs

2012-02-14 Thread Graham Binns
Hi Dustin, Following your steps above, I always get the emacs / start-of-line behaviour, regardless of whether I choose option 1 or 2 in byobu-ctrl-a. Here are the contents of ~/.byobu/keybindings.tmux: unbind-key -n C-a set -g prefix ^A,F12 bind a send-prefix -- You received this bug

[Bug 931345] Re: Latest byobu in Precise ignores byobu-ctrl-a settings, treats CTRL-A like Emacs

2012-02-15 Thread Graham Binns
Thanks Dustin, great work! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/931345 Title: Latest byobu in Precise ignores byobu-ctrl-a settings, treats CTRL-A like Emacs To manage notifications

[Bug 876534] Re: Audio Recording Problem in Ubuntu 11.10

2011-10-17 Thread Graham Binns
Retargeting this to Ubuntu. ** Project changed: launchpad = ubuntu -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/876534 Title: Audio Recording Problem in Ubuntu 11.10 To manage notifications

[Bug 820415] Re: bzr crashed with AttributeError in __init__(): 'NoneType' object has no attribute 'makefile'

2011-12-12 Thread Graham Binns
** Changed in: launchpadlib Status: New = Triaged ** Changed in: launchpadlib Importance: Undecided = High -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/820415 Title: bzr crashed with

[Bug 886271] Re: Mark Shuttleworth has lost contact to reality

2011-11-04 Thread Graham Binns
** Changed in: launchpad Status: New = Invalid ** Changed in: ubuntu Status: New = Invalid ** Project changed: launchpad = null -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/886271

[Bug 424849] Re: Launchpad should batch attachment notification emails

2011-04-06 Thread Graham Binns
** Changed in: launchpad Status: Triaged = In Progress ** Branch linked: lp:~gmb/launchpad/bug-424849 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/424849 Title: Launchpad should batch

[Bug 338046] Re: transmission tries to use downloads folder but it doesnt exist

2009-05-02 Thread Graham Binns
** Bug watch removed: trac.transmissionbt.com/attachment/ #1773 http://trac.transmissionbt.com/attachment/ticket/1773 -- transmission tries to use downloads folder but it doesnt exist https://bugs.launchpad.net/bugs/338046 You received this bug notification because you are a member of Ubuntu

[Bug 373763] Re: reporting a problem and getting an answer

2009-05-08 Thread Graham Binns
Daniel, Thank you for raising these concerns. I notice you've also filed a question, listed at the right-hand-side of this bug, under the list of subscribers. However, this bug is not the right place to discuss your concerns, for the following reasons: 1. What you've described is not a bug in

[Bug 373763] Re: reporting a problem and getting an answer

2009-05-08 Thread Graham Binns
Alternatively you can contact the Launchpad team directly at feedb...@launchpad.net. -- reporting a problem and getting an answer https://bugs.launchpad.net/bugs/373763 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

Re: [Bug 424849] Re: Launchpad should batch attachment notification emails

2011-04-27 Thread Graham Binns
On 27 April 2011 19:09, Brian Murray br...@ubuntu.com wrote: Well the api requires a comment when adding an attachment so it doesn't seem that there is a way to modify apport to prevent multiple email messages. Ah, see, here's the problem: Internally `comment` can be either a string or an

[Bug 703807] Re: launchpad sometimes serves download files as content-type text/html

2011-08-11 Thread Graham Binns
** Changed in: launchpad Assignee: (unassigned) = Graham Binns (gmb) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/703807 Title: launchpad sometimes serves download files as content-type text

[Bug 703807] Re: launchpad sometimes serves download files as content-type text/html

2011-08-12 Thread Graham Binns
** Changed in: launchpad Assignee: Graham Binns (gmb) = (unassigned) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/703807 Title: launchpad sometimes serves download files as content-type text

[Bug 568711] Re: Resume from suspend does not work

2011-08-12 Thread Graham Binns
** Bug watch removed: Linux Kernel Bug Tracker #16006 http://bugzilla.kernel.org/show_bug.cgi?id=16006 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/568711 Title: Resume from suspend does not

[Bug 661278] Re: Cannot install linux-image-2.6.35-22-generic_2.6.35-22.34_amd64.deb

2010-10-15 Thread Graham Binns
** Project changed: malone = null -- Cannot install linux-image-2.6.35-22-generic_2.6.35-22.34_amd64.deb https://bugs.launchpad.net/bugs/661278 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 560007] Re: [Lucid] Firefox crash at the start with a 'Segmentation fault (core dumped)'

2010-04-11 Thread Graham Binns
*** This bug is a duplicate of bug 538796 *** https://bugs.launchpad.net/bugs/538796 ** Project changed: malone = null -- [Lucid] Firefox crash at the start with a 'Segmentation fault (core dumped)' https://bugs.launchpad.net/bugs/560007 You received this bug notification because you are a

[Bug 445123] [NEW] There's no simple way to disable the gdm face browser

2009-10-06 Thread Graham Binns
Public bug reported: Binary package hint: gdm What happens: Having upgraded to Karmic, I am presented with the new gdm login screen, with its list of users. Not liking this much, preferring the old method of entering my username and password (old habits, I guess) I go to the Login screen

[Bug 445123] Re: There's no simple way to disable the gdm face browser

2009-10-07 Thread Graham Binns
I've filed the bug on the Gnome Bugzilla as requested. ** Bug watch added: GNOME Bug Tracker #597673 http://bugzilla.gnome.org/show_bug.cgi?id=597673 ** Changed in: gdm Importance: Undecided = Unknown ** Changed in: gdm Status: New = Unknown ** Changed in: gdm Remote watch: None

[Bug 490112] Re: Pendrive copy is very slow

2010-05-02 Thread Graham Binns
@Maciej what Steve means is that this isn't a bug in the Launchpad Bug tracker itself, which is what the bug had originally been filed against. If you look at the top of the bug page you'll notice that there are two tasks for this bug; one for the Launchpad Bug Tracker, which is marked Invalid and

[Bug 424849] Re: Launchpad should batch attachment notification emails

2010-06-24 Thread Graham Binns
** Branch linked: lp:~gmb/launchpad/batch-attachment-notifications- bug-424849 ** Changed in: malone Status: Triaged = In Progress ** Changed in: malone Assignee: (unassigned) = Graham Binns (gmb) ** Changed in: malone Milestone: None = 10.06 -- Launchpad should batch

[Bug 28326] Re: i810 Xv crashes after suspend - infinite resprawn

2010-07-10 Thread Graham Binns
** Project changed: malone = null -- i810 Xv crashes after suspend - infinite resprawn https://bugs.launchpad.net/bugs/28326 You received this bug notification because you are a member of Kubuntu Bugs, which is a subscriber of a duplicate bug. -- kubuntu-bugs mailing list

[Bug 602360] Re: The server at bugs.lauchpad.net is taking too long to respond.

2010-07-06 Thread Graham Binns
@papukaija can you give a specific URL and a specific problem? Do you get a timeout error or does the page just take a while to appear? There are a multitude of bugs about increasing Launchpad's performance, so it's quite possible that this one has been reported elsewhere. Unfortunately, whilst I

[Bug 602360] Re: The server at bugs.lauchpad.net is taking too long to respond.

2010-07-06 Thread Graham Binns
@philinux Apologies; I was addressing my comment to the most recent commenter. Still, my question stands. At the moment your bug report reads: Launchpad needs to increase it's bandwidth. The connection has timed out. Happening a lot. Which doesn't really tell us much about the problem that

[Bug 602360] Re: The server at bugs.lauchpad.net is taking too long to respond.

2010-07-07 Thread Graham Binns
If you're seeing browser timeouts (i.e. your browser shows a plain timeout message, rather than a Launchpad page telling you that Launchpad couldn't render your request in time) then that suggests that the problem is somewhere in your connection to the Launchpad servers, rather than being a bug in

[Bug 424849] Re: Launchpad should batch attachment notification emails

2010-07-07 Thread Graham Binns
** Changed in: malone Milestone: 10.07 = 10.08 -- Launchpad should batch attachment notification emails https://bugs.launchpad.net/bugs/424849 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 286193] Re: Bug subscription wont accept unsubscribe command

2010-06-02 Thread Graham Binns
** Tags added: story-better-bug-notification -- Bug subscription wont accept unsubscribe command https://bugs.launchpad.net/bugs/286193 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 286193] Re: Bug subscription wont accept unsubscribe command

2010-06-02 Thread Graham Binns
This bug should be fixed at the same time as bug 357340 -- Bug subscription wont accept unsubscribe command https://bugs.launchpad.net/bugs/286193 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 424849] Re: merge multiple notification emails into one

2010-06-04 Thread Graham Binns
** Tags added: story-better-bug-notification -- merge multiple notification emails into one https://bugs.launchpad.net/bugs/424849 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

[Bug 424849] Re: Launchpad should batch attachment notification emails

2010-06-04 Thread Graham Binns
** Summary changed: - merge multiple notification emails into one + Launchpad should batch attachment notification emails ** Changed in: malone Importance: Low = High -- Launchpad should batch attachment notification emails https://bugs.launchpad.net/bugs/424849 You received this bug

[Bug 424849] Re: Launchpad should batch notification emails

2010-06-04 Thread Graham Binns
Josh, the original report was about the problem with notifications generated when apport uploads attachments to Launchpad (the original summary was ambiguous; I'm looking at the description here). That's specifically about attachment notifications. We're about to start work on a big push to fix a

Re: [Bug 424849] Re: Launchpad should batch attachment notification emails

2010-06-04 Thread Graham Binns
On 4 June 2010 20:10, Leo leonardo.ro...@gmail.com wrote: Is it simpler to detect and batch attachments than just replacing on- the-fly notifications by 5-minute-interval digests? At this point, yes. The bug notification code (which can be found in lib/canonical/launchpad/mailnotification.py

  1   2   >