[Bug 688085] Re: Guest kernel hang during boot when KVM is active on i386 host

2010-12-28 Thread Fathi Boudra
** Bug watch added: Meego #10075
   http://bugs.meego.com/show_bug.cgi?id=10075

** Also affects: meego via
   http://bugs.meego.com/show_bug.cgi?id=10075
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to kvm in ubuntu.
https://bugs.launchpad.net/bugs/688085

Title:
  Guest kernel hang during boot when KVM is active on i386 host

-- 
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 694953] [NEW] missing i386 libraries on amd64

2010-12-28 Thread Metabaronen
Public bug reported:

Binary package hint: winbind

It is common to use 32 bit proprietary applications like flashplayer, citrix 
and acrobat on a amd64 system. The NSS libraries are a vital part of the system 
as it enables programs to lookup user and group information.
To solve this problem today we have to extract the nss library from the 32 bit 
package and install it by hand. I think that this should be provided by the 
winbind package.

Please add the 32 bit nss_winbind library to the winbind package for
amd64.

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/694953

Title:
  missing i386 libraries on amd64

-- 
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 694754] Re: Apache graceful-stop doesn't end apache processes

2010-12-28 Thread Stefan Fritsch
Have you checked with netstat that there are no more open connections?
The processes will only die once there are no more open connections.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.
https://bugs.launchpad.net/bugs/694754

Title:
  Apache graceful-stop doesn't end apache processes

-- 
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 688541] Re: race condition on shutdown (leads to corrupted fs)

2010-12-28 Thread ingo
I do unsubscribe from this bug for the time beeing. It does not make
sense to deal with the symtoms until the root of the evil Bug #672177 is
fixed.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/688541

Title:
  race condition on shutdown (leads to corrupted fs)

-- 
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 694953] Re: missing i386 libraries on amd64

2010-12-28 Thread Dave Gilbert
I've added ia32-libs to this bug since that's where most 32bit
compatibility libraries go on 64 bit systems.

(But I left samba since I wasn't sure that the ia32-libs guys would want
to put this in and that the samba guys probably wanted to know).

Dave

** Also affects: ia32-libs (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/694953

Title:
  missing i386 libraries on amd64

-- 
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 350936] Re: Should shut down domains on system shutdown

2010-12-28 Thread Martin Rusko
On John Morrissey's libvirt-bin.conf file ... there is construct like:

delay=$SHUTDOWN_TIMEOUT
while [ $delay -gt 0 ]; do
for uri in $URIS; do
if ! run_virsh -c $uri list | awk '$3 == running 
{exit 1}'; then
# VMs at this URI are still running. Wait, then
# start at the beginning looking for running 
VMs.
sleep 1
delay=$(($delay - 1))
continue 2
fi
done
done

... what if no guest is running anymore? We will never enter if...then
condition and thus never decrement $delay variable anymore. It looks
like we stay in that while...done loop forever.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to kvm in ubuntu.
https://bugs.launchpad.net/bugs/350936

Title:
  Should shut down domains on system shutdown

-- 
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 350936] Re: Should shut down domains on system shutdown

2010-12-28 Thread Martin Rusko
Well placed 'break' command should make libvirt-bin.conf functioning
correctly.

** Patch added: libvirt-bin.conf.diff
   
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/350936/+attachment/1778008/+files/libvirt-bin.conf.diff

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to kvm in ubuntu.
https://bugs.launchpad.net/bugs/350936

Title:
  Should shut down domains on system shutdown

-- 
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 672177] Re: libc6 upgrade causes umount to fail on shutdown because init cannot be restarted

2010-12-28 Thread Scott James Remnant
On Tue, Dec 28, 2010 at 6:47 AM, Clint Byrum cl...@fewbar.com wrote:

 This makes sense, because telinit u just sends SIGTERM to upstart, which
 has no handler, as it was removed by revision 977, and doesn't seem to
 have been added back. Since SIG_DFL signals are not delivered to init,
 I'm not sure how umountroot's call to 'telinit u' can help in this case.

 Unless I'm missing something in upstart's code (quite likely) I think
 there may still potentially need to be a change in upstart to support
 re-executing.

Hmm, while that handled was removed Upstream, the code should have
been retained in the Ubuntu package as part of the telinit u patch.

The idea is that rather than doing a full state transfer, Upstart just
re-exec's itself and loses all state.  That's why we do it as the last
thing before unmounting the root on shutdown, because it then doesn't
matter about the state - there shouldn't be any.

Maybe that part of the patch has been lost?

Scott

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.
https://bugs.launchpad.net/bugs/672177

Title:
  libc6 upgrade causes umount to fail on shutdown because init cannot be 
restarted

-- 
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 694953] Re: missing i386 libraries on amd64

2010-12-28 Thread Jelmer Vernooij
** Changed in: samba (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/694953

Title:
  missing i386 libraries on amd64

-- 
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 695055] [NEW] package clamav-milter 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-12-28 Thread Fawkat
Public bug reported:

Binary package hint: clamav

This error is reported by update manager

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: clamav-milter 0.96.3+dfsg-2ubuntu1.0.10.04.2
ProcVersionSignature: Ubuntu 2.6.32-27.49-generic 2.6.32.26+drm33.12
Uname: Linux 2.6.32-27-generic i686
Architecture: i386
Date: Tue Dec 28 18:28:32 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
SourcePackage: clamav
Title: package clamav-milter 0.96.3+dfsg-2ubuntu1.0.10.04.2 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1

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


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in ubuntu.
https://bugs.launchpad.net/bugs/695055

Title:
  package clamav-milter 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1

-- 
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 695055] Re: package clamav-milter 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-12-28 Thread Fawkat


-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in ubuntu.
https://bugs.launchpad.net/bugs/695055

Title:
  package clamav-milter 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1

-- 
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 677764] Re: vsftpd postinstall checks for user/group starting with ftp

2010-12-28 Thread Imre Gergely
Isn't this bug a duplicate of bug #629234 ?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in ubuntu.
https://bugs.launchpad.net/bugs/677764

Title:
  vsftpd postinstall checks for user/group starting with ftp

-- 
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 677764] Re: vsftpd postinstall checks for user/group starting with ftp

2010-12-28 Thread odonata
To my novice eye, yes they do appear to be duplicates / related.

As a user, I became involved with this partiuclar bug by reporting a
problem I had where an install of vsftpd failed along with some other
packages (Bug# 634085). Because of this I gave the developers who sent
me questions as much info as I could to help them gain insight into the
problem. But other than that my knowledge is limited. At the time I
reported my initial bug, I had no clue as to what had caused the
failure. So I was unable to locate an existing bug that matched mine so
I entered a new one.


- Original message -
From: Imre Gergely 677...@bugs.launchpad.net
To: odon...@fastmail.fm
Date: Tue, 28 Dec 2010 16:21:46 -
Subject: [Bug 677764] Re: vsftpd postinstall checks for user/group starting 
with ftp

Isn't this bug a duplicate of bug #629234 ?

-- 
You received this bug notification because you are a direct subscriber
of a duplicate bug (634085).
https://bugs.launchpad.net/bugs/677764

Title:
  vsftpd postinstall checks for user/group starting with ftp

Status in “vsftpd” package in Ubuntu:
  Fix Released
Status in “vsftpd” source package in Lucid:
  Confirmed
Status in “vsftpd” source package in Maverick:
  Confirmed
Status in “vsftpd” source package in Natty:
  Fix Released
Status in “vsftpd” package in Debian:
  Fix Released

Bug description:
  Binary package hint: vsftpd

?

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: vsftpd (not installed)
ProcVersionSignature: Ubuntu 2.6.32-25.45-generic 2.6.32.21+drm33.7
Uname: Linux 2.6.32-25-generic i686
AptOrdering:
 vsftpd: Install
 vsftpd: Configure
Architecture: i386
Date: Fri Nov 19 22:28:45 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
SourcePackage: vsftpd
Title: package vsftpd (not installed) failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1


SRU comments:
Impact: Breaks install of vsftp if any existing user or group name begins with 
'ftp'.
How bug addressed: The vsftpd.postinst script is patched so it accepts only 
whole names 'ftp', not names beginning with 'ftp'.
Patch: See attached debdiffs.
To reproduce: Create a user or group 'ftpfoo' before installing vsftpd
Regression Potential: This should have no impact as it only changes the string 
being checked for in existing users and groups.  If there were a typo in the 
patch, it could break vsftpd installation.


To unsubscribe from this bug, go to:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/677764/+subscribe

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in ubuntu.
https://bugs.launchpad.net/bugs/677764

Title:
  vsftpd postinstall checks for user/group starting with ftp

-- 
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 350936] Re: Should shut down domains on system shutdown

2010-12-28 Thread Brian Murray
** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to kvm in ubuntu.
https://bugs.launchpad.net/bugs/350936

Title:
  Should shut down domains on system shutdown

-- 
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 675164] Re: New version of openssh cannot connect to ssh server

2010-12-28 Thread Matthew Gregg
I seem to have a similar problem in natty, but it happens only
occasionally.  I can successfully connect about 70% of the time.  Using
openssh-client 1:5.6p1-2ubuntu3.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.
https://bugs.launchpad.net/bugs/675164

Title:
  New version of openssh cannot connect to ssh server

-- 
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 672177] Re: libc6 upgrade causes umount to fail on shutdown because init cannot be restarted

2010-12-28 Thread Clint Byrum
On Tue, 2010-12-28 at 14:22 +, Scott James Remnant wrote:
 On Tue, Dec 28, 2010 at 6:47 AM, Clint Byrum cl...@fewbar.com wrote:
 
  This makes sense, because telinit u just sends SIGTERM to upstart, which
  has no handler, as it was removed by revision 977, and doesn't seem to
  have been added back. Since SIG_DFL signals are not delivered to init,
  I'm not sure how umountroot's call to 'telinit u' can help in this case.
 
  Unless I'm missing something in upstart's code (quite likely) I think
  there may still potentially need to be a change in upstart to support
  re-executing.
 
 Hmm, while that handled was removed Upstream, the code should have
 been retained in the Ubuntu package as part of the telinit u patch.
 
 The idea is that rather than doing a full state transfer, Upstart just
 re-exec's itself and loses all state.  That's why we do it as the last
 thing before unmounting the root on shutdown, because it then doesn't
 matter about the state - there shouldn't be any.
 
 Maybe that part of the patch has been lost?
 

Ahh, as I suspected I was missing something in upstart's code.

That code is cleverly hidden within the package diff.

It registers nih_main_term_signal() which calls nih_main_loop_exit(),
which tells init to exit after any currently running operation is over.

So, it would seem init exits on SIGTERM. I did see it actually exit and
end up panicing the kernel once, but only when I sent multiple kills.

init should never exit, so should'nt we instead be execcing ourselves
again? Will keep digging in, maybe neither are happening as we expect
them to, causing this issue.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.
https://bugs.launchpad.net/bugs/672177

Title:
  libc6 upgrade causes umount to fail on shutdown because init cannot be 
restarted

-- 
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 687535] Re: upstart loses track of ssh daemon after reload ssh

2010-12-28 Thread Imre Gergely
I'm guessing this is waiting for a SRU. Here's the patch for Lucid and
Maverick. Description updated for SRU. Please somebody add some notes to
'REGRESSION POTENTIAL' because I have no idea about that...

** Description changed:

  When sshd gets a signal 1 for reload, it forks a new process and ditches
  the old. This causes upstart to believe that ssh has crashed, and loses
  track of it. A second reload (or any other initctl operation on ssh)
  will thus say:
  
  reload: Unknown instance:
  
  There would be 2 ways to fix this:
  1.  Don't have ssh fork on relod, but keep the same pid
  2. Use a different mechanism in upstart to keep track of ssh. Maybe a pid 
file? Just tracking children of the exited ssh won't work, or it might 
accidentally track a particular session rather than the master, if somebody 
just happens to log in close to reload time.
  
+ openssh-server  1:5.3p1-3ubuntu4
+ upstart 0.6.5-7
  
- # lsb_release -rd
- Description:Ubuntu 10.04.1 LTS
- Release:10.04
+  Info for Maverick, Lucid SRU 
+ IMPACT: if sshd gets a HUP signal, it forks a new process and upstart thinks 
the process died and loses track of it, so the user/admin uses the ability to 
stop/start/reload the daemon through upstart.
+ The problem is fixed in Natty 5.6p1-2ubuntu3. See attached patches for 
Maverick and Lucid.
  
- # dpkg -l openssh-server | cat
- Desired=Unknown/Install/Remove/Purge/Hold
- | Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
- |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
- ||/ NameVersion   
 Description
- 
+++-===-==-=
- ii  openssh-server  1:5.3p1-3ubuntu4  
 secure shell (SSH) server, for secure access from 
remote machines
+ TEST CASE:
  
- # dpkg -l upstart
- Desired=Unknown/Install/Remove/Purge/Hold
- | Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
- |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
- ||/ Name   VersionDescription
- +++-==-==-
- ii  upstart0.6.5-7event-based init daemon
+ - install openssh-server
+ - send a HUP signal to sshd
+ - the daemon is restarted, but upstart thinks that it crashed 
(/var/log/daemon.log):
+ 
+ Dec 28 20:59:57 utest-lls32 init: ssh main process ended, respawning
+ Dec 28 20:59:57 utest-lls32 init: ssh main process (1451) terminated with 
status 255
+ Dec 28 20:59:57 utest-lls32 init: ssh main process ended, respawning
+ Dec 28 20:59:57 utest-lls32 init: ssh main process (1455) terminated with 
status 255
+ Dec 28 20:59:57 utest-lls32 init: ssh respawning too fast, stopped
+ 
+ - after this, upstart won't know about sshd, despite the daemon running
+ just fine:
+ 
+ r...@utest-lls32:~# reload ssh
+ reload: Unknown instance: 
+ 
+ With the fix applied, the correct behavior is:
+ 
+ - send a HUP signal to sshd
+   ps ax |grep sshd
+   kill -HUP sshd
+ - the daemon reloads (/var/log/auth.log):
+ 
+ Dec 28 21:37:01 utest-lls32 sshd[742]: Received SIGHUP; restarting.
+ Dec 28 21:37:01 utest-lls32 sshd[742]: Server listening on 0.0.0.0 port 22.
+ Dec 28 21:37:01 utest-lls32 sshd[742]: Server listening on :: port 22.
+ 
+ - reloading with upstart gives the same result, and NOT an error
+ message.
+ 
+ REGRESSION POTENTIAL: TODO

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.
https://bugs.launchpad.net/bugs/687535

Title:
  upstart loses track of ssh daemon after reload ssh

-- 
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 687535] Re: upstart loses track of ssh daemon after reload ssh

2010-12-28 Thread Imre Gergely

** Patch added: Debdiff for Lucid
   
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/687535/+attachment/1778353/+files/lucid.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.
https://bugs.launchpad.net/bugs/687535

Title:
  upstart loses track of ssh daemon after reload ssh

-- 
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 687535] Re: upstart loses track of ssh daemon after reload ssh

2010-12-28 Thread Imre Gergely

** Patch added: Debdiff for Maverick
   
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/687535/+attachment/1778359/+files/maverick.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.
https://bugs.launchpad.net/bugs/687535

Title:
  upstart loses track of ssh daemon after reload ssh

-- 
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 695145] [NEW] package clamav-base 0.96. 3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrad e: sub-processo script post-installation instalado retor nou estado de saída de erro 1

2010-12-28 Thread Raul Yamasaki
Public bug reported:

Binary package hint: clamav

r...@xx:/home/xxx/Download/clamav-0.96.5# clamdscan /
ERROR: Clamd is not configured properly.

--- SCAN SUMMARY ---
Infected files: 0
Time: 0.000 sec (0 m 0 s)

And:
# apt-get purge clamav*
Lendo listas de pacotes... Pronto
Construindo árvore de dependências   
Lendo informação de estado... Pronto
Nota, selecionando libclamav-client-perl para expressão regular 'clamav*'
Nota, selecionando python2.6-clamav para expressão regular 'clamav*'
Nota, selecionando python-clamav ao invés de python2.6-clamav
Nota, selecionando clamav-unofficial-sigs para expressão regular 'clamav*'
Nota, selecionando clamav para expressão regular 'clamav*'
Nota, selecionando clamav-freshclam para expressão regular 'clamav*'
Nota, selecionando clamav-dbg para expressão regular 'clamav*'
Nota, selecionando libclamav-dev para expressão regular 'clamav*'
Nota, selecionando clamav-base para expressão regular 'clamav*'
Nota, selecionando libclamav2 para expressão regular 'clamav*'
Nota, selecionando libclamav3 para expressão regular 'clamav*'
Nota, selecionando libclamav6 para expressão regular 'clamav*'
Nota, selecionando clamav-testfiles para expressão regular 'clamav*'
Nota, selecionando clamav-data para expressão regular 'clamav*'
Nota, selecionando clamav-getfiles para expressão regular 'clamav*'
Nota, selecionando clamav-daemon para expressão regular 'clamav*'
Nota, selecionando clamav-docs para expressão regular 'clamav*'
Nota, selecionando python-clamav para expressão regular 'clamav*'
Nota, selecionando clamav-milter para expressão regular 'clamav*'
Nota, selecionando clamassassin para expressão regular 'clamav*'
E: Impossível achar pacote clamav*
# apt-get install clamav
Lendo listas de pacotes... Pronto
Construindo árvore de dependências   
Lendo informação de estado... Pronto
Os pacotes extra a seguir serão instalados:
  clamav-base clamav-freshclam libclamav6
Pacotes sugeridos:
  clamav-docs libclamunrar6
Os NOVOS pacotes a seguir serão instalados:
  clamav clamav-base clamav-freshclam libclamav6
0 pacotes atualizados, 4 pacotes novos instalados, 0 a serem removidos e 0 não 
atualizados.
É preciso baixar 0B/4684kB de arquivos.
Depois desta operação, 10,7MB adicionais de espaço em disco serão usados.
Você quer continuar [S/n]? s
Pré-configurando pacotes ...
Selecionando pacote previamente não selecionado libclamav6.
(Lendo banco de dados ... 127204 arquivos e diretórios atualmente instalados).
Desempacotando libclamav6 (de 
.../libclamav6_0.96.3+dfsg-2ubuntu1.0.10.04.2_i386.deb) ...
Selecionando pacote previamente não selecionado clamav-base.
Desempacotando clamav-base (de 
.../clamav-base_0.96.3+dfsg-2ubuntu1.0.10.04.2_all.deb) ...
Selecionando pacote previamente não selecionado clamav-freshclam.
Desempacotando clamav-freshclam (de 
.../clamav-freshclam_0.96.3+dfsg-2ubuntu1.0.10.04.2_i386.deb) ...
Selecionando pacote previamente não selecionado clamav.
Desempacotando clamav (de .../clamav_0.96.3+dfsg-2ubuntu1.0.10.04.2_i386.deb) 
...
Processando gatilhos para man-db ...
Processando gatilhos para ureadahead ...
Configurando libclamav6 (0.96.3+dfsg-2ubuntu1.0.10.04.2) ...

Configurando clamav-base (0.96.3+dfsg-2ubuntu1.0.10.04.2) ...
adduser: O usuário `clamav' já existe. Saindo.
dpkg: erro processando clamav-base (--configure):
 sub-processo script post-installation instalado retornou estado de saída de 
erro 1
dpkg: problemas de dependência impedem a configuração de clamav-freshclam:
 clamav-freshclam depende de clamav-base (= 0.96.3+dfsg-2ubuntu1.0.10.04.2); 
porém:
  Pacote clamav-base não está configurado ainda.
dpkg: erro processando clamav-freshclam (--configure):
 problemas de dependência - deixando desconfigurado
dpkg: problemas de dependência impedem a configuração de clamav:
 clamav depende de clamav-freshclam | clamav-data; porém:
  Pacote clamav-freshclam não está configurado ainda.
  Pacote clamav-data não está instalado.
  Pacote clamav-freshclam, o qual fornece clamav-data ainda não está 
configurado.
dpkg: erro processando clamav (--configure):
 problemas de dependência - deixando desconfigurado
Processando gatilhos para libc-bin ...
Nenhum relatório do apport gravado porque a mensagem de erro indica é o 
seguimento de um erro de uma falha anterior.
Nenhum relatório do apport gravado porque a 
mensagem de erro indica é o seguimento de um erro de uma falha anterior.

ldconfig deferred processing now taking place
Erros foram encontrados durante o processamento de:
 clamav-base
 clamav-freshclam
 clamav
E: Sub-process /usr/bin/dpkg returned an error code (1)

help!

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: clamav-base 0.96.3+dfsg-2ubuntu1.0.10.04.2
ProcVersionSignature: Ubuntu 2.6.32-27.49-generic 2.6.32.26+drm33.12
Uname: Linux 2.6.32-27-generic i686
Architecture: i386
Date: Tue Dec 28 18:34:38 2010

[Bug 695145] Re: package clamav-base 0.96.3 df sg-2ubuntu1.0.10.04.2 failed to install/upgrade: sub-processo script post-installation instalado retornou estado de saída de erro 1

2010-12-28 Thread Raul Yamasaki


-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in ubuntu.
https://bugs.launchpad.net/bugs/695145

Title:
  package clamav-base 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrade: 
sub-processo script post-installation instalado retornou estado de saída de 
erro 1

-- 
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 687535] Re: upstart loses track of ssh daemon after reload ssh

2010-12-28 Thread Clint Byrum
Thanks Imre!

I've updated the 'regression-potential' and subscribed ubuntu-sru and
ubuntu-sponsors.

** Tags added: patch

** Description changed:

  When sshd gets a signal 1 for reload, it forks a new process and ditches
  the old. This causes upstart to believe that ssh has crashed, and loses
  track of it. A second reload (or any other initctl operation on ssh)
  will thus say:
  
  reload: Unknown instance:
  
  There would be 2 ways to fix this:
  1.  Don't have ssh fork on relod, but keep the same pid
  2. Use a different mechanism in upstart to keep track of ssh. Maybe a pid 
file? Just tracking children of the exited ssh won't work, or it might 
accidentally track a particular session rather than the master, if somebody 
just happens to log in close to reload time.
  
  openssh-server  1:5.3p1-3ubuntu4
  upstart 0.6.5-7
  
   Info for Maverick, Lucid SRU 
  IMPACT: if sshd gets a HUP signal, it forks a new process and upstart thinks 
the process died and loses track of it, so the user/admin uses the ability to 
stop/start/reload the daemon through upstart.
  The problem is fixed in Natty 5.6p1-2ubuntu3. See attached patches for 
Maverick and Lucid.
  
  TEST CASE:
  
  - install openssh-server
  - send a HUP signal to sshd
  - the daemon is restarted, but upstart thinks that it crashed 
(/var/log/daemon.log):
  
  Dec 28 20:59:57 utest-lls32 init: ssh main process ended, respawning
  Dec 28 20:59:57 utest-lls32 init: ssh main process (1451) terminated with 
status 255
  Dec 28 20:59:57 utest-lls32 init: ssh main process ended, respawning
  Dec 28 20:59:57 utest-lls32 init: ssh main process (1455) terminated with 
status 255
  Dec 28 20:59:57 utest-lls32 init: ssh respawning too fast, stopped
  
  - after this, upstart won't know about sshd, despite the daemon running
  just fine:
  
  r...@utest-lls32:~# reload ssh
- reload: Unknown instance: 
+ reload: Unknown instance:
  
  With the fix applied, the correct behavior is:
  
  - send a HUP signal to sshd
-   ps ax |grep sshd
-   kill -HUP sshd
+   ps ax |grep sshd
+   kill -HUP sshd
  - the daemon reloads (/var/log/auth.log):
  
  Dec 28 21:37:01 utest-lls32 sshd[742]: Received SIGHUP; restarting.
  Dec 28 21:37:01 utest-lls32 sshd[742]: Server listening on 0.0.0.0 port 22.
  Dec 28 21:37:01 utest-lls32 sshd[742]: Server listening on :: port 22.
  
  - reloading with upstart gives the same result, and NOT an error
  message.
  
- REGRESSION POTENTIAL: TODO
+ REGRESSION POTENTIAL:
+ 
+ There is a small race condition in sshd between when it forks, and when
+ it listens for incoming connections. The length of the race is
+ lengthened by a very tiny amount by considering sshd started as soon as
+ it has been executed, rather than when it forks. This will only affect
+ jobs that use 'start on started ssh' and immediately connect to it. This
+ is unlikely to cause problems in any real world scenario, given that
+ most of these programs would also have to fork, exec, and open a socket,
+ which is more work than what sshd will be doing in that time.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.
https://bugs.launchpad.net/bugs/687535

Title:
  upstart loses track of ssh daemon after reload ssh

-- 
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 687535] Re: upstart loses track of ssh daemon after reload ssh

2010-12-28 Thread Clint Byrum
Imre, the debdiffs need different changelog lines for SRU's

openssh (1:5.3p1-3ubuntu4.1) lucid-proposed; urgency=low

and

openssh (1:5.5p1-4ubuntu4.1) maverick-proposed; urgency=low

Otherwise they look good to me.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.
https://bugs.launchpad.net/bugs/687535

Title:
  upstart loses track of ssh daemon after reload ssh

-- 
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 695145] Re: package clamav-base 0.96.3 df sg-2ubuntu1.0.10.04.2 failed to install/upgrade: sub-processo script post-installation instalado retornou estado de saída de erro 1

2010-12-28 Thread Imre Gergely
How did you remove the clamav packages last time, before trying to
reinstall? Did you by any change add the clamav user manually after
removing the packages?

Configurando clamav-base (0.96.3+dfsg-2ubuntu1.0.10.04.2) ...
adduser: O usuário `clamav' já existe. Saindo.
dpkg: erro processando clamav-base (--configure):
 sub-processo script post-installation instalado retornou estado de saída de 
erro 1

If I understand this correctly, it complains that the 'clamav' user
already exists. Try removing the 'clamav' user and running apt-get -f
install again.

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in ubuntu.
https://bugs.launchpad.net/bugs/695145

Title:
  package clamav-base 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrade: 
sub-processo script post-installation instalado retornou estado de saída de 
erro 1

-- 
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 684398] Re: mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

2010-12-28 Thread Imre Gergely
Attached some debdiffs for Lucid and Karmic, please take a look.
I've tried to build the package with the patch applied, but some tests failed, 
I'm not sure why. Output before build failing:

The servers were restarted 437 times
Spent 665.008 of 1469 seconds executing testcases

Failed 5/752 tests, 99.34% were successful.

Failing test(s): main.lock_tables_lost_commit main.ctype_ldml
main.date_formats main.ctype_latin1_de main.events_restart

I don't think it's related to this patch, maybe there are some special
needs for building this, I tried with pbuilder on a Lucid 64bit host.

** Description changed:

  http://bugs.mysql.com/bug.php?id=31145
  
  This bug causes mysqld from 5.1.41-3ubuntu12.7 to segfault.  This is a
  simple 1 line fix that was added to MySQL 5.1.43.  Here is the patch:
  http://lists.mysql.com/commits/94936.
  
  Could you please backport this fix into the 5.1.41 package on Ubuntu
  10.04 LTS?
+ 
+  Info for SRU in Karmic, Lucid 
+ 
+ IMPACT: some ALTER TABLE queries crash the server.
+ 
+ It is fixed in Maverick (mysql-server-5.1 5.1.49-1ubuntu8.1). Tested and
+ confirmed.
+ 
+ TEST CASE:
+ 
+ Install mysql-server-5.1, use the CLI to run the following queries
+ (taken from the upstream bugreport):
+ 
+ CREATE DATABASE grtdiff_alter_test;
+ CREATE TABLE grtdiff_alter_test.t1 (t TEXT, `id` int(11) DEFAULT NULL, `id2` 
int(11)
+ DEFAULT NULL) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+ ALTER TABLE `grtdiff_alter_test`.`t1` DROP COLUMN `t` , ADD COLUMN `t2` TEXT  
NULL  FIRST;
+ 
+ The last command will return:
+ 
+ ERROR 2013 (HY000): Lost connection to MySQL server during query
+ 
+ And in the /var/log/daemon.log you'll see:
+ 
+ Dec 28 23:52:39 utest-lls32 init: mysql main process (2184) terminated with 
status 1
+ Dec 28 23:52:39 utest-lls32 init: mysql main process ended, respawning
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2413]: Upgrading MySQL 
tables if necessary.
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2416]: 
/usr/bin/mysql_upgrade: the '--basedir' option is always ignored
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2416]: Looking for 
'mysql' as: /usr/bin/mysql
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2416]: Looking for 
'mysqlcheck' as: /usr/bin/mysqlcheck
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2416]: This installation 
of MySQL is already upgraded to 5.1.41, use --force if you still need to run 
mysql_upgrade
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2423]: Checking for 
insecure root accounts.
+ Dec 28 23:52:40 utest-lls32 /etc/mysql/debian-start[2427]: Triggering 
myisam-recover for all MyISAM tables
+ 
+ a.k.a daemon crashed and was restarted.
+ 
+ After applying the fix the above queries will run without a crash.
+ 
+ REGRESSION POTENTIAL: should be low. The patch was taken directly from
+ upstream (see above commit link).

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/684398

Title:
  mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

-- 
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 684398] Re: mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

2010-12-28 Thread Imre Gergely

** Patch added: Debdiff for Lucid
   
https://bugs.launchpad.net/ubuntu/+source/mysql-dfsg-5.1/+bug/684398/+attachment/1778576/+files/lucid.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/684398

Title:
  mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

-- 
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 684398] Re: mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

2010-12-28 Thread Imre Gergely

** Patch added: Debdiff for Karmic.
   
https://bugs.launchpad.net/ubuntu/+source/mysql-dfsg-5.1/+bug/684398/+attachment/1778577/+files/karmic.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/684398

Title:
  mysqld crashes on certain ALTER TABLE queries (MySQL Bug #31145)

-- 
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 672177] Re: libc6 upgrade causes umount to fail on shutdown because init cannot be restarted

2010-12-28 Thread Scott James Remnant
Are you sure?  I can't find that code at all - it looks like it's been
lost somehow

On Tue, Dec 28, 2010 at 6:19 PM, Clint Byrum cl...@fewbar.com wrote:
 On Tue, 2010-12-28 at 14:22 +, Scott James Remnant wrote:
 On Tue, Dec 28, 2010 at 6:47 AM, Clint Byrum cl...@fewbar.com wrote:

  This makes sense, because telinit u just sends SIGTERM to upstart, which
  has no handler, as it was removed by revision 977, and doesn't seem to
  have been added back. Since SIG_DFL signals are not delivered to init,
  I'm not sure how umountroot's call to 'telinit u' can help in this case.
 
  Unless I'm missing something in upstart's code (quite likely) I think
  there may still potentially need to be a change in upstart to support
  re-executing.
 
 Hmm, while that handled was removed Upstream, the code should have
 been retained in the Ubuntu package as part of the telinit u patch.

 The idea is that rather than doing a full state transfer, Upstart just
 re-exec's itself and loses all state.  That's why we do it as the last
 thing before unmounting the root on shutdown, because it then doesn't
 matter about the state - there shouldn't be any.

 Maybe that part of the patch has been lost?


 Ahh, as I suspected I was missing something in upstart's code.

 That code is cleverly hidden within the package diff.

 It registers nih_main_term_signal() which calls nih_main_loop_exit(),
 which tells init to exit after any currently running operation is over.

 So, it would seem init exits on SIGTERM. I did see it actually exit and
 end up panicing the kernel once, but only when I sent multiple kills.

 init should never exit, so should'nt we instead be execcing ourselves
 again? Will keep digging in, maybe neither are happening as we expect
 them to, causing this issue.

 --
 You received this bug notification because you are a member of Upstart
 Developers, which is subscribed to upstart .
 https://bugs.launchpad.net/bugs/672177

 Title:
  libc6 upgrade causes umount to fail on shutdown because init cannot be 
 restarted

 Status in Upstart:
  Invalid
 Status in “eglibc” package in Ubuntu:
  Invalid
 Status in “upstart” package in Ubuntu:
  Confirmed

 Bug description:
  On a clean install of Ubuntu 10.04.1, after upgrading the offer libc6 
 upgrade, on the next reboot the root fs can't be properly unmounted (mount: / 
 is busy). This causes fsck to run on boot and of course some minor issues 
 with the filesystem. This might not be a problem with libc6 itself, but a 
 side effect of upgrading in combination with some other package (I suspect 
 the init process, so I guess upstart).

 The fsck run, and the orphaned inodes it finds are holding me back from 
 installing this on a new server - especially since this already happens on a 
 clean install of 10.04.1!

 p...@ubuntu:~$ lsb_release -rd
 Description:    Ubuntu 10.04.1 LTS
 Release:        10.04

 ii  libc6                           2.11.1-0ubuntu7.2                 
 Embedded GNU C Library: Shared libraries

 ProblemType: Bug
 DistroRelease: Ubuntu 10.04
 Package: libc6 2.11.1-0ubuntu7.2
 ProcVersionSignature: Ubuntu 2.6.32-24.39-server 2.6.32.15+drm33.5
 Uname: Linux 2.6.32-24-server x86_64
 Architecture: amd64
 Date: Sun Nov  7 16:17:07 2010
 InstallationMedia: Ubuntu-Server 10.04.1 LTS Lucid Lynx - Release amd64 
 (20100816.2)
 ProcEnviron:
  PATH=(custom, no user)
  LANG=en_US.UTF-8
  SHELL=/bin/bash
 SourcePackage: eglibc




-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.
https://bugs.launchpad.net/bugs/672177

Title:
  libc6 upgrade causes umount to fail on shutdown because init cannot be 
restarted

-- 
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 692043] Re: package bind9 1:9.6.1 .dfsg.P1-3ubuntu0.4 [modified: usr/share/bind9/b ind9-default.md5sum] failed to install/upgrade: el s ubprocés installed post-installation script retorn à el

2010-12-28 Thread sll
Hello Serge,

Yes it solves and does the trick.

Thanks!

Sergi.


On Wed, Dec 22, 2010 at 10:20 PM, Serge Hallyn 692...@bugs.launchpad.netwrote:

 Thanks for reporting this bug and helping to make Ubuntu better.

 From the dmesg, it looks as though bind9 failed to start because
 apparmor prevented it from reading a configuration file in a custom
 location: /var/lib/named/etc/bind/named.conf.  If you want to use that
 location, you'll need to edit the apparmor configuration.  You'll
 probably want to add something like:

  /var/lib/named/etc/bind/** r,

 to the file /etc/apparmor.d/usr.sbin.named.  Please let us know if that
 succeeds.

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

 --
 You received this bug notification because you are a direct subscriber
 of the bug.
 https://bugs.launchpad.net/bugs/692043

 Title:
  package bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 [modified:
 usr/share/bind9/bind9-default.md5sum] failed to install/upgrade: el
 subprocés installed post-installation script retornà el codi d'eixida
 d'error 1

 Status in “bind9” package in Ubuntu:
   Incomplete

 Bug description:
  Binary package hint: bind9

 lsb_release -rd
 Description:Ubuntu 9.10
 Release:9.10

 ProblemType: Package
 AptOrdering:
  nspluginwrapper: Install
  bind9: Configure
  nspluginwrapper: Configure
 Architecture: amd64
 Date: Sat Dec 18 14:04:53 2010
 DistroRelease: Ubuntu 9.10
 ErrorMessage: el subprocés installed post-installation script retornà el
 codi d'eixida d'error 1
 NonfreeKernelModules: nvidia
 Package: bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 [modified:
 usr/share/bind9/bind9-default.md5sum]
 ProcVersionSignature: Ubuntu 2.6.31-22.69-generic
 SourcePackage: bind9
 Title: package bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 [modified:
 usr/share/bind9/bind9-default.md5sum] failed to install/upgrade: el
 subprocés installed post-installation script retornà el codi d'eixida
 d'error 1
 Uname: Linux 2.6.31-22-generic x86_64

 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/692043/+subscribe


-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.
https://bugs.launchpad.net/bugs/692043

Title:
  package bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 [modified: 
usr/share/bind9/bind9-default.md5sum] failed to install/upgrade: el subprocés 
installed post-installation script retornà el codi d'eixida d'error 1

-- 
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 695145] Re: package clamav-base 0.96.3 df sg-2ubuntu1.0.10.04.2 failed to install/upgrade: sub-processo script post-installation instalado retornou estado de saída de erro 1

2010-12-28 Thread Raul Yamasaki
Thanks I will try to remove and force the installation.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in ubuntu.
https://bugs.launchpad.net/bugs/695145

Title:
  package clamav-base 0.96.3 dfsg-2ubuntu1.0.10.04.2 failed to install/upgrade: 
sub-processo script post-installation instalado retornou estado de saída de 
erro 1

-- 
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 622815] Re: impossible to open network resources with nautilus

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/622815

Title:
  impossible to open network resources with nautilus

-- 
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 622815] Re: impossible to open network resources with nautilus

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/622815

Title:
  impossible to open network resources with nautilus

-- 
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 662687] Re: package apache2.2-common 2.2.14-5ubuntu8.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.
https://bugs.launchpad.net/bugs/662687

Title:
  package apache2.2-common 2.2.14-5ubuntu8.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1

-- 
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 660925] Re: package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/660925

Title:
  package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 2

-- 
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 650795] Re: Third share is always read-only

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/650795

Title:
  Third share is always read-only

-- 
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 695256] [NEW] samba refuses to show shares

2010-12-28 Thread Cypher2
Public bug reported:

Binary package hint: samba

For some reason my samba shares refuse to show up on my network eversince the 
latest maverick updates.
The testparm command outputs these strings and include my smb.conf parameters, 
which have never failed me so far, until now...


Load smb config files from /etc/samba/smb.conf
rlimit_max: rlimit_max (1024) below minimum Windows limit (16384)
Processing section [nathanel]
Processing section [Dropbox]
Processing section [Disk]
Processing section [Backup Disk]
Loaded services file OK.
ERROR: state directory /var/lib/samba does not exist
ERROR: cache directory /var/cache/samba does not exist
Server role: ROLE_STANDALONE
Press enter to see a dump of your service definitions


[global]
server string = %h server (Samba, Ubuntu)
encrypt passwords = No
map to guest = Bad User
obey pam restrictions = Yes
pam password change = Yes
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n 
*Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
unix password sync = Yes
syslog = 0
log file = /var/log/samba/log.%m
max log size = 1000
dns proxy = No
usershare allow guests = Yes
usershare owner only = No
panic action = /usr/share/samba/panic-action %d

[nathanel]
path = /home/nathanel
read only = No
guest ok = Yes

[Dropbox]
path = /home/nathanel/Dropbox
read only = No
guest ok = Yes

[Disk]
path = /media/Disk
read only = No
guest ok = Yes

[Backup Disk]
path = /media/Backup Disk
read only = No
guest ok = Yes


None of my machines seem to show through samba, what can I do?

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: samba 2:3.5.4~dfsg-1ubuntu8.1
ProcVersionSignature: Ubuntu 2.6.35-24.42-generic 2.6.35.8
Uname: Linux 2.6.35-24-generic x86_64
Architecture: amd64
Date: Wed Dec 29 00:07:22 2010
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
ProcEnviron:
 LANG=en_CA.utf8
 SHELL=/bin/bash
RelatedPackageVersions:
 nautilus 1:2.32.0-0ubuntu1.1
 gvfs 1.6.4-0ubuntu1.1
SambaClientRegression: Yes
SourcePackage: samba

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


** Tags: amd64 apport-bug maverick

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/695256

Title:
  samba refuses to show shares

-- 
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 695256] Re: samba refuses to show shares

2010-12-28 Thread Cypher2


-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/695256

Title:
  samba refuses to show shares

-- 
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 685724] Re: openvpn server loses internet after bridge activation

2010-12-28 Thread jtl999
Hi
Whats the holdup.
Thanks

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.
https://bugs.launchpad.net/bugs/685724

Title:
  openvpn server loses internet after bridge activation

-- 
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 672177] Re: libc6 upgrade causes umount to fail on shutdown because init cannot be restarted

2010-12-28 Thread Clint Byrum
On Wed, 2010-12-29 at 00:06 +, Scott James Remnant wrote:
 Are you sure?  I can't find that code at all - it looks like it's been
 lost somehow

quite certain.. its a bit tricky to find it in bzr, but this will give
it to you for, say, maverick:

$ bzr branch lp:ubuntu/maverick/upstart maverick
$ cd maverick
$ bzr diff -r tag:upstream-0.6.6..tag:0.6.6-3

apt-get source will wrap it up in the .diff.gz for you as well.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.
https://bugs.launchpad.net/bugs/672177

Title:
  libc6 upgrade causes umount to fail on shutdown because init cannot be 
restarted

-- 
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