[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-08-13 Thread Till Klampaeckel
Any update, help?

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

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

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


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-26 Thread Till Klampaeckel
Hey,

I tried your code:

1. $USER doesn't seem to be set in this context so it runs regardless.
;-) At least it doesn't seem to be set during the login.

2. Whenever I add strace, it magically works – without, it defuncts.

I looked around further and it took me a while to figure this out – so the 
offending code in my case is in here:
/usr/lib/python2.6/dist-packages/landscape/lib/sysstats.py

and imports getProcessOutputAndValue from here:
/usr/share/pyshared/twisted/internet/utils.py

I couldn't figure out how this would block, but essentially it looks
like you could pass callbacks to the function which is currently not
happending.

I was wondering if there is a way to debug this in Python. E.g. my
skills are currently limited to putting print into files. But that
doesn't work to well. ;-)

Till

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

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

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

[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-26 Thread Till Klampaeckel
Here is an idea for a patch – but I am not sure if it actually works:

--- /usr/share/pyshared/landscape/lib/sysstats.py.orig  2012-07-26 
15:26:42.0 +
+++ /usr/share/pyshared/landscape/lib/sysstats.py   2012-07-26 
15:32:38.0 +
@@ -55,6 +55,13 @@ class MemoryStats(object):
 def get_logged_in_users():
 result = getProcessOutputAndValue(who, [-q], env=os.environ)
 
+def logged_in_users_err_callback(result):
+ Errback from getProcessOutputAndValue 
+out, err, code = result
+raise Exception(Error getting users exited %d with error: %s (%s) % 
(code, err, out))
+
+result.addErrback(logged_in_users_err_callback)
+
 def parse_output((stdout_data, stderr_data, status)):
 if status != 0:
 raise CommandError(stderr_data)

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

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

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

[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-16 Thread Till Klampaeckel
Well, I am a 100% sure it's /usr/bin/landscape-sysinfo. It happened
fairly consistently last week. To a point where I couldn't login at all,
unless I rebooted the instance and logged in right away. We have now
removed the landscape-client to ensure login always works.

When I ran this script while logged in, it would always work as well.
Just during the login it would block.

I'm not too familiar with python and could not step-through the twistd
code. Would you have a tip what I could do to figure out why it blocks
and doesn't let me login when I re-install landscape-client on a test
instance? I am guessing there is no general error log which would allow
me get errors from.

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

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

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


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-13 Thread Till Klampaeckel
I have no such thing – my users are 'local'.

It's a stock 10.04.4, this is how it looks like right now:

till@statsd1:~$ ls -lah /etc/update-motd.d/
total 48K
drwxr-xr-x  2 root root 4.0K 2012-07-12 15:19 .
drwxr-xr-x 89 root root 4.0K 2012-07-13 10:25 ..
-rwxr-xr-x  1 root root   57 2010-04-23 09:45 00-header
-rwxr-xr-x  1 root root  248 2010-04-23 09:45 10-help-text
-rwxr-xr-x  1 root root   65 2010-04-13 20:45 20-cpu-checker
-rwxr-xr-x  1 root root  627 2011-09-30 07:16 51_update-motd
-rwxr-xr-x  1 root root   71 2010-04-13 20:45 90-updates-available
-rwxr-xr-x  1 root root   61 2010-10-13 07:40 91-release-upgrade
-rwxr-xr-x  1 root root 1.3K 2010-12-03 15:50 92-uec-upgrade-available
-rwxr-xr-x  1 root root  306 2011-09-30 07:16 98-cloudguest
-rwxr-xr-x  1 root root   69 2010-04-13 20:45 98-reboot-required
-rwxr-xr-x  1 root root  261 2010-04-23 09:45 99-footer

Note: I removed landscape-client (which in turn removes the offending
script from that directory) and the issues are gone.

@Andreas: Did you check out my askubuntu link
(http://askubuntu.com/a/162373/11244)? It has process list and all that.
It def. stalls at the sysinfo script and it seems like the call to who
broke.

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

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

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

[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-13 Thread Till Klampaeckel
I believe it's this: ami-6936fb00

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

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

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


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-13 Thread Till Klampaeckel
Region is 'east1'

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

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

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


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-12 Thread Till Klampaeckel
I'm on 10.04.4 (latest kernel, everything) and I just spent an entire
work-day debugging pam_motd behavior.

For some reason, one of the scripts fails (defuncts) when I try to log
into a server. Add to that, this server is on EC2 so there is no way to
use the terminal either.

Anyhow – for a sumary I've posted everything here:
http://askubuntu.com/a/162373/11244

The solution was to disable pam_motd in these files:

 /etc/pam.d/sshd
 /etc/pam.d/login

The lack of debugging facilities in here are one of the reasons why this
should be removed period. I don't really care if some people don't get a
pretty MOTD then.

The larger issue here is the potential block of a log in process, which
makes it severe. There seems to be no way to figure out what exactly
is wrong because you are literally logged out of the instance which is
IMHO unacceptable behavior for an LTS.

There should be at least a timeout which will eventually make the
scripts fail if they cannot complete.

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

Title:
  pam_motd needs a module option to disable in-line dynamic updates

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

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

[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-12 Thread Till Klampaeckel
I want to add that it seems like the following removes the files as
well:

apt-get purge landscape-client

I did this to avoid having to maintain pam configuration. Maybe someone
escalate it there. I still fail to understand how you can add something
to the login process which might block the user from logging in.

** Also affects: landscape-client
   Importance: Undecided
   Status: New

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

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

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


[Bug 805423] Re: pam_motd needs a module option to disable in-line dynamic updates

2012-07-12 Thread Till Klampaeckel
My login session never timeout, I was actually authenticated but never
saw a prompt.

I let it running (sitting there) over night and the shell was still
'active' there after 8 hours – but no prompt.

The load had nothing to do with this. I booted the server (pretty
blank), logged in and then further attempts failed right away. If I
waited too long (and I don't have an exact time), I could not log in at
all.

I *think* it stalled at trying to find out how many people are logged in
to the system. I saw a [who] defunct in my process list. But I have no
idea why that caused the my login process to block.

I looked at this script and also ran it while I was logged in and it
completely within reason. Though I would say that it adds too much time
to the login still. It's a noticable delay.

Btw, check out the 'ask ubuntu' link I left in my comment, it contains
the process list with the defunct who and the sysinfo script running.

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

Title:
  pam_motd needs a module option to disable in-line dynamic updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/landscape-client/+bug/805423/+subscriptions

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

[Bug 606365] Re: client.ovpn file is not completely imported

2011-04-08 Thread Till Klampaeckel
To add to this - the export feature is broken too.

I tried to rescue a couple profiles which I had done on another
workstation for backup purposes, but it didn't work at all in 10.04.1.

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

Title:
  client.ovpn file is not completely imported

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


[Bug 444950] Re: sound stops working with pulseaudio

2011-03-03 Thread Till Klampaeckel
I'm on 10.04 (lucid, LTS) and pulseaudio broke after yesterday's update.
Broke in this case means that sound is completely gone - no device is
recognized anymore.

This is the update I did (/var/log/apt/history.log):

Start-Date: 2011-03-02  11:49:56
Install: linux-headers-2.6.32-29-generic (2.6.32-29.58), 
linux-headers-2.6.32-29 (2.6.32-29.58), linux-image-2.6.32-29-generic 
(2.6.32-29.58)
Upgrade: linux-generic (2.6.32.28.32, 2.6.32.29.35), linux-headers-generic 
(2.6.32.28.32, 2.6.32.29.35), linux-image-generic (2.6.32.28.32, 2.6.32.29.35), 
linux-libc-dev (2.6.32-28.55, 2.6.32-29.58)
End-Date: 2011-03-02  11:51:23

And since then syslog states:
Mar  3 11:04:15 till-laptop pulseaudio[1328]: module-alsa-card.c: Failed to 
find a working profile.
Mar  3 11:04:15 till-laptop pulseaudio[1328]: module.c: Failed to load  module 
module-alsa-card (argument: device_id=29 name=platform-thinkpad_acpi 
card_name=alsa_card.platform-thinkpad_acpi tsched=yes ignore_dB=no 
card_properties=module-udev-detect.discovered=1): initialization failed.

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

Title:
  sound stops working with pulseaudio

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


[Bug 723884] Re: Exception will attempting to quit ftp session

2011-02-24 Thread Till Klampaeckel
Even though it's not in launchpad's codebase, isn't the error launchpad
related?

Maybe this is for launchpad's infrastructure team.

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

Title:
  Exception will attempting to quit ftp session

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


[Bug 606365] Re: client.ovpn file is not completely imported

2010-11-05 Thread Till Klampaeckel
Thanks for posting the workaround, it's definitively a small bug in
network-manager-openvpn.

-- 
client.ovpn file is not completely imported
https://bugs.launchpad.net/bugs/606365
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 643100] Re: Recent update broke dhcp

2010-09-28 Thread Till Klampaeckel
As I said, not aware of setting up any external repositories to install
the network-manager. Initially, I had 9.04, went to Karmic and recently
to Lucid. I always used the software-manager to run upgrades, no other
external repositories involved. I don't know why I would install the
network-manager from anywhere else.

I can't run any command right now, because I moved on to a fresh install
with a new HDD.

-- 
Recent update broke dhcp
https://bugs.launchpad.net/bugs/643100
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 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 643100] Re: Recent update broke dhcp

2010-09-28 Thread Till Klampaeckel
As I said, not aware of setting up any external repositories to install
the network-manager. Initially, I had 9.04, went to Karmic and recently
to Lucid. I always used the software-manager to run upgrades, no other
external repositories involved. I don't know why I would install the
network-manager from anywhere else.

I can't run any command right now, because I moved on to a fresh install
with a new HDD.

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

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


[Bug 643100] Re: Recent update broke dhcp

2010-09-22 Thread Till Klampaeckel
This is my complete /etc/apt/sources.list:


# deb http://download.openvz.org/debian-systs lenny openvz

deb http://ubuntu.intergenia.de/ubuntu/ lucid main restricted
deb-src http://ubuntu.intergenia.de/ubuntu/ lucid restricted main multiverse 
universe #Added by software-properties

## Major bug fix updates produced after the final release of the
## distribution.
deb http://ubuntu.intergenia.de/ubuntu/ lucid-updates main restricted
deb-src http://ubuntu.intergenia.de/ubuntu/ lucid-updates restricted main 
multiverse universe #Added by software-properties

deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu lucid main
deb-src http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu lucid main

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://ubuntu.intergenia.de/ubuntu/ lucid universe
deb http://ubuntu.intergenia.de/ubuntu/ lucid-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://ubuntu.intergenia.de/ubuntu/ lucid multiverse
deb http://ubuntu.intergenia.de/ubuntu/ lucid-updates multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://ubuntu.intergenia.de/ubuntu/ lucid-backports main restricted 
universe multiverse
deb-src http://ubuntu.intergenia.de/ubuntu/ lucid-backports main restricted 
universe multiverse #Added by software-properties

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository. This software is not part of Ubuntu, but is
## offered by Canonical and the respective vendors as a service to Ubuntu
## users.
deb http://archive.canonical.com/ubuntu lucid partner
deb-src http://archive.canonical.com/ubuntu lucid partner

deb http://security.ubuntu.com/ubuntu/ lucid-security restricted main 
multiverse universe
deb-src http://security.ubuntu.com/ubuntu/ lucid-security restricted main 
multiverse universe #Added by software-properties
deb http://ubuntu.intergenia.de/ubuntu/ lucid-proposed restricted main 
multiverse universe
deb-src http://ubuntu.intergenia.de/ubuntu/ lucid-proposed restricted main 
multiverse universe #Added by software-properties

-- 
Recent update broke dhcp
https://bugs.launchpad.net/bugs/643100
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 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 643100] Re: Recent update broke dhcp

2010-09-22 Thread Till Klampaeckel
This is my complete /etc/apt/sources.list:


# deb http://download.openvz.org/debian-systs lenny openvz

deb http://ubuntu.intergenia.de/ubuntu/ lucid main restricted
deb-src http://ubuntu.intergenia.de/ubuntu/ lucid restricted main multiverse 
universe #Added by software-properties

## Major bug fix updates produced after the final release of the
## distribution.
deb http://ubuntu.intergenia.de/ubuntu/ lucid-updates main restricted
deb-src http://ubuntu.intergenia.de/ubuntu/ lucid-updates restricted main 
multiverse universe #Added by software-properties

deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu lucid main
deb-src http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu lucid main

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://ubuntu.intergenia.de/ubuntu/ lucid universe
deb http://ubuntu.intergenia.de/ubuntu/ lucid-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://ubuntu.intergenia.de/ubuntu/ lucid multiverse
deb http://ubuntu.intergenia.de/ubuntu/ lucid-updates multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://ubuntu.intergenia.de/ubuntu/ lucid-backports main restricted 
universe multiverse
deb-src http://ubuntu.intergenia.de/ubuntu/ lucid-backports main restricted 
universe multiverse #Added by software-properties

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository. This software is not part of Ubuntu, but is
## offered by Canonical and the respective vendors as a service to Ubuntu
## users.
deb http://archive.canonical.com/ubuntu lucid partner
deb-src http://archive.canonical.com/ubuntu lucid partner

deb http://security.ubuntu.com/ubuntu/ lucid-security restricted main 
multiverse universe
deb-src http://security.ubuntu.com/ubuntu/ lucid-security restricted main 
multiverse universe #Added by software-properties
deb http://ubuntu.intergenia.de/ubuntu/ lucid-proposed restricted main 
multiverse universe
deb-src http://ubuntu.intergenia.de/ubuntu/ lucid-proposed restricted main 
multiverse universe #Added by software-properties

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

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


[Bug 643100] Re: Recent update broke dhcp

2010-09-21 Thread Till Klampaeckel
I started off with 9.04, went to 9.10 (karmic) and then on to 10.04
(lucid).

I never had to I install or reinstall dhcp, ever.

I just recently had to check into this because since the package was
removed, dhcp didn't work at all anymore. And even if I use
dhcp(3)-client which (I think) is an official package, the integration
with the network-manager seems broken - see error message in the initial
post.

-- 
Recent update broke dhcp
https://bugs.launchpad.net/bugs/643100
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 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 643100] Re: Recent update broke dhcp

2010-09-21 Thread Till Klampaeckel
With some help in #ubu...@freenode:

I think my incompatibility comes from the network-manager:

t...@till-laptop:~$ sudo apt-cache policy network-manager
network-manager:
  Installed: 0.8-0ubuntu5~nmt5~karmic
  Candidate: 0.8-0ubuntu5~nmt5~karmic
  Version table:
 *** 0.8-0ubuntu5~nmt5~karmic 0
100 /var/lib/dpkg/status
 0.8-0ubuntu3 0
500 http://ubuntu.intergenia.de/ubuntu/ lucid/main Packages

I updated my system from karmic to lucid back in April. So I'm not
sure why this is either still installed or was installed again.

On IRC people said that network-manager could have updated to karmic,
if it's the same version number as the lucid release. I'm just putting
this on here - no comment.

-- 
Recent update broke dhcp
https://bugs.launchpad.net/bugs/643100
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 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 643100] Re: Recent update broke dhcp

2010-09-21 Thread Till Klampaeckel
With some help in #ubu...@freenode:

I think my incompatibility comes from the network-manager:

t...@till-laptop:~$ sudo apt-cache policy network-manager
network-manager:
  Installed: 0.8-0ubuntu5~nmt5~karmic
  Candidate: 0.8-0ubuntu5~nmt5~karmic
  Version table:
 *** 0.8-0ubuntu5~nmt5~karmic 0
100 /var/lib/dpkg/status
 0.8-0ubuntu3 0
500 http://ubuntu.intergenia.de/ubuntu/ lucid/main Packages

I updated my system from karmic to lucid back in April. So I'm not
sure why this is either still installed or was installed again.

On IRC people said that network-manager could have updated to karmic,
if it's the same version number as the lucid release. I'm just putting
this on here - no comment.

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

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


[Bug 643100] Re: Recent update broke dhcp

2010-09-21 Thread Till Klampaeckel
I started off with 9.04, went to 9.10 (karmic) and then on to 10.04
(lucid).

I never had to I install or reinstall dhcp, ever.

I just recently had to check into this because since the package was
removed, dhcp didn't work at all anymore. And even if I use
dhcp(3)-client which (I think) is an official package, the integration
with the network-manager seems broken - see error message in the initial
post.

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

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


[Bug 643100] Re: Recent update broke dhcp

2010-09-20 Thread Till Klampaeckel
I'm not sure - if you tell me where they are located, I can look into
them.

-- 
Recent update broke dhcp
https://bugs.launchpad.net/bugs/643100
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 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 643100] Re: Recent update broke dhcp

2010-09-20 Thread Till Klampaeckel
Adding this link as sort of related:
http://pugio.net/2010/08/fix-dhcp-problems-in-networkmager.html

The only problem is that I can't seem install that isc-dhcp-client
package.

-- 
Recent update broke dhcp
https://bugs.launchpad.net/bugs/643100
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 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 643100] Re: Recent update broke dhcp

2010-09-20 Thread Till Klampaeckel
Thanks!

It's in history.log:

Here are the packages - isc-dhcp-client and isc-dhcp-common. And I can't
reinstall them either.

Start-Date: 2010-09-18  16:25:18
Remove: linux-image-2.6.31-21-generic (2.6.31-21.59), riak (0.11.0-1344), 
ubuntu-minimal (1.197), thunderbird-3.0 
(3.0.3~hg20100217r4732+nobinonly-0ubuntu1~umd1~karmic), isc-dhcp-client 
(4.1.1-1ubuntu1~nmt1~karmic)
End-Date: 2010-09-18  16:25:46

Start-Date: 2010-09-18  16:28:34
Remove: isc-dhcp-common (4.1.1-1ubuntu1~nmt1~karmic)
End-Date: 2010-09-18  16:28:35


[ Sort of related, I have no idea why my email client was uninstalled either, 
but that's a different story. ]

-- 
Recent update broke dhcp
https://bugs.launchpad.net/bugs/643100
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 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 643100] Re: Recent update broke dhcp

2010-09-20 Thread Till Klampaeckel
I'm not sure - if you tell me where they are located, I can look into
them.

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

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


[Bug 643100] Re: Recent update broke dhcp

2010-09-20 Thread Till Klampaeckel
Adding this link as sort of related:
http://pugio.net/2010/08/fix-dhcp-problems-in-networkmager.html

The only problem is that I can't seem install that isc-dhcp-client
package.

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

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


[Bug 643100] Re: Recent update broke dhcp

2010-09-20 Thread Till Klampaeckel
Thanks!

It's in history.log:

Here are the packages - isc-dhcp-client and isc-dhcp-common. And I can't
reinstall them either.

Start-Date: 2010-09-18  16:25:18
Remove: linux-image-2.6.31-21-generic (2.6.31-21.59), riak (0.11.0-1344), 
ubuntu-minimal (1.197), thunderbird-3.0 
(3.0.3~hg20100217r4732+nobinonly-0ubuntu1~umd1~karmic), isc-dhcp-client 
(4.1.1-1ubuntu1~nmt1~karmic)
End-Date: 2010-09-18  16:25:46

Start-Date: 2010-09-18  16:28:34
Remove: isc-dhcp-common (4.1.1-1ubuntu1~nmt1~karmic)
End-Date: 2010-09-18  16:28:35


[ Sort of related, I have no idea why my email client was uninstalled either, 
but that's a different story. ]

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

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


[Bug 643100] [NEW] Recent update broke dhcp

2010-09-19 Thread Till Klampaeckel
Public bug reported:

With the last Ubuntu update dhcp(3)-client got uninstalled on my system.

So when the network-manager tried to connected I read the following in
/var/log/syslog:

Sep 19 18:34:51 till-laptop NetworkManager: WARN  dhclient_start():
/sbin/dhclient does not exist.

So I reinstalled dhcp3-client (using aptitude install dhcp3-client) and
now I read the following:

Sep 19 23:48:35 till-laptop dhclient: Usage: dhclient [-1dqrx] [-nw] [-p 
port] [-s server]
Sep 19 23:48:35 till-laptop dhclient: [-cf config-file] [-lf 
lease-file][-pf pid-file] [-e VAR=val]
Sep 19 23:48:35 till-laptop dhclient: [-sf script-file] 
[interface]
Sep 19 23:50:58 till-laptop dhclient: Internet Systems Consortium DHCP Client 
V3.1.3

The workaround is to open a terminal and type: sudo dhclient3 and
everything seems to work. The only downside is that the network manager
doesn't seem to recognize this. So it keeps spinning up there.

You're only affected if you try to use dhcp. If you hardcode network
settings in the connection profile (in network-manager), it works like
expected.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: dhcp3-client 3.1.3-2ubuntu3
ProcVersionSignature: Ubuntu 2.6.32-25.43-generic 2.6.32.21+drm33.7
Uname: Linux 2.6.32-25-generic x86_64
Architecture: amd64
Date: Sun Sep 19 23:58:43 2010
KernLog:
 
ProcCmdLine: root=UUID=24AE5D0FAE5CDB3E loop=/ubuntu/disks/root.disk ro quiet 
splash
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: dhcp3

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


** Tags: amd64 apport-bug lucid

-- 
Recent update broke dhcp
https://bugs.launchpad.net/bugs/643100
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 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 643100] Re: Recent update broke dhcp

2010-09-19 Thread Till Klampaeckel

** Attachment added: .etc.apparmor.d.sbin.dhclient3.txt
   
https://bugs.launchpad.net/bugs/643100/+attachment/1610516/+files/.etc.apparmor.d.sbin.dhclient3.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/643100/+attachment/1610517/+files/Dependencies.txt

** Attachment added: Dhclient.txt
   
https://bugs.launchpad.net/bugs/643100/+attachment/1610518/+files/Dhclient.txt

** Attachment added: DhclientLeases.txt
   
https://bugs.launchpad.net/bugs/643100/+attachment/1610519/+files/DhclientLeases.txt

** Attachment added: RelatedPackageVersions.txt
   
https://bugs.launchpad.net/bugs/643100/+attachment/1610520/+files/RelatedPackageVersions.txt

-- 
Recent update broke dhcp
https://bugs.launchpad.net/bugs/643100
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 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 643100] [NEW] Recent update broke dhcp

2010-09-19 Thread Till Klampaeckel
Public bug reported:

With the last Ubuntu update dhcp(3)-client got uninstalled on my system.

So when the network-manager tried to connected I read the following in
/var/log/syslog:

Sep 19 18:34:51 till-laptop NetworkManager: WARN  dhclient_start():
/sbin/dhclient does not exist.

So I reinstalled dhcp3-client (using aptitude install dhcp3-client) and
now I read the following:

Sep 19 23:48:35 till-laptop dhclient: Usage: dhclient [-1dqrx] [-nw] [-p 
port] [-s server]
Sep 19 23:48:35 till-laptop dhclient: [-cf config-file] [-lf 
lease-file][-pf pid-file] [-e VAR=val]
Sep 19 23:48:35 till-laptop dhclient: [-sf script-file] 
[interface]
Sep 19 23:50:58 till-laptop dhclient: Internet Systems Consortium DHCP Client 
V3.1.3

The workaround is to open a terminal and type: sudo dhclient3 and
everything seems to work. The only downside is that the network manager
doesn't seem to recognize this. So it keeps spinning up there.

You're only affected if you try to use dhcp. If you hardcode network
settings in the connection profile (in network-manager), it works like
expected.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: dhcp3-client 3.1.3-2ubuntu3
ProcVersionSignature: Ubuntu 2.6.32-25.43-generic 2.6.32.21+drm33.7
Uname: Linux 2.6.32-25-generic x86_64
Architecture: amd64
Date: Sun Sep 19 23:58:43 2010
KernLog:
 
ProcCmdLine: root=UUID=24AE5D0FAE5CDB3E loop=/ubuntu/disks/root.disk ro quiet 
splash
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: dhcp3

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


** Tags: amd64 apport-bug lucid

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

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


[Bug 643100] Re: Recent update broke dhcp

2010-09-19 Thread Till Klampaeckel

** Attachment added: .etc.apparmor.d.sbin.dhclient3.txt
   
https://bugs.launchpad.net/bugs/643100/+attachment/1610516/+files/.etc.apparmor.d.sbin.dhclient3.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/643100/+attachment/1610517/+files/Dependencies.txt

** Attachment added: Dhclient.txt
   
https://bugs.launchpad.net/bugs/643100/+attachment/1610518/+files/Dhclient.txt

** Attachment added: DhclientLeases.txt
   
https://bugs.launchpad.net/bugs/643100/+attachment/1610519/+files/DhclientLeases.txt

** Attachment added: RelatedPackageVersions.txt
   
https://bugs.launchpad.net/bugs/643100/+attachment/1610520/+files/RelatedPackageVersions.txt

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

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


[Bug 606365] [NEW] client.ovpn file is not completely imported

2010-07-16 Thread Till Klampaeckel
Public bug reported:

Binary package hint: network-manager-openvpn-gnome

So a client of mine runs an OpenVPN setup. It exported a client.ovpn
file but it fails to completely import this file using the network-
manager (gnome) on Ubuntu 10.04.

When I import the file, it gives me the name (client) and gateway
(vpn.example.org) on the initial screen. No other fields are populated
even though the client.ovpn file also includes a user certificate,
server certifikate and a private key.

When I go to advanced, some (most) of the settings obviously seem to
import correct, others not at all. E.g. none of the TLS settings (key
and key direction) are imported.

From what I understand I should be able to use this without any
additional settings.

The following software is installed through aptitude:

 * openvpn (2.1.0)
 * openvpn-blacklist
 * network-manager-openvpn
 * network-manager-openvpn-gnome

** Affects: network-manager-openvpn (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: network-manager openvpn

-- 
client.ovpn file is not completely imported
https://bugs.launchpad.net/bugs/606365
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 606365] Re: client.ovpn file is not completely imported

2010-07-16 Thread Till Klampaeckel
I wanted to share the configuration (dummy):

remote vpn.example.org
client
proto tcp
port 443
dev tun
ns-cert-type server
auth-user-pass
auth-retry interact
comp-lzo
verb 3

ca
-BEGIN CERTIFICATE-
FOO
-END CERTIFICATE-
/ca

cert
-BEGIN CERTIFICATE-
FOO
-END CERTIFICATE-
/cert

key
-BEGIN RSA PRIVATE KEY-
FOO
-END RSA PRIVATE KEY-
/key

key-direction 1
tls-auth
#
# 2048 bit OpenVPN static key (Server Agent)
#
-BEGIN OpenVPN Static key V1-
FOO
-END OpenVPN Static key V1-
/tls-auth


So the quickfix here is that you can dissect the file and import it all once 
you figured out the corresponding dropdown/whatever in the network manager. So 
for example in the example above I needed to select Passwords with 
certificates (TLS) and enter another user/pass along with it, no password for 
the key and also the TLS key and direction in advanced.

One more note - the following settings seemed to get imported:
proto, port, comp-lzo, remote 

The rest was ignored.

I hope this helps.

-- 
client.ovpn file is not completely imported
https://bugs.launchpad.net/bugs/606365
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 556255] Re: unlock screen -dialog comes up twice

2010-05-16 Thread Till Klampaeckel
This issue is totally random for me. It can back a couple of times, but
not on a regular basis.

-- 
unlock screen -dialog comes up twice
https://bugs.launchpad.net/bugs/556255
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 556255] Re: unlock screen -dialog comes up twice

2010-04-30 Thread Till Klampaeckel
I can confirm the issue as well. I just updated from 9.10 to 10.04.
Rebooted a couple of times, tried the debug mode. Same game.


t...@till-laptop:~$ ps auxf |grep [g]nome-screensaver
till  1954  0.0  0.1 176600  7436 ?Ss   09:48   0:00 
gnome-screensaver
till  1955  0.0  0.1 176720  7540 ?Ss   09:48   0:00 
/usr/bin/gnome-screensaver


Can you provide more pointers as of what to look for?

-- 
unlock screen -dialog comes up twice
https://bugs.launchpad.net/bugs/556255
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 556255] Re: unlock screen -dialog comes up twice

2010-04-30 Thread Till Klampaeckel
Did a little digging.

1) Used the same session, logged out and started an xterm session - no
gnome-screensaver.

2) Logged out of the xterm session and logged back into gnome - 1
instance of gnome-screensaver.

Sounds like two get started only when the system boots? Can't figure out
how or where there. From what I can tell (through the comments on this
bug), there are no duplicate scripts etc..

-- 
unlock screen -dialog comes up twice
https://bugs.launchpad.net/bugs/556255
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 459016] [NEW] Please update RoundCube to 0.3-stable

2009-10-23 Thread Till Klampaeckel
Public bug reported:

Binary package hint: roundcube

Please update the RoundCube package to use the 0.3-stable release.

Here's a direct link to a debian/ubuntu compatible package:
http://downloads.sourceforge.net/project/roundcubemail/roundcubemail-dependent/0.3-stable/roundcubemail-0.3-stable-dep.tar.gz?use_mirror=dfn

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

-- 
Please update RoundCube to 0.3-stable
https://bugs.launchpad.net/bugs/459016
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 457660] Re: jmeter.gui.action.Load: Unexpected error java.lang.IllegalArgumentException: XPP3 pull parser library not present. Specify another driver. For example: new XStream(new DomDriver())

2009-10-22 Thread Till Klampaeckel
I can confirm that the fix in #4 works and fixes the issue.

-- 
jmeter.gui.action.Load: Unexpected error java.lang.IllegalArgumentException: 
XPP3 pull parser library not present. Specify another driver. For example: new 
XStream(new DomDriver())
https://bugs.launchpad.net/bugs/457660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 99489] Re: avahi-autoipd gives default route to 0.0.0.0

2009-10-17 Thread Till Klampaeckel
I had the same issue (on Karmic Beta).

I can confirm the solution posted in #12.

I have to add that a reboot was required for me.

-- 
avahi-autoipd gives default route to 0.0.0.0
https://bugs.launchpad.net/bugs/99489
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 451277] Re: php-pear installs a stale symlink

2009-10-15 Thread Till Klampaeckel
Thanks, Chuck.

We also opened a channel on efnet, #karmic-php-pear. So if you want us
to test anything before it hits the build farm, feel free to let us
know. We'll be around all day, etc..

-- 
php-pear installs a stale symlink
https://bugs.launchpad.net/bugs/451277
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 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 451277] Re: php-pear installs a stale symlink

2009-10-15 Thread Till Klampaeckel
Thanks, Chuck.

We also opened a channel on efnet, #karmic-php-pear. So if you want us
to test anything before it hits the build farm, feel free to let us
know. We'll be around all day, etc..

-- 
php-pear installs a stale symlink
https://bugs.launchpad.net/bugs/451277
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 445536] Re: pear install fails without error message, downloaded go-pear is also affected (Karmic)

2009-10-14 Thread Till Klampaeckel
Also, in the future, please try pear install -v Foo. Might give you
more info.

-- 
pear install fails without error message, downloaded go-pear is also affected 
(Karmic)
https://bugs.launchpad.net/bugs/445536
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 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 79417] Re: PEAR causes error with E_STRICT and PHP5

2009-10-14 Thread Till Klampaeckel
This is not a bug, PEAR is PHP4 compatible. To not see those issues,
adjust error_reporting in php.ini.

If you want PHP5.3+ code, please check out pyrus:
http://pear2.php.net/

-- 
PEAR causes error with E_STRICT and PHP5
https://bugs.launchpad.net/bugs/79417
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 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 451277] [NEW] php-pear installs a stale symlink

2009-10-14 Thread Till Klampaeckel
Public bug reported:

Binary package hint: php-pear

So, I did a clean PEAR install, these are the steps:

t...@till-laptop:~$ sudo apt-get remove php-pear
t...@till-laptop:~$ sudo rm -rf /usr/share/php
t...@till-laptop:~$ sudo apt-get install php-pear

After the (re-)install, the doc symlink is:
t...@till-laptop:~$ ls -lah /usr/share/php/doc 
lrwxrwxrwx 1 root root 20 2009-10-14 15:08 /usr/share/php/doc - 
../doc/php-pear/PEAR

Let's try to install a package:

t...@till-laptop:~$ sudo pear install Console_CommandLine
downloading Console_CommandLine-1.1.0.tgz ...
Starting to download Console_CommandLine-1.1.0.tgz (37,554 bytes)
..done: 37,554 bytes

Warning: mkdir(): File exists in System.php on line 277

Warning: mkdir(): File exists in /usr/share/php/System.php on line 277

Call Stack:
0.0019 354672   1. {main}() /usr/share/php/pearcmd.php:0
0.11124729504   2. PEAR_Command_Common-run() 
/usr/share/php/pearcmd.php:305
0.11124730016   3. PEAR_Command_Install-doInstall() 
/usr/share/php/PEAR/Command/Common.php:271
1.2047   14022904   4. PEAR_Installer-install() 
/usr/share/php/PEAR/Command/Install.php:708
1.6742   14312120   5. PEAR_Installer-_installFile2() 
/usr/share/php/PEAR/Installer.php:1406
1.6748   14324424   6. PEAR_Installer-mkDirHier() 
/usr/share/php/PEAR/Installer.php:547
1.6748   14325768   7. PEAR_Common-mkDirHier() 
/usr/share/php/PEAR/Installer.php:997
1.6749   14326568   8. System-mkDir() /usr/share/php/PEAR/Common.php:234
1.6753   14331480   9. mkdir() /usr/share/php/System.php:277

ERROR: failed to mkdir
/usr/share/php/doc/Console_CommandLine/docs/examples

(To get a more detailed output run sudo pear - install
Console_CommandLine.)

Expected behavior is that the package installs. But it doesn't:

t...@till-laptop:~$ pear list Console_CommandLine
`Console_CommandLine' not installed

Intermediate fix:
t...@till-laptop:~$ cd /usr/share/php
t...@till-laptop:~$ sudo rm doc  sudo mkdir doc

Output after the fix:
t...@till-laptop:~$ sudo pear install Console_CommandLine
downloading Console_CommandLine-1.1.0.tgz ...
Starting to download Console_CommandLine-1.1.0.tgz (37,554 bytes)
..done: 37,554 bytes
install ok: channel://pear.php.net/Console_CommandLine-1.1.0

t...@till-laptop:/usr/share/php$ pear list Console_CommandLine
Installed Files For Console_CommandLine
===
Type Install Path
php  /usr/share/php/Console/CommandLine/Action.php
php  /usr/share/php/Console/CommandLine/Argument.php
php  /usr/share/php/Console/CommandLine/Command.php
[... truncated ...]

(Installed correctly.)

My system:
Linux till-laptop 2.6.31-14-generic #46-Ubuntu SMP Tue Oct 13 16:47:28 UTC 2009 
x86_64 GNU/Linux

(Updated Karmic 5 minutes ago, so this should be pretty current.)

t...@till-laptop:~$ apt-cache policy php-pear
php-pear:
  Installed: 5.2.10.dfsg.1-2ubuntu5
  Candidate: 5.2.10.dfsg.1-2ubuntu5
  Version table:
 *** 5.2.10.dfsg.1-2ubuntu5 0
500 http://ubuntu.intergenia.de karmic/main Packages
100 /var/lib/dpkg/status

We can reproduce this bug on 32bit and 64bit karmic installs.

ProblemType: Bug
Architecture: amd64
Date: Wed Oct 14 15:34:56 2009
DistroRelease: Ubuntu 9.10
Package: php-pear 5.2.10.dfsg.1-2ubuntu5
PackageArchitecture: all
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-14.46-generic
SourcePackage: php5
Uname: Linux 2.6.31-14-generic x86_64

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


** Tags: amd64 apport-bug

-- 
php-pear installs a stale symlink
https://bugs.launchpad.net/bugs/451277
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 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 451277] Re: php-pear installs a stale symlink

2009-10-14 Thread Till Klampaeckel

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

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/33654298/XsessionErrors.txt

-- 
php-pear installs a stale symlink
https://bugs.launchpad.net/bugs/451277
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 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 451314] Re: PHP 5.2.10 zlib bug remains for 32bit

2009-10-14 Thread Till Klampaeckel
Just adding the bug Chuck referenced directly:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/451277

-- 
PHP 5.2.10 zlib bug remains for 32bit
https://bugs.launchpad.net/bugs/451314
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 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 451405] Re: zlib extension missing in php5 karmic

2009-10-14 Thread Till Klampaeckel
This is not a bug. When an extension is not build shared, there is no
.so file.

zlib is included in the latest php install:

t...@till-laptop:~$ php -r 'var_dump(function_exists(gzfile));'
bool(true)

gzfile is one of the functions provided by the zlib extension.

** Changed in: php5 (Ubuntu)
   Status: New = Invalid

-- 
zlib extension missing in php5 karmic 
https://bugs.launchpad.net/bugs/451405
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 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 445536] Re: pear install fails without error message, downloaded go-pear is also affected (Karmic)

2009-10-14 Thread Till Klampaeckel
Also, in the future, please try pear install -v Foo. Might give you
more info.

-- 
pear install fails without error message, downloaded go-pear is also affected 
(Karmic)
https://bugs.launchpad.net/bugs/445536
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 79417] Re: PEAR causes error with E_STRICT and PHP5

2009-10-14 Thread Till Klampaeckel
This is not a bug, PEAR is PHP4 compatible. To not see those issues,
adjust error_reporting in php.ini.

If you want PHP5.3+ code, please check out pyrus:
http://pear2.php.net/

-- 
PEAR causes error with E_STRICT and PHP5
https://bugs.launchpad.net/bugs/79417
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 451277] [NEW] php-pear installs a stale symlink

2009-10-14 Thread Till Klampaeckel
Public bug reported:

Binary package hint: php-pear

So, I did a clean PEAR install, these are the steps:

t...@till-laptop:~$ sudo apt-get remove php-pear
t...@till-laptop:~$ sudo rm -rf /usr/share/php
t...@till-laptop:~$ sudo apt-get install php-pear

After the (re-)install, the doc symlink is:
t...@till-laptop:~$ ls -lah /usr/share/php/doc 
lrwxrwxrwx 1 root root 20 2009-10-14 15:08 /usr/share/php/doc - 
../doc/php-pear/PEAR

Let's try to install a package:

t...@till-laptop:~$ sudo pear install Console_CommandLine
downloading Console_CommandLine-1.1.0.tgz ...
Starting to download Console_CommandLine-1.1.0.tgz (37,554 bytes)
..done: 37,554 bytes

Warning: mkdir(): File exists in System.php on line 277

Warning: mkdir(): File exists in /usr/share/php/System.php on line 277

Call Stack:
0.0019 354672   1. {main}() /usr/share/php/pearcmd.php:0
0.11124729504   2. PEAR_Command_Common-run() 
/usr/share/php/pearcmd.php:305
0.11124730016   3. PEAR_Command_Install-doInstall() 
/usr/share/php/PEAR/Command/Common.php:271
1.2047   14022904   4. PEAR_Installer-install() 
/usr/share/php/PEAR/Command/Install.php:708
1.6742   14312120   5. PEAR_Installer-_installFile2() 
/usr/share/php/PEAR/Installer.php:1406
1.6748   14324424   6. PEAR_Installer-mkDirHier() 
/usr/share/php/PEAR/Installer.php:547
1.6748   14325768   7. PEAR_Common-mkDirHier() 
/usr/share/php/PEAR/Installer.php:997
1.6749   14326568   8. System-mkDir() /usr/share/php/PEAR/Common.php:234
1.6753   14331480   9. mkdir() /usr/share/php/System.php:277

ERROR: failed to mkdir
/usr/share/php/doc/Console_CommandLine/docs/examples

(To get a more detailed output run sudo pear - install
Console_CommandLine.)

Expected behavior is that the package installs. But it doesn't:

t...@till-laptop:~$ pear list Console_CommandLine
`Console_CommandLine' not installed

Intermediate fix:
t...@till-laptop:~$ cd /usr/share/php
t...@till-laptop:~$ sudo rm doc  sudo mkdir doc

Output after the fix:
t...@till-laptop:~$ sudo pear install Console_CommandLine
downloading Console_CommandLine-1.1.0.tgz ...
Starting to download Console_CommandLine-1.1.0.tgz (37,554 bytes)
..done: 37,554 bytes
install ok: channel://pear.php.net/Console_CommandLine-1.1.0

t...@till-laptop:/usr/share/php$ pear list Console_CommandLine
Installed Files For Console_CommandLine
===
Type Install Path
php  /usr/share/php/Console/CommandLine/Action.php
php  /usr/share/php/Console/CommandLine/Argument.php
php  /usr/share/php/Console/CommandLine/Command.php
[... truncated ...]

(Installed correctly.)

My system:
Linux till-laptop 2.6.31-14-generic #46-Ubuntu SMP Tue Oct 13 16:47:28 UTC 2009 
x86_64 GNU/Linux

(Updated Karmic 5 minutes ago, so this should be pretty current.)

t...@till-laptop:~$ apt-cache policy php-pear
php-pear:
  Installed: 5.2.10.dfsg.1-2ubuntu5
  Candidate: 5.2.10.dfsg.1-2ubuntu5
  Version table:
 *** 5.2.10.dfsg.1-2ubuntu5 0
500 http://ubuntu.intergenia.de karmic/main Packages
100 /var/lib/dpkg/status

We can reproduce this bug on 32bit and 64bit karmic installs.

ProblemType: Bug
Architecture: amd64
Date: Wed Oct 14 15:34:56 2009
DistroRelease: Ubuntu 9.10
Package: php-pear 5.2.10.dfsg.1-2ubuntu5
PackageArchitecture: all
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-14.46-generic
SourcePackage: php5
Uname: Linux 2.6.31-14-generic x86_64

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


** Tags: amd64 apport-bug

-- 
php-pear installs a stale symlink
https://bugs.launchpad.net/bugs/451277
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 451277] Re: php-pear installs a stale symlink

2009-10-14 Thread Till Klampaeckel

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

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/33654298/XsessionErrors.txt

-- 
php-pear installs a stale symlink
https://bugs.launchpad.net/bugs/451277
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 451314] Re: PHP 5.2.10 zlib bug remains for 32bit

2009-10-14 Thread Till Klampaeckel
Just adding the bug Chuck referenced directly:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/451277

-- 
PHP 5.2.10 zlib bug remains for 32bit
https://bugs.launchpad.net/bugs/451314
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 451405] Re: zlib extension missing in php5 karmic

2009-10-14 Thread Till Klampaeckel
This is not a bug. When an extension is not build shared, there is no
.so file.

zlib is included in the latest php install:

t...@till-laptop:~$ php -r 'var_dump(function_exists(gzfile));'
bool(true)

gzfile is one of the functions provided by the zlib extension.

** Changed in: php5 (Ubuntu)
   Status: New = Invalid

-- 
zlib extension missing in php5 karmic 
https://bugs.launchpad.net/bugs/451405
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 439407] Re: Abort class-pclzip.php : Missing zlib extensions

2009-10-14 Thread Till Klampaeckel
Guys,

I'm not sure why the file in Wordpress is, which makes it harder to
debug, can you either point out the file using their online SVN repo
(http://core.svn.wordpress.org/trunk/) or run the following script
yourself:

?php
var_dump(function_exists(gzopen));
?

Then, please link a phpinfo or provide php -m (cli).

Further more, are all you guys on i386 or on amd64 as well? The common
issue with all zlib related PHP issues seems to be i386.

Just on a side-note, since the Ubuntu package is build with --enable-
zlib it won't show a zlib.so in PHP's extension directory. You should
only see .so files, for the extensions you build from other ubuntu
packages (or manually from source).

Till

-- 
Abort class-pclzip.php : Missing zlib extensions
https://bugs.launchpad.net/bugs/439407
You received this bug notification because you are a member of Ubuntu
Bugs, which is a bug assignee.

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


[Bug 420639] Re: php-pear package problems (Karmic)

2009-09-21 Thread Till Klampaeckel
This bug is technically two bugs in one.

1) A borked symlink (which is also present in upstream)

2) A borked phar in the 5.2.10 release.

-- 
php-pear package problems (Karmic)
https://bugs.launchpad.net/bugs/420639
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 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 420639] Re: php-pear package problems (Karmic)

2009-09-21 Thread Till Klampaeckel
I'd say yes, but I don't know what it entails. :-)

-- 
php-pear package problems (Karmic)
https://bugs.launchpad.net/bugs/420639
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 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 420639] Re: php-pear package problems (Karmic)

2009-09-21 Thread Till Klampaeckel
This bug is technically two bugs in one.

1) A borked symlink (which is also present in upstream)

2) A borked phar in the 5.2.10 release.

-- 
php-pear package problems (Karmic)
https://bugs.launchpad.net/bugs/420639
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 420639] Re: php-pear package problems (Karmic)

2009-09-21 Thread Till Klampaeckel
I'd say yes, but I don't know what it entails. :-)

-- 
php-pear package problems (Karmic)
https://bugs.launchpad.net/bugs/420639
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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