[Bug 203169] Re: status function for init scripts

2008-09-29 Thread Thierry Carrez
Closing asterisk task, now handled in bug 248947.

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

-- 
status function for init scripts
https://bugs.launchpad.net/bugs/203169
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.

-- 
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 275608] Re: nm-openvpn swaps ca and cert in openvpn commandline

2008-09-29 Thread Thierry Carrez
Can't reproduce with current intrepid (same version as you).

My VPN configuration dialog shows (top to bottom):
- User cert : selected client.crt
- CA cert : selected ca.crt
- User private key : selected client.key

Then the command line is :
/usr/sbin/openvpn --remote 192.168.122.41 --nobind --dev tun --proto udp --port 
1194 --syslog nm-openvpn --script-security 2 --up 
/usr/lib/network-manager-openvpn/nm-openvpn-service-openvpn-helper --up-restart 
--persist-key --persist-tun --management 127.0.0.1 1194 
--management-query-passwords --route-noexec --client --ca 
/home/koon/openvpn/ca.crt --cert /home/koon/openvpn/client.crt --key 
/home/koon/openvpn/client.key
...which is correct.

Could you please retry on a new configuration (not one imported from hardy ?)
It can also be a translation error where two labels might haven been swapped, 
so please confirm how the dialog box reads (top to bottom) and which 
language/locale you are using.

In all cases, that would be a network-manager-openvpn, bug and not an
openvpn bug.

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

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

** Changed in: network-manager-openvpn (Ubuntu)
   Status: New = Incomplete

-- 
nm-openvpn swaps ca and cert in openvpn commandline
https://bugs.launchpad.net/bugs/275608
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn 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 240519] Re: sybase_* functions missing in php5-sybase for hardy

2008-09-29 Thread Steve Langasek
On Mon, Sep 29, 2008 at 12:30:01PM -, knb wrote:
 It has been true in the past that sybase and mssql server shared a
 common code base, a common api and a common transfer protocol. However
 this is no longer the case for at least 10 years.

That's irrelevant given that there's only one library implementation in
Ubuntu that talks to both of them (FreeTDS).

Bugs in the individual PHP extensions notwithstanding, there's no reason to
ship separate packages for each server type.

-- 
sybase_* functions missing in php5-sybase for hardy
https://bugs.launchpad.net/bugs/240519
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 240519] Re: sybase_* functions missing in php5-sybase for hardy

2008-09-29 Thread knb
The common dependency of both sybase mad mssql Vendor Specific Database 
Extensions on FreetTDS libs  might be advantageous for the package developer or 
maintainer, but it  has disadvantages for the library users: 
- if I remove  the Sybase DB  Extension using synaptic, I also lose the MSSQL 
Server connectivity. 
- it is still confusing to be forced to connect to a sybase database using 
mssql_connect(), or to call a mssql server with sybase_connect() . - it took me 
some time to understand the whole issue. However it is next to impossible to 
communicate the situation to other web developers and new colleagues.

And what will happen if the FreeTDS developer(s) decided someday to drop
compatibility for one of the server types, or too fork development?

Instead of using freetds,  a linux user can still install the original C Client 
libraries from Sybase. As part of the ASE DB server developer 
trial-edition/expres-edition, these libraries are available for free but not as 
open-source from Sybase in 32bit and 64 bit versions.  
(The 32-bit header files are available also free of charge from Sybase, whereas 
the 64 bit versions  of the header files aren't. Here it is indeed an advantage 
to have a basic 64bit FreetTDS-based sybase client that works) 

Seems that I have to do my php with-sybase-ct development on a different
machine, than my unix box.

-- 
sybase_* functions missing in php5-sybase for hardy
https://bugs.launchpad.net/bugs/240519
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 47438] Re: Dnsmasq crashes when renewing non-existent lease

2008-09-29 Thread Jamie Strandboge
dnsmasq (2.25-1ubuntu0.1) dapper-security; urgency=low

  * SECURITY UPDATE: crash when renewing a lease from clients that think
they are on another network can be used as a denial of service attack.
  * src/rfc2131.c: backport of the dnsmasq 2.26 fix (Fixes LP: #47438)
  * References
CVE-2008-3214


** Changed in: dnsmasq (Ubuntu Dapper)
   Status: In Progress = Fix Released

-- 
Dnsmasq crashes when renewing non-existent lease
https://bugs.launchpad.net/bugs/47438
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq 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 240519] Re: sybase_* functions missing in php5-sybase for hardy

2008-09-29 Thread Ondřej Surý
Speaking with my debian php maintainer hat.

If you are able to install non-free sybase libraries, you are also
able to install php5-dev and run phpize  make  make install
in sybase_ct directory.

Ie. if you want to use non-free libraries, you cannot expect help
from package distributors.

O.

2008/9/29 knb [EMAIL PROTECTED]:
 The common dependency of both sybase mad mssql Vendor Specific Database 
 Extensions on FreetTDS libs  might be advantageous for the package developer 
 or maintainer, but it  has disadvantages for the library users:
 - if I remove  the Sybase DB  Extension using synaptic, I also lose the MSSQL 
 Server connectivity.
 - it is still confusing to be forced to connect to a sybase database using 
 mssql_connect(), or to call a mssql server with sybase_connect() . - it took 
 me some time to understand the whole issue. However it is next to impossible 
 to communicate the situation to other web developers and new colleagues.

 And what will happen if the FreeTDS developer(s) decided someday to drop
 compatibility for one of the server types, or too fork development?

 Instead of using freetds,  a linux user can still install the original C 
 Client libraries from Sybase. As part of the ASE DB server developer 
 trial-edition/expres-edition, these libraries are available for free but not 
 as open-source from Sybase in 32bit and 64 bit versions.
 (The 32-bit header files are available also free of charge from Sybase, 
 whereas the 64 bit versions  of the header files aren't. Here it is indeed an 
 advantage to have a basic 64bit FreetTDS-based sybase client that works)

 Seems that I have to do my php with-sybase-ct development on a different
 machine, than my unix box.

 --
 sybase_* functions missing in php5-sybase for hardy
 https://bugs.launchpad.net/bugs/240519
 You received this bug notification because you are subscribed to php5 in
 ubuntu.



-- 
Ondřej Surý [EMAIL PROTECTED]

-- 
sybase_* functions missing in php5-sybase for hardy
https://bugs.launchpad.net/bugs/240519
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 192080] Re: shutdown fails.. nfs

2008-09-29 Thread Peter Matulis
Workaround:

In /etc/rc0.d change the symlink

K25open-iscsi

to

S80open-iscsi

Then try a shutdown test.

If successful, do something similar for /etc/rc6.d.

-- 
shutdown fails.. nfs
https://bugs.launchpad.net/bugs/192080
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to open-iscsi 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 240519] Re: sybase_* functions missing in php5-sybase for hardy

2008-09-29 Thread knb
? I didn't expect any help. Thanks for mentioning the phpize trick-
Maybe I should have posted this on the ubuntu brainstorm site in the first 
place. It might be too specialized, though.

I'm just saying that the mssql / sybase PHP-DB-Extension-Module issue is
more complicated than it needs to be.

Aside from that I think that the FreetTDS based perl module  DBD::Sybase
that comes with Ubuntu is awesome and I'm glad that I can install it
out-of-the-box.

-- 
sybase_* functions missing in php5-sybase for hardy
https://bugs.launchpad.net/bugs/240519
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 221427] Re: package samba-common 3.0.28a-1ubuntu4 failed to upgrade from Gutsy to Hardy

2008-09-29 Thread Peter Wright
A colleague had this same problem and it turns out there was a debconf
window wanting to know whether to keep or replace the samba config
file... she says the window didn't come to the foreground.

-- 
package samba-common 3.0.28a-1ubuntu4 failed to upgrade from Gutsy to Hardy
https://bugs.launchpad.net/bugs/221427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 260687] Re: pam_smbpass.so segfaults

2008-09-29 Thread A. Bram Neijt
I got this problem after removing samba. I think it may be a problem
that libpam-smbpass depends on samba without that being defined. You can
remove samba, leave samba-common and libpam-smbpass and you will have
this problem. Stupid thing is that every sudo fails also, so removing
the libpam-smbpass will require me to enter single user mode and work
from there (telinit 1). With sudo failing, there is no way to fix this
without that.

The following dmesg entries are shown (and repeated for every type of sudo 
command):
[ 4940.176470] sudo[9337]: segfault at 0 ip 7f5c6e480d6c sp 
7fff783b9fe0 error 4 in pam_smbpass.so[7f5c6e419000+149000]

I have this problem on Ubuntu Intrepid on x86_64 with the latest
updates.

-- 
pam_smbpass.so segfaults
https://bugs.launchpad.net/bugs/260687
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 260687] Re: pam_smbpass.so segfaults

2008-09-29 Thread A. Bram Neijt
Just adding, telinit doesn't work because you need to be root. To solve this, I 
used the following:
- Reboot and choose the recovery mode from the boot selection menu
- Choose drop into root shell from the recovery menu
- Execute the command: dpkg --purge libpam-smbpass

After that you can reboot into normal mode and everything should be ok.

-- 
pam_smbpass.so segfaults
https://bugs.launchpad.net/bugs/260687
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 256014] Re: escapeshellcmd() security fix generates problems with mediawiki and other web-apps

2008-09-29 Thread Kees Cook
Once there is an upstream fix for this problem, the fixes will be
backported to the stable releases.  Sorry for the glitch!

** Bug watch added: bugs.php.net/ #45132
   http://bugs.php.net/bug.php?id=45132

** Also affects: php via
   http://bugs.php.net/bug.php?id=45132
   Importance: Unknown
   Status: Unknown

** Changed in: php5 (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Kees Cook (kees)
   Status: New = Triaged

-- 
escapeshellcmd() security fix generates problems with mediawiki and other 
web-apps
https://bugs.launchpad.net/bugs/256014
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


RE: [Bug 221427] Re: package samba-common 3.0.28a-1ubuntu4 failed toupgrade from Gutsy to Hardy

2008-09-29 Thread Dave Croll
Thanks for the info. I do remember seeing a window pop up and I probably
took the wrong option. After the installation completed, I manually
installed the Samba.

Dave

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
Peter Wright
Sent: Monday, September 29, 2008 11:58 AM
To: [EMAIL PROTECTED]
Subject: [Bug 221427] Re: package samba-common 3.0.28a-1ubuntu4 failed
toupgrade from Gutsy to Hardy


A colleague had this same problem and it turns out there was a debconf
window wanting to know whether to keep or replace the samba config file...
she says the window didn't come to the foreground.

-- 
package samba-common 3.0.28a-1ubuntu4 failed to upgrade from Gutsy to Hardy
https://bugs.launchpad.net/bugs/221427
You received this bug notification because you are a direct subscriber of
the bug.

-- 
package samba-common 3.0.28a-1ubuntu4 failed to upgrade from Gutsy to Hardy
https://bugs.launchpad.net/bugs/221427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba 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 220066] [NEW] [Hardy] Corrupted FS after upgrade

2008-09-29 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Short story :
do-release-upgrade -d
reboot
Some (all ?) partitions are remounted as read-only
Boot process stuck after complaining about SpeedStep
Reboot with Alt+Sys Magic
Recovery Mode
Root FS is checked (ext3)
Root FS is corrupted and I'm informed that the system will reboot
Recovery Mode again
FS are checked
Corruptions are found in /var and /tmp (both are ext3)
Everything is OK !

Long story :
Sunday afternoon, I upgraded my Gutsy server to Hardy. Apart from errors by 
apparmor (might have been due to gutsy kernel), everything was normal. After 
some cleanup (old libs, unused apps, checking .conf files, etc) I decide it was 
safe to reboot and use the new kernel.
Just before the lights went out, I noticed a line about a partition being 
mounted as read-only.
During the boot process I saw some errors about SpeedStep (might be my old 
PIII) and then, nothing happened. After a while I used the Alt+Sys magic keys 
and rebooted.
This time I chose the recovery mode. The boot process went farther than 
before and stopped with fsck analyzing the root partition.
Once it was over, it displayed a message saying that a reboot was going to 
happen.
Again, I chose the recovery mode. And again fsck reappeared to check my other 
partitions (/tmp and /var). Like the root, they were corrupted and (easily ?) 
repaired.
Once at the prompt, I ordered the system to complete the boot process and 
everything started fine.

As far as I know the only thing I've lost is the locate database (a
great loss :)

I'm sure you'll need more than this, so please, ask.

** Affects: php5 (Ubuntu)
 Importance: Low
 Status: Invalid


** Tags: gutsy2hardy
-- 
[Hardy] Corrupted FS after upgrade
https://bugs.edge.launchpad.net/bugs/220066
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 220066] Re: [Hardy] Corrupted FS after upgrade

2008-09-29 Thread Chris Coulson
*** This bug is a duplicate of bug 138535 ***
https://bugs.launchpad.net/bugs/138535

Thanks. This is a duplicate of bug 138535.

** Changed in: php5 (Ubuntu)
Sourcepackagename: update-manager = php5
   Importance: Undecided = Low
   Status: Incomplete = Invalid

** This bug has been marked a duplicate of bug 138535
   package php5-cli 5.2.3-1ubuntu5 failed to install/upgrade: Unterprozess 
post-installation script mit Signal (Interrupt) getötet

-- 
[Hardy] Corrupted FS after upgrade
https://bugs.launchpad.net/bugs/220066
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 275608] Re: nm-openvpn swaps ca and cert in openvpn commandline

2008-09-29 Thread Crispin Flowerday
I had to re-create the VPN from scratch - the config got lost over the
upgrade ...

I am en_GB locale, and I see (in the Authentication bit).

Type: Password with Certificate (TLS)
User name: myloginname
CA Certificate: crispin-00.crt
User Certificate: ca.crt
Private Key: crispin-00.key

The problems does seem to be between the UI and gconf as gconf shows the
correct information (in /system/networking/vpn_connections/VPN
name/vpn_data)

If I run LANG=C /usr/bin/nm-connection-editor I still get the items in
the UI in the same order.

-- 
nm-openvpn swaps ca and cert in openvpn commandline
https://bugs.launchpad.net/bugs/275608
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn 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 249824] Re: [intrepid] IPv6 unusable

2008-09-29 Thread Brian Murray
** Also affects: bind9 (Gentoo Linux) via
   http://bugs.gentoo.org/show_bug.cgi?id=227333
   Importance: Unknown
   Status: Unknown

** Changed in: bind9 (Ubuntu)
   Target: None = ubuntu-8.10

-- 
[intrepid] IPv6 unusable
https://bugs.launchpad.net/bugs/249824
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 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 276145] [NEW] Apace2 default configuration incorrect for allowoverride

2008-09-29 Thread Nick Twigg
Public bug reported:

Binary package hint: apache2

The configuration file under /etc/apache2/sites-enabled/default (or
000-default) is set up so that the allow override all setting wont work
when directories or files under /var/www are called as a site.

The values at install are :

DocumentRoot /var/www/
Directory /
Options FollowSymLinks
AllowOverride all
/Directory
Directory /var/www/
Options Indexes FollowSymLinks MultiViews
AllowOverride none
Order allow,deny
allow from all
/Directory

Whereas, for mod_rewrite to work correctly, they should be

DocumentRoot /var/www/
Directory /
Options FollowSymLinks
AllowOverride All
/Directory
Directory /var/www/
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
/Directory

For the record, I have chaged the first and second AllowOverride to All.

The caps A seems to be *VERY* important.

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

-- 
Apace2 default configuration incorrect for allowoverride
https://bugs.launchpad.net/bugs/276145
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 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 249824] Re: [intrepid] IPv6 unusable

2008-09-29 Thread Bug Watch Updater
** Changed in: bind9 (Gentoo Linux)
   Status: Unknown = Fix Released

-- 
[intrepid] IPv6 unusable
https://bugs.launchpad.net/bugs/249824
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 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