[Bug 1241907] [NEW] php5-mcrypt not enabled after install

2013-10-18 Thread Lars Kneschke
Public bug reported:

Ubuntu release: Saucy
Package: php5-mcrypt (5.4.6-0ubuntu3)

After installation the the mycrypt extension should be enabled. But it
is not.

The problem is, that the mcrypt.ini file is installed into the wrong
destination.

** Affects: php-mcrypt (Ubuntu)
 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/1241907

Title:
  php5-mcrypt not enabled after install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php-mcrypt/+bug/1241907/+subscriptions

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


[Bug 1241892] [NEW] Wrong path for Apache config files

2013-10-18 Thread Lars Kneschke
Public bug reported:

I use this code in the postinst file

# create vhost configuration links
servers="apache2"
linkdestination_apache="../../tine20/apache.conf"
linkname="tine20"

if [ -e /usr/share/wwwconfig-common/confd-link.sh ]; then
 . /usr/share/wwwconfig-common/confd-link.sh
fi

This code breaks with Saucy, because the Apache configuration layout has
changed.

wwwconfig-common installs the config file to /etc/apache/conf.d while it
should install the file to /etc/apache2/conf-available/

# lsb_release -rd 
Description:Ubuntu 13.10
Release:13.10

 wwwconfig-common 0.2.2

** Affects: wwwconfig-common (Ubuntu)
 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/1241892

Title:
  Wrong path for Apache config files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wwwconfig-common/+bug/1241892/+subscriptions

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


[Bug 1210380] Re: package mysql-server-5.5 5.5.32-0ubuntu0.12.04.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-08-10 Thread Lars Kneschke
This is from /var/log/mysql/error.log before I added the line breaks.

130809  8:50:47 InnoDB: 5.5.32 started; log sequence number 6926705359
ERROR: 1064  You have an error in your SQL syntax; check the manual that 
corresponds to your MySQL server version for the right syntax to use near 
'ALTER TABLE user ADD column Show_view_priv enum('N','Y') CHARACTER SET utf8 
NOT ' at line 1
130809  8:50:47 [ERROR] Aborting

After I added the line breaks to the MySQL statements the update
succeeded.

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

Title:
  package mysql-server-5.5 5.5.32-0ubuntu0.12.04.2 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1210380/+subscriptions

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


[Bug 1210380] Re: package mysql-server-5.5 5.5.32-0ubuntu0.12.04.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-08-09 Thread Lars Kneschke
Just as reminder. There are 2 problems. One got fixed by the patch from
Gerald.

The other problem is, that there is invalid SQL included in the postint
file. With the patch from Gerald the MySQL server is starting again, but
some SQL update statements were not executed. Which may lead to problems
later.

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

Title:
  package mysql-server-5.5 5.5.32-0ubuntu0.12.04.2 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1210380/+subscriptions

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


[Bug 1210380] Re: package mysql-server-5.5 5.5.32-0ubuntu0.12.04.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-08-09 Thread Lars Kneschke
There are 2 problems.

The line breaks after the ALTER TABLE statements in mysql-
server-5.5.postinst are missing.

fix_privs=`echo -e \
"USE mysql;\n" \
"ALTER TABLE user ADD column Create_view_priv enum('N','Y') CHARACTER 
SET utf8 NOT NULL DEFAULT 'N';\n" \
"ALTER TABLE user ADD column Show_view_priv enum('N','Y') CHARACTER SET 
utf8 NOT NULL DEFAULT 'N';\n" \
"ALTER TABLE user ADD column Create_routine_priv enum('N','Y') 
CHARACTER SET utf8 NOT NULL DEFAULT 'N';\n" \
"ALTER TABLE user ADD column Alter_routine_priv enum('N','Y') CHARACTER 
SET utf8 NOT NULL DEFAULT 'N';\n" \
"ALTER TABLE user ADD column Create_user_priv enum('N','Y') CHARACTER 
SET utf8 NOT NULL DEFAULT 'N';\n" \
"ALTER TABLE user ADD column Event_priv enum('N','Y') CHARACTER SET 
utf8 NOT NULL DEFAULT 'N';\n" \
"ALTER TABLE user ADD column Trigger_priv enum('N','Y') CHARACTER SET 
utf8 NOT NULL DEFAULT 'N'; " `

And the /etc/init/mysql.conf pre-start script does not work. You have to
comment following line, to be able to mysql server again. HINT:
mysqld_get_param seems to be missing.

datadir=`mysqld_get_param datadir`
if LC_ALL=C BLOCKSIZE= df --portability $datadir/. | tail -n 1 | awk '{ 
exit ($4<4096) }'; then
  echo "$0: ERROR: The partition with $datadir is too full!" >&2
  echo"ERROR: The partition with $datadir is too full!" | 
$ERR_LOGGER
  exit 1
fi

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

Title:
  package mysql-server-5.5 5.5.32-0ubuntu0.12.04.2 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1210380/+subscriptions

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


[Bug 1210383] Re: package mysql-server-5.5 5.5.32-0ubuntu0.13.04.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-08-09 Thread Lars Kneschke
See
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1210380/comments/3

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

Title:
  package mysql-server-5.5 5.5.32-0ubuntu0.13.04.2 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1210383/+subscriptions

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


[Bug 314566] Re: gdm/xdm/kdm crash if running two card setup

2009-09-25 Thread Lars Kneschke
I have the still the same problem with Karmic and 185.18.36.

Startx is working, while kdm is crashing. Using the nv driver everything
is working.

-- 
gdm/xdm/kdm crash if running two card setup
https://bugs.launchpad.net/bugs/314566
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 426113] Re: [Karmic] Xserver does not detect keyboard and mouse when started trough KDM

2009-09-25 Thread Lars Kneschke
I did some more tests. Using the opensource nv display driver, kdm is
starting up.

-- 
[Karmic] Xserver does not detect keyboard and mouse when started trough KDM
https://bugs.launchpad.net/bugs/426113
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 426113] Re: [Karmic] Xserver does not detect keyboard and mouse when started trough KDM

2009-09-25 Thread Lars Kneschke
After searching a little bit more, I found bug #314566. I don't have 2
cards, but 2 monitors (laptop internal display and external monitor).
Beside this I have exactly the same problems like described in bug
#314566.

-- 
[Karmic] Xserver does not detect keyboard and mouse when started trough KDM
https://bugs.launchpad.net/bugs/426113
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 426113] Re: [Karmic] Xserver does not detect keyboard and mouse when started trough KDM

2009-09-07 Thread Lars Kneschke

** Attachment added: "Xorg.0.log while started through KDM"
   http://launchpadlibrarian.net/31475152/Xorg.0.log

-- 
[Karmic] Xserver does not detect keyboard and mouse when started trough KDM
https://bugs.launchpad.net/bugs/426113
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 426113] Re: [Karmic] Xserver does not detect keyboard and mouse when started trough KDM

2009-09-07 Thread Lars Kneschke

** Attachment added: "Xorg.0.log while started through startx"
   http://launchpadlibrarian.net/31475142/Xorg.0.log

-- 
[Karmic] Xserver does not detect keyboard and mouse when started trough KDM
https://bugs.launchpad.net/bugs/426113
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 426113] Re: [Karmic] Xserver does not detect keyboard and mouse when started trough KDM

2009-09-07 Thread Lars Kneschke

** Attachment added: "my xorg.conf"
   http://launchpadlibrarian.net/31475057/xorg.conf

-- 
[Karmic] Xserver does not detect keyboard and mouse when started trough KDM
https://bugs.launchpad.net/bugs/426113
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 426113] [NEW] [Karmic] Xserver does not detect keyboard and mouse when started trough KDM

2009-09-07 Thread Lars Kneschke
Public bug reported:

I'm running Kubuntu Karmic (all updates applied as of 2009-09-08). I did
not have this problem while running Jaunty.

The problem is, that X is unable to start up, when started trough KDM.I
can see the NVIDIA logo for a short time and then I get the failsafe
error dialogue shown.

When I start X using "startx" X comes up without any problems. At least
the xorg.cong and the binary Nvidia driver can't be broken completely as
I'm able to start X this way.

After having a look at  /var/log/Xorg.0.log I can see, that X does not load the 
evdev module and thus has no input devices when started trough KDM and fails 
because of no input devices. 
When X gets started by startx the evdev module gets loaded.

I'll attach the output of Xorg.0.log when started trough KDM and when
started trough startx. I also attach my xorg.conf.

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

-- 
[Karmic] Xserver does not detect keyboard and mouse when started trough KDM
https://bugs.launchpad.net/bugs/426113
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 155947] Re: ldap config causes Ubuntu to hang at a reboot

2008-04-01 Thread Lars Kneschke
I'm pretty sure that this is not a problem of nss-ldap but nss-files or
the nss subsystem at all!

nss-ldap should never get asked about any account informations (root,
daemon,...) found by nss-files already.

And yes, it is really a pita that no one took care for this major bug
already.

-- 
ldap config  causes Ubuntu to hang at a reboot
https://bugs.launchpad.net/bugs/155947
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 155947] Re: ldap config causes Ubuntu to hang at a reboot

2008-01-06 Thread Lars Kneschke
>From my point of view the problem is not located in the nss_ldap but in
nss_compat/nss_files.

I have 2 servers. Both have a local openldap server running.

I have following lines in nsswitch.conf

passwd: compat ldap
group:  compat ldap
shadow: compat ldap

And I have configured following lines in ldap.conf on the affected
server

host 127.0.0.1 172.17.7.15

And I have following lines in /etc/passwd

syslog:x:101:102::/home/syslog:/bin/false
klog:x:102:103::/home/klog:/bin/false

I should never see any ldap queries on server 172.17.7.15 during the
boot process of the affected server, because all needed information
should be in /etc/passwd.

But when I enabled logging on the ldap server 172.17.7.15(which is already up 
and running) I can see following lines:
conn=16 fd=21 ACCEPT from IP=172.17.7.201:52540 (IP=0.0.0.0:389)
conn=17 fd=22 ACCEPT from IP=172.17.7.201:52542 (IP=0.0.0.0:389)
conn=16 op=0 BIND dn="" method=128
conn=16 op=0 RESULT tag=97 err=0 text=
conn=17 op=0 BIND dn="" method=128
conn=17 op=0 RESULT tag=97 err=0 text=
conn=16 op=1 SRCH base="dc=schule,dc=loc" scope=2 deref=0 
filter="(&(objectClass=posixAccount)(uid=syslog))"
conn=17 op=1 SRCH base="dc=schule,dc=loc" scope=2 deref=0 
filter="(&(objectClass=posixAccount)(uid=klog))"
conn=17 op=1 SEARCH RESULT tag=101 err=0 nentries=0 text=
conn=17 op=2 SRCH base="dc=schule,dc=loc" scope=2 deref=0 
filter="(&(objectClass=posixGroup)(memberUid=klog))"
conn=17 op=2 SRCH attr=gidNumber
conn=17 op=2 SEARCH RESULT tag=101 err=0 nentries=0 text=
conn=17 fd=22 closed (connection lost)
conn=16 op=1 SEARCH RESULT tag=101 err=0 nentries=0 text=
conn=16 op=2 SRCH base="dc=schule,dc=loc" scope=2 deref=0 
filter="(&(objectClass=posixGroup)(memberUid=syslog))"
conn=16 op=2 SRCH attr=gidNumber

As you can see, the affected server is trying to look up the uid's of
the accounts syslog and klog from the ldap directory. This should never
happen, as these information are stored in /etc/passwd and
nss_compat/nss_files should be able to lookup these informations
already. nss_ldap should never get a request for these accounts.

-- 
ldap config  causes Ubuntu to hang at a reboot
https://bugs.launchpad.net/bugs/155947
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