[Bug 116745] Re: kerberos requires users to list themselves in .k5login

2008-07-13 Thread Russ Allbery
This is the intended behavior of Kerberos.  So far as I know, it has
always worked this way.  I have never seen logins succeed if you have an
empty .k5login file.  I suspect something else was going on when you
thought this used to work (such as having the .k5login file not be
readable for some reason).

It would break many systems to have an empty .k5login file still permit
logins by principals that happen to match the local account name.

-- 
kerberos requires users to list themselves in .k5login
https://bugs.launchpad.net/bugs/116745
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 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 102617] Re: Kerberos Install - unary operator expected

2008-07-13 Thread Russ Allbery
Well, the root of your problem was that debconf exploded for some
reason, but the error then reported in the *.config script was fixed
some time back in Debian.  I'm afraid I don't remember exactly when, but
it was a quoting issue in the *.config script.

-- 
Kerberos Install - unary operator expected
https://bugs.launchpad.net/bugs/102617
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 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 44402] Re: krb5-admin-server fails during install

2008-07-13 Thread Russ Allbery
The package is behaving as intended from my perspective.  I don't think
it's sane to automatically create a new realm on package installation.
You may want to do something else, like initialize from an existing
realm or create a realm that doesn't match the local realm for testing.
In fact, given the nature of KDCs, wanting to do something more cautious
is I think more likely than not.

-- 
krb5-admin-server fails during install
https://bugs.launchpad.net/bugs/44402
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 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 72599] Re: Option no-addresses spelled wrong in "man krb.conf" (/usr/share/man/man5/krb5.conf.5.gz)

2008-07-13 Thread Russ Allbery
I'm not sure when it changed, but the current code matches the
documentation.  noaddresses is the correct option, and the default is
true.

-- 
Option no-addresses spelled wrong in "man krb.conf" 
(/usr/share/man/man5/krb5.conf.5.gz)
https://bugs.launchpad.net/bugs/72599
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 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 159357] Re: Improper format of Kerberos configuration file

2008-07-13 Thread Russ Allbery
This is fixed in the 1.6.dfsg.3-1 Debian release:

  * If krb5-config/default_realm isn't set, use EXAMPLE.COM as the realm
so that the kdc.conf will at least be syntactically valid (but will
still require editing).  (Closes: #474741)

-- 
Improper format of Kerberos configuration file
https://bugs.launchpad.net/bugs/159357
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 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 120375] Re: cannot boot raid1 with only one disk

2008-07-13 Thread mspIggy
i have been doing battle with this for 10 days on and off on a new
server ...

before i put this on the live line i need this to work -- it does not --

8.04 server edition i just wiped my install, started fresh, again...

after the install finished i added root user changed to su

 cd /usr/share/initramfs-tools/scripts
and ran 
patch < initramfs-mdadm-assemble-scan.patch

fails - says file does not exist ???

last time i did patch line by line - that also did not work for me...
this patch was not up yet

now what - i am about to go to freeBSD i do not want tu use debian
i installed no apps but ssh

[EMAIL PROTECTED]:/$ su
Password:
[EMAIL PROTECTED]:/# cd /usr/share/initramfs-tools/scripts
[EMAIL PROTECTED]:/usr/share/initramfs-tools/scripts# patch < 
initramfs-mdadm-assemble-scan.patch
bash: initramfs-mdadm-assemble-scan.patch: No such file or directory
[EMAIL PROTECTED]:/usr/share/initramfs-tools/scripts# dir
casper-premount  init-premount  local-bottomnfs   nfs-top
functionsinit-top   local-premount  nfs-bottom
init-bottom  local  local-top   nfs-premount
[EMAIL PROTECTED]:/usr/share/initramfs-tools/scripts#

-- 
cannot boot raid1 with only one disk
https://bugs.launchpad.net/bugs/120375
You received this bug notification because you are a member of Ubuntu
Server Team, which is a subscriber of a duplicate bug.

-- 
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 247727] Re: mysql ignores view order when selecting with group by

2008-07-13 Thread Derek Price
Okay, I guess the previous version of our application was relying on
undocumented/unspecified behavior from previous MySQL versions.  Anyhow,
I've worked out a work around already, so it's no skin off my back.
Thanks.

-- 
mysql ignores view order when selecting with group by
https://bugs.launchpad.net/bugs/247727
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 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 247727] Re: mysql ignores view order when selecting with group by

2008-07-13 Thread Chad MILLER
Agreed, not a bug.

More specifically, the row that is chosen to represent a class of rows
defined by GROUP BY is undefined.  In most other SQL implementations, it
is even /illegal/ to SELECT columns that are neither aggregate functions
nor the columns listed in the GROUP BY expression, and so you could
never even know what row was chosen to represent that group.  You should
/never/ rely on any value you get outside the GROUP BY expressions or an
aggregate function.

You almost certainly should be using a subselect to join grouped data
with a particular, /well-defined/ row of the dataset that you're
interested in.

-- 
mysql ignores view order when selecting with group by
https://bugs.launchpad.net/bugs/247727
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 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 45234] Re: Missing privilege separation directory: /var/run/sshd

2008-07-13 Thread Christian
Still here with 8.04.1: when sshd is started via inetd, /var/run/sshd
won't be created. How about a patch as OlivierAJ suggested back in
03/2007?

** Attachment added: "create /var/run/sshd in bootmisc.sh"
   http://launchpadlibrarian.net/15997666/bootmisc.sh.diff

-- 
Missing privilege separation directory: /var/run/sshd
https://bugs.launchpad.net/bugs/45234
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh 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 247727] Re: mysql ignores view order when selecting with group by

2008-07-13 Thread datacharmer
This is not a bug. It's expected behavior.

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: New => Invalid

-- 
mysql ignores view order when selecting with group by
https://bugs.launchpad.net/bugs/247727
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 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 228712] Re: Feature request: add patch to enable crypted passwords

2008-07-13 Thread Imre Gergely
Hi

I've built a modified package with this crypt patch (for Hardy Heron),
if somebody wants to test it, feel free to download the packages from my
PPA.

http://ppa.launchpad.net/cemc/ubuntu

I'm no expert in programming, but as far as i can tell, the patch is working 
fine, it didn't cause me troubles, i've been using it in other cyrus-sasl 
versions on other distros (mainly CentOS / Fedora). Maybe it still could use 
some reworking like Phillip said above.
You can see my working smtpd.conf (on Ubuntu 8.04) attached to this comment.

** Attachment added: "smtpd.conf"
   http://launchpadlibrarian.net/15996000/smtpd.conf

-- 
Feature request: add patch to enable crypted passwords
https://bugs.launchpad.net/bugs/228712
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to cyrus-sasl2 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


Re: [Bug 247795] Re: package mysql-server 5.0 .51a-3ubuntu5.2 failed to install/upgrade: Abhä ngigkeitsprobleme - lasse es unkonfiguriert

2008-07-13 Thread CodeWarrior
Nicolas Valcárcel (nxvl) wrote:
> Are you able to restart you mysql-server without problems? The error is
> that mysql server has been unable to start its daemon
> 
> ** Changed in: mysql-dfsg-5.0 (Ubuntu)
>Status: New => Incomplete
> 
Hello Nicolas,

It's not possible to restart without problems.

greedings,

Patrick

-- 
package mysql-server 5.0.51a-3ubuntu5.2 failed to install/upgrade: 
Abhängigkeitsprobleme - lasse es unkonfiguriert
https://bugs.launchpad.net/bugs/247795
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 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 90812] Re: perl backend can't use dynamically loaded modules (DBI, POSIX...)

2008-07-13 Thread Bug Watch Updater
** Changed in: openldap2.2 (Debian)
   Status: New => Confirmed

-- 
perl backend can't use dynamically loaded modules (DBI, POSIX...)
https://bugs.launchpad.net/bugs/90812
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap2.3 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 122283] Re: perl backend can't use dynamically loaded modules (DBI, POSIX...)

2008-07-13 Thread Bug Watch Updater
*** This bug is a duplicate of bug 90812 ***
https://bugs.launchpad.net/bugs/90812

** Changed in: openldap2.3 (Debian)
   Status: New => Confirmed

-- 
perl backend can't use dynamically loaded modules (DBI, POSIX...)
https://bugs.launchpad.net/bugs/122283
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap2.3 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 202068] Re: imagemagick dependency error in Hardy: should install libmagick9

2008-07-13 Thread Pascal De Vuyst
*** This bug is a duplicate of bug 203023 ***
https://bugs.launchpad.net/bugs/203023

** This bug has been marked a duplicate of bug 203023
   PHP Startup: Unable to load dynamic library 
'/usr/lib/php5/20060613/imagick.so' - libWand.so.9

-- 
imagemagick dependency error in Hardy: should install libmagick9
https://bugs.launchpad.net/bugs/202068
You received this bug notification because you are a member of Ubuntu
Server Team, which is a bug assignee (via bug 203023).

-- 
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 248067] [NEW] mysql server can't be started: mysql.host doesn't exist

2008-07-13 Thread Torsten Bronger
Public bug reported:

Binary package hint: mysql-server-5.0

The MySQL server process can't be restarted:

[EMAIL PROTECTED]:~/src/chantal$ sudo /etc/init.d/mysql restart
 * Stopping MySQL database server mysqld
   [ OK ] 
 * Starting MySQL database server mysqld
   [fail] 

daemon.log says:

Jul 13 11:18:03 wilson mysqld_safe[7307]: started
Jul 13 11:18:03 wilson mysqld[7311]: 080713 11:18:03  InnoDB: Started; log 
sequence number 0 43685
Jul 13 11:18:03 wilson mysqld[7311]: 080713 11:18:03 [ERROR] Fatal error: Can't 
open and lock privilege tables: Table 'mysql.host' doesn't exist
Jul 13 11:18:03 wilson mysqld_safe[7322]: ended

I haven't figured out which actions have led to this behaviour.  I'm not
aware of having made something unusual.

Re-installing mysql-server help but not for very long.

** Affects: mysql-dfsg-5.0 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
mysql server can't be started: mysql.host doesn't exist
https://bugs.launchpad.net/bugs/248067
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 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