[Bug 623342] Re: ntlm_auth returns invalid NT_KEY

2010-11-28 Thread Kai Blin
As of 2010-11-16, this bug is not yet confirmed to be fixed. If you want
to help, please test the bugfix on the corresponding Samba bug and
report your results on the Samba bugzilla.

-- 
ntlm_auth returns invalid NT_KEY
https://bugs.launchpad.net/bugs/623342
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 682219] Re: Please merge nagios-plugins 1.4.15-2 (main) from debian unstable (main)

2010-11-28 Thread Alessio Treglia
Misspelling:

+  + Keep on building with libradius1-dev to avoid pusing radiusclient-ng 
to 
+main.

Please do *NOT* just copypaste old changelog entries.

-- 
Please merge nagios-plugins 1.4.15-2 (main) from debian unstable (main)
https://bugs.launchpad.net/bugs/682219
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins 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 138436] Re: Delay during installation of master server

2010-11-28 Thread Teej
We are closing this bug report because there was no answer, as described
in the previous comments. Please reopen it if you can give us the
missing information, and don't hesitate to submit bug reports in the
future. To reopen the bug report you can click on the current status,
under the Status column, and change the Status back to New. Thanks
again!

** Changed in: nis (Ubuntu)
   Status: Confirmed = Invalid

-- 
Delay during installation of master server
https://bugs.launchpad.net/bugs/138436
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nis 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 681167] Re: php seg faults if both php5-xcache and php-apc installed

2010-11-28 Thread Clint Byrum
I do agree that the two should conflict, but the segfault is a different
issue that may still be a problem with xcache:


(gdb) run
Starting program: /usr/bin/php 
[Thread debugging using libthread_db enabled]
PHP Warning:  Cannot load module 'XCache' because conflicting module 'apc' is 
already loaded in Unknown on line 0

Program received signal SIGSEGV, Segmentation fault.
0x7561de50 in ?? ()
(gdb) bt
#0  0x7561de50 in ?? ()
#1  0x0068fa69 in zend_execute_scripts (type=8, retval=0x0, 
file_count=3) at /build/buildd/php5-5.3.3/Zend/zend.c:1258
#2  0x0063ca73 in php_execute_script (primary_file=0x7fffdd30) at 
/build/buildd/php5-5.3.3/main/main.c:2288
#3  0x00729694 in main (argc=-5000, argv=0x0) at 
/build/buildd/php5-5.3.3/sapi/cli/php_cli.c:1196


Still I think its most likely that PHP or php-apc is handling the error 
condition poorly since xcache clearly isn't getting loaded.

Interestingly enough, php -i does not segfault, so its only when we try
to execute a script.

Marking Confirmed in php5 *and* php-apc. Setting Importance to Low,
since there are very few conflicting zend caching modules.

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

** Changed in: php5 (Ubuntu)
   Importance: Undecided = Low

** Changed in: xcache (Ubuntu)
   Importance: Undecided = Low

** Also affects: php-apc (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: php-apc (Ubuntu)
   Status: New = Confirmed

** Changed in: php-apc (Ubuntu)
   Importance: Undecided = Low

-- 
php seg faults if both php5-xcache and php-apc installed
https://bugs.launchpad.net/bugs/681167
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 681713] Re: package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2010-11-28 Thread Clint Byrum
Hello Zer0wl, thank you for taking the time to file this bug report and
help us make Ubuntu better.

I believe this is a duplicate of bug #562370 , but to confirm that, can
you try running

sudo a2dismod reqtimeout

and then

sudo dpkg-reconfigure -a

That should complete the upgrade. It may also mean we need to reopen bug
#562370 for maverick as the problem is still happening.

Marking Incomplete pending response from Zer0wl.

** Changed in: apache2 (Ubuntu)
   Status: New = Incomplete

-- 
package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
https://bugs.launchpad.net/bugs/681713
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 497149] Re: Packages using DKMS should make use of /usr/lib/dkms/common.postinst

2010-11-28 Thread Sven Eckelmann
kqemu isn't part of Ubuntu since lucid

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

-- 
Packages using DKMS should make use of /usr/lib/dkms/common.postinst
https://bugs.launchpad.net/bugs/497149
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to drbd8 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 681891] Re: Problem with table 'key' and similar 'keys' etc.

2010-11-28 Thread Clint Byrum
Hello Dmitry, thank you for taking the time to file this bug report and
help us make Ubuntu better!

The statement

select * from key;

does indeed have a reserved word, key, that is unquoted, and so its
syntax is invalid.

select * from `key`;

Works fine.

Closing as Invalid.

** Changed in: mysql-5.1 (Ubuntu)
   Status: New = Invalid

-- 
Problem with table 'key' and similar 'keys' etc.
https://bugs.launchpad.net/bugs/681891
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 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 681701] Re: openvswitch postinst fails

2010-11-28 Thread Launchpad Bug Tracker
This bug was fixed in the package openvswitch - 1.1.0~pre2-5ubuntu4

---
openvswitch (1.1.0~pre2-5ubuntu4) natty; urgency=low

  * debian/rules, debian/dkms.conf.in: Fix up dkms
support a bit better. (LP: #681701)
  * debian/patches/fix-openvswitch-2.6.37.patch: Fix build on 2.6.37.
 -- Chuck Short zul...@ubuntu.com   Sat, 27 Nov 2010 22:25:05 -0500

** Changed in: openvswitch (Ubuntu)
   Status: New = Fix Released

-- 
openvswitch postinst fails
https://bugs.launchpad.net/bugs/681701
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvswitch 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 681427] Re: Please merge ipsec-tools 1:0.7.3-12 (main) from debian unstable (main)

2010-11-28 Thread Bug Watch Updater
** Changed in: ipsec-tools (Debian)
   Status: Unknown = Fix Released

-- 
Please merge ipsec-tools 1:0.7.3-12 (main) from debian unstable (main)
https://bugs.launchpad.net/bugs/681427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ipsec-tools 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 332606] Re: Racoon 0.7 fails with address already in use

2010-11-28 Thread Bug Watch Updater
** Changed in: ipsec-tools (Debian)
   Status: Unknown = Fix Released

-- 
Racoon 0.7 fails with address already in use
https://bugs.launchpad.net/bugs/332606
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ipsec-tools 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 681713] Re: package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2010-11-28 Thread Zer0wL
I found a problem,
it was because of not taking last version of apache configuration from new dpkg.
So when I really merged all the new configuration files.
Everething fine now.

-- 
package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
https://bugs.launchpad.net/bugs/681713
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 668042] Re: If Libvirtd is restarted, libvirt drops active domains lose network interface info.

2010-11-28 Thread Steven Wagner
I installed the package Dave. So far so good, ill let it run for a
while. Thank you.

-- 
If Libvirtd is restarted, libvirt drops active domains lose network interface 
info.
https://bugs.launchpad.net/bugs/668042
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt 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 494141] Re: CUPS starts after SAMBA; printers are not available (convert cups to upstart)

2010-11-28 Thread Matt Burkhardt
I've been running Ubuntu LTS Versions since 6.06 and doing the upgrades.
I'm currently at 10.04 and I've got this exact same problem.

I've tried adding in the fix listed in Comments #18 and #25 (the same
fix), but that doesn't work at all - meaning Samba does not load at all
and running smbtree gives me nothing.

I have also tried putting the /etc/rc2.d/S50cups and move it to S05cups
- but still doesn't work.

I'm not sending the cups.conf file because I'm not on Maverick and it
runs just fine if I stop and start cups then smbd

Samba has been running fine with CUPS the last 3 1/2 years on that box
with all the LTS updates applied and this last set broke a couple of
things - but mostly CUPS / XSANE related.  Any help or pointers
appreciated

-- 
CUPS starts after SAMBA; printers are not available (convert cups to upstart)
https://bugs.launchpad.net/bugs/494141
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 682500] [NEW] Agent admitted failure to sign using the key.

2010-11-28 Thread Pedro Bessa
Public bug reported:

.ssh dir is chmodded 700, id_rsa.pub 600, id_rsa 400.

I ran ssh-keygen -t rsa, imported key to launchpad, ran bzr branch lp:unity, 
got error message:
Agent admitted failure to sign using the key.
Permission denied (publickey).
bzr: ERROR: Connection closed: Unexpected end of message. Please check 
connectivity and permissions, and report a bug if problems persist.

auth.log:

Nov 28 20:23:13 ubuntu sudo:  deltrem : TTY=pts/0 ; 
PWD=/home/deltrem/Documentos/repositories ; USER=root ; COMMAND=/usr/bin/bzr 
branch lp:unity
Nov 28 20:39:01 ubuntu CRON[2959]: pam_unix(cron:session): session opened for 
user root by (uid=0)
Nov 28 20:39:01 ubuntu CRON[2959]: pam_unix(cron:session): session closed for 
user root
Nov 28 20:41:04 ubuntu gnome-screensaver-dialog: gkr-pam: unlocked login keyring

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

-- 
Agent admitted failure to sign using the key.
https://bugs.launchpad.net/bugs/682500
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 682501] [NEW] php5 5.3.3-1 causing segfaults - 5.3.3-4 backport for maverick?

2010-11-28 Thread c_t
Public bug reported:

Binary package hint: php5

With the current php packages in lucid (5.3.2) and maverick (5.3.3-1)
some php applications including e.g. egroupware 1.8 cause php to
segfault. My apache error.log is full of messages like these:

[Sun Nov 28 23:43:18 2010] [notice] child pid 3924 exit signal Segmentation 
fault (11)
[Sun Nov 28 23:43:19 2010] [notice] child pid 2373 exit signal Segmentation 
fault (11)

Users in the egroupware mailinglist have reported
(http://egroupware.219119.n3.nabble.com/Zwei-Module-UserMgmt-
Dateimanager-funktionieren-nicht-out-of-the-box-tp1776310p1962159.html)
that most of the segfaults are gone with php 5.3.3-4 from debian
unstable (http://packages.debian.org/sid/php5).

Would it be possible to provide a package of php5 5.3.3-4 in maverick-
backports?

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

-- 
php5 5.3.3-1 causing segfaults - 5.3.3-4 backport for maverick?
https://bugs.launchpad.net/bugs/682501
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 682501] Re: php5 5.3.3-1 causing segfaults - 5.3.3-4 backport for maverick?

2010-11-28 Thread Micah Gersten
Unfortunately, it's not possible to provide backports of a heavily used
library like PHP, but if you can find the commit that fixes the segfault
you are having, we can try to SRU
(https://wiki.ubuntu.com/StableReleaseUpdates) it.

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

-- 
php5 5.3.3-1 causing segfaults - 5.3.3-4 backport for maverick?
https://bugs.launchpad.net/bugs/682501
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 682500] Re: Agent admitted failure to sign using the key.

2010-11-28 Thread Max Bowsher
Pedro,

Please reproduce the failure, then run echo $SSH_AUTH_SOCK in the same
shell, and tell us whether the result begins /tmp/ssh- or /tmp/keyring-
: this will ascertain whether you are using the openssh ssh-agent, or
the reimplementation of the ssh-agent protocol in gnome-keyring-daemon.

I suspect the latter, in which case this bug needs to be on the gnome-
keyring package, not the openssh one.

-- 
Agent admitted failure to sign using the key.
https://bugs.launchpad.net/bugs/682500
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


Re: [Bug 682085] Re: Tryd sharing installed samba Unknown process runing not allowing log out

2010-11-28 Thread Kangarooo
Got on next shut down this again but from different programm: Power
Manager ingibit Applet, Manual Inhibit


** Attachment added: Screenshot-Untitled Window.png
   
https://bugs.launchpad.net/bugs/682085/+attachment/1748392/+files/Screenshot-Untitled%20Window.png

-- 
Tryd sharing installed samba Unknown process runing not allowing log out
https://bugs.launchpad.net/bugs/682085
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 540121] Re: does not terminate at computer shutdown

2010-11-28 Thread Launchpad Bug Tracker
[Expired for openssh (Ubuntu) because there has been no activity for 60
days.]

** Changed in: openssh (Ubuntu)
   Status: Incomplete = Expired

-- 
does not terminate at computer shutdown
https://bugs.launchpad.net/bugs/540121
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 537327] Re: kvm in karmic: smp win2003 guests crash on reboot

2010-11-28 Thread Launchpad Bug Tracker
[Expired for qemu-kvm (Ubuntu) because there has been no activity for 60
days.]

** Changed in: qemu-kvm (Ubuntu)
   Status: Incomplete = Expired

-- 
kvm in karmic: smp win2003 guests crash on reboot
https://bugs.launchpad.net/bugs/537327
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm 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 263398] Re: spamassassin sends some mails to junk

2010-11-28 Thread Launchpad Bug Tracker
[Expired for spamassassin (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: spamassassin (Ubuntu)
   Status: Incomplete = Expired

-- 
spamassassin sends some mails to junk
https://bugs.launchpad.net/bugs/263398
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to spamassassin 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 681713] Re: package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2010-11-28 Thread Clint Byrum
Zer0wl, thanks for the response.

Closing the bug as Invalid.

** Changed in: apache2 (Ubuntu)
   Status: Incomplete = Invalid

-- 
package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
https://bugs.launchpad.net/bugs/681713
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 674093] Re: No Such Object at OID 1.3.6.1.2.1.25.6.3.1.2

2010-11-28 Thread Thomas Häcker
** Changed in: net-snmp (Ubuntu)
   Status: Incomplete = New

-- 
No Such Object at OID 1.3.6.1.2.1.25.6.3.1.2
https://bugs.launchpad.net/bugs/674093
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp 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