[Bug 201786] Re: ssh Agent admitted failure to sign using the key on big endian machines

2015-08-25 Thread Peter Ansell
The workaround of the following commands only works until I log out (not
restarting the computer):

mv $SSH_AUTH_SOCK $SSH_AUTH_SOCK.broken
ssh-agent -a $SSH_AUTH_SOCK
ssh-add


When I log back in, without having to restart the computer, the SSH_AUTH_SOCK 
is corrupted again, and it seems to be consistent. If there are any commands I 
could run before and after logging out I am more than happy to contribute.

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

Title:
  ssh Agent admitted failure to sign using the key on big endian
  machines

To manage notifications about this bug go to:
https://bugs.launchpad.net/seahorse/+bug/201786/+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 201786] Re: ssh Agent admitted failure to sign using the key on big endian machines

2015-08-25 Thread Peter Ansell
The workaround of the following commands only works until I log out (not
restarting the computer):

mv $SSH_AUTH_SOCK $SSH_AUTH_SOCK.broken
ssh-agent -a $SSH_AUTH_SOCK
ssh-add


When I log back in, without having to restart the computer, the SSH_AUTH_SOCK 
is corrupted again, and it seems to be consistent. If there are any commands I 
could run before and after logging out I am more than happy to contribute.

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

Title:
  ssh Agent admitted failure to sign using the key on big endian
  machines

To manage notifications about this bug go to:
https://bugs.launchpad.net/seahorse/+bug/201786/+subscriptions

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


[Bug 1380084] Re: SSH client requires SSH_AUTH_SOCK=0 will not work without it, can't use key auth without SSH_AUTH_SOCK=0

2014-11-27 Thread Peter Ansell
The workaround to put export SSH_AUTH_SOCK=0 in my .bashrc also for me
on 14.04 with the following versions:

$ ssh -V
OpenSSH_6.6.1p1 Ubuntu-2ubuntu2, OpenSSL 1.0.1f 6 Jan 2014
$ uname -a
Linux mycomputer 3.13.0-40-generic #69-Ubuntu SMP Thu Nov 13 17:53:56 UTC 
2014 x86_64 x86_64 x86_64 GNU/Linux

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

Title:
  SSH client requires SSH_AUTH_SOCK=0 will not work without it, can't
  use key auth without SSH_AUTH_SOCK=0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/1380084/+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 1380084] Re: SSH client requires SSH_AUTH_SOCK=0 will not work without it, can't use key auth without SSH_AUTH_SOCK=0

2014-11-27 Thread Peter Ansell
The workaround to put export SSH_AUTH_SOCK=0 in my .bashrc also for me
on 14.04 with the following versions:

$ ssh -V
OpenSSH_6.6.1p1 Ubuntu-2ubuntu2, OpenSSL 1.0.1f 6 Jan 2014
$ uname -a
Linux mycomputer 3.13.0-40-generic #69-Ubuntu SMP Thu Nov 13 17:53:56 UTC 
2014 x86_64 x86_64 x86_64 GNU/Linux

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

Title:
  SSH client requires SSH_AUTH_SOCK=0 will not work without it, can't
  use key auth without SSH_AUTH_SOCK=0

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

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


[Bug 1033229] Re: jk sending the activate of null to server (patch available)

2012-10-23 Thread Peter Ansell
I came across the upstream bug referenced in this bug report after
getting mod_jk working with tomcat7, while not having it work with
jenkins/winstone due to the NullPointerException.

Is there a time that version 1.2.37 has to sit on the 12.10 and 13.04
branches before fixes to support common applications like jenkins get
accepted back into the 12.04 branch?

Versions 1.2.33 and 1.2.34 were known to be unstable, but the current
1.2.37 release was released on 31 May 2012 so if it was unstable then we
would know about it by now.

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

Title:
  jk sending the activate of null to server (patch available)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libapache-mod-jk/+bug/1033229/+subscriptions

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


[Bug 1047762] Re: java-6-openjdk-amd64 + Eclipse not working

2012-09-12 Thread Peter Ansell
Reinstalling tzdata-java worked for me after updating openjdk-7 in the
last few hours:

sudo apt-get --reinstall install tzdata-java

It was the only thing I did to fix the bug for me. I didn't modify the
manually installed Eclipse Juno (4.2) that I was running when I noticed
the bug, and the NullPointerException was reproducible using the
following java file--compiled and run on the command line--up until I
reinstalled tzdata-java:

import java.util.TimeZone;

public class TZTest {
public static void main(String args[]) {
String[] availableIds = TimeZone.getAvailableIDs();
   System.out.println(Length: +availableIds.length);
for (int i = 0; i  availableIds.length; i++) {
System.out.println(ID #+i+: +availableIds[i]);
}
}
}

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

Title:
  java-6-openjdk-amd64 + Eclipse not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-6/+bug/1047762/+subscriptions

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


[Bug 109440] Re: Two context menus on toolbar right click.

2007-05-04 Thread Peter Ansell
** Bug watch added: Mozilla Bugzilla #353956
   https://bugzilla.mozilla.org/show_bug.cgi?id=353956

** Also affects: firefox (upstream) via
   https://bugzilla.mozilla.org/show_bug.cgi?id=353956
   Importance: Unknown
   Status: Unknown

-- 
Two context menus on toolbar right click.
https://bugs.launchpad.net/bugs/109440
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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