[Bug 808297] [NEW] package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-10 Thread Sanjeev
Public bug reported:

Tried to install Samba and it crashed.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: samba 2:3.5.8~dfsg-1ubuntu2.2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
NonfreeKernelModules: nvidia
AptOrdering:
 samba: Install
 samba: Configure
Architecture: i386
Date: Sun Jul 10 19:15:10 2011
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
RelatedPackageVersions:
 nautilus 1:2.32.2.1-0ubuntu13
 gvfs 1.8.0-0ubuntu2
SambaClientRegression: Yes
SourcePackage: samba
Title: package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-package i386 natty

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/808297/+subscriptions

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

2011-07-10 Thread Sanjeev
-- 
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/808297

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/808297/+subscriptions

-- 
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 808311] [NEW] ERROR: Invalid setting true for option LogInfected

2011-07-10 Thread Fabien Tassin
Public bug reported:

 * Starting Sendmail milter plugin for ClamAV clamav-milter
ERROR: Invalid setting true for option LogInfected  
[fail]

yet:

# grep LogInfected /etc/clamav/clamav-milter.conf
LogInfected Off

the reason is the log is bogus:

clamav-milter/clamfi.c:

if(!(opt = optget(opts, LogInfected))-enabled || 
!strcasecmp(opt-strarg, Off))
loginfected = LOGINF_NONE;
else if(!strcasecmp(opt-strarg, Basic))
loginfected = LOGINF_BASIC;
else if(!strcasecmp(opt-strarg, Full))
loginfected = LOGINF_FULL;
else {
logg(!Invalid setting %s for option LogInfected\n, opt-strarg);
return 1;
}

if((opt = optget(opts, LogClean))-enabled) {
if(!strcasecmp(opt-strarg, Basic))
loginfected |= LOGCLN_BASIC;
else if(!strcasecmp(opt-strarg, Full))
loginfected |= LOGCLN_FULL;
else if(strcasecmp(opt-strarg, Off)) {
logg(!Invalid setting %s for option LogInfected\n, opt-strarg);  
  == should be LogClean
return 1;
}
}


and indeed:

# grep LogClean /etc/clamav/clamav-milter.conf
LogClean true

Changing true to  Basic / Full / Off make it work.

So both the confusing log and the wrong default value should be fixed.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: clamav 0.97.1+dfsg-1ubuntu1
ProcVersionSignature: Ubuntu 3.0-3.4-generic 3.0.0-rc5
Uname: Linux 3.0-3-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Sun Jul 10 12:41:09 2011
ProcEnviron:
 LANGUAGE=en_US:en
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/usr/bin/tcsh
SourcePackage: clamav
UpgradeStatus: Upgraded to oneiric on 2009-07-28 (712 days ago)

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


** Tags: amd64 apport-bug oneiric unity-2d

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

Title:
  ERROR: Invalid setting true for option LogInfected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/808311/+subscriptions

-- 
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 808311] Re: ERROR: Invalid setting true for option LogInfected

2011-07-10 Thread Fabien Tassin
-- 
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/808311

Title:
  ERROR: Invalid setting true for option LogInfected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/808311/+subscriptions

-- 
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 808311] [NEW] ERROR: Invalid setting true for option LogInfected

2011-07-10 Thread Michael Tautschnig
Hi,

 Public bug reported:
 
  * Starting Sendmail milter plugin for ClamAV clamav-milter
 ERROR: Invalid setting true for option LogInfected
   [fail]
 
 yet:
 
 # grep LogInfected /etc/clamav/clamav-milter.conf
 LogInfected Off
 
 the reason is the log is bogus:
 

I've just reported this to upstream as #3040, see
https://wwws.clamav.net/bugzilla/show_bug.cgi?id=3040.

 
 and indeed:
 
 # grep LogClean /etc/clamav/clamav-milter.conf
 LogClean true
 
 Changing true to  Basic / Full / Off make it work.
 
 So both the confusing log and the wrong default value should be fixed.


The wrong value true was likely caused by the debconf question missing in
versions before 0.97.1+dfsg-1 (whilst still internally asking debconf for a
value). If you remove this line from the config file or dpkg-reconfigure
clamav-milter you should get an appropriate value in there.

Automatically fixing this problem seems to be a bit risky as we do not want to
override a user's choice/configuration, not even an invalid one.

Hope this helps,
Michael

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

Title:
  ERROR: Invalid setting true for option LogInfected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/808311/+subscriptions

-- 
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 808311] Re: ERROR: Invalid setting true for option LogInfected

2011-07-10 Thread Michael Tautschnig
** Bug watch added: ClamAV Bugzilla #3040
   https://wwws.clamav.net/bugzilla/show_bug.cgi?id=3040

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

Title:
  ERROR: Invalid setting true for option LogInfected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/808311/+subscriptions

-- 
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 808446] [NEW] mcollective, rubygems and libstomp-ruby

2011-07-10 Thread James Troup
Public bug reported:

Hi,

So the rubygems dependency makes me twitch since my servers can't do
gem installs from remote servers (for obvious reasons).  I asked
upstream why it was required and he told me it was only really used by
the stomp plugin because generally stomp is provided by gems.
Digging further, it turns out that if we had a remotely modern version
of libstomp-ruby, that'd be perfectly sufficient for mcollective and
we could drop the 'require rubygems' entirely (at least in our
packages).  \o/

The newer version of libstomp-ruby issue is tracked here:

  https://bugs.launchpad.net/ubuntu/+source/libstomp-ruby/+bug/707317

(and http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598564)

So, once that (or something like it is merged), in terms of
mcollective, I think mcollective's dependency on libstomp-ruby should
be versioned to = 1.1.9 and then we can drop the 'require rubygems'
and corresponding dependency?

-- 
James

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

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

Title:
  mcollective, rubygems and libstomp-ruby

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mcollective/+bug/808446/+subscriptions

-- 
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 697046] Re: Unable to create volumes on disk pools as parted support is missing

2011-07-10 Thread Chris Halse Rogers
Neither do I.  The security packages do not contain a build-dep on
parted.  Marking the Lucid, Maverick and Natty tasks back to incomplete.

I note that you've got another SRU upload for bug #495394 in the queue.
Would you like to fold this change into that upload, or process them
separately?

** Changed in: libvirt (Ubuntu Natty)
   Status: Fix Released = Incomplete

** Changed in: libvirt (Ubuntu Lucid)
   Status: Fix Released = Incomplete

** Changed in: libvirt (Ubuntu Maverick)
   Status: Fix Released = Incomplete

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

Title:
  Unable to create volumes on disk pools as parted support is missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/697046/+subscriptions

-- 
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 495394] Re: autostart almost always fails on boot time host

2011-07-10 Thread Chris Halse Rogers
Before accepting this upload I'd like to check that you don't want to
fold the missing fixes for bug #697046 into this upload.

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

Title:
  autostart almost always fails on boot time host

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/495394/+subscriptions

-- 
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 657972] Re: Panic or segfault in Samba

2011-07-10 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/657972

Title:
  Panic or segfault in Samba

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/657972/+subscriptions

-- 
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 787551] Re: ntpdate 4.2.6p2@1.2194-o: no server suitable for synchronization found - works with 4.2.4p8@1.1612-o

2011-07-10 Thread Launchpad Bug Tracker
This bug was fixed in the package ntp - 1:4.2.6.p2+dfsg-1ubuntu5.1

---
ntp (1:4.2.6.p2+dfsg-1ubuntu5.1) natty-proposed; urgency=low

  * debian/patches/ntpdate-accept-same-timestamp-replies.patch:
Resolving regression where ntpdate ignores replies from some
ntp servers where recieve and transmit timestamps are equal.
Patch cherry picked from upstream commit. (LP: #787551)
 -- Dave Walker (Daviey) davewal...@ubuntu.com   Mon, 13 Jun 2011 15:43:57 
+0100

** Changed in: ntp (Ubuntu Natty)
   Status: Fix Committed = Fix Released

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

Title:
  ntpdate 4.2.6p2@1.2194-o: no server suitable for synchronization
  found - works with 4.2.4p8@1.1612-o

To manage notifications about this bug go to:
https://bugs.launchpad.net/ntp/+bug/787551/+subscriptions

-- 
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 561750] Re: squid starts and stops immediately (after upgrade from karmic to lucid)

2011-07-10 Thread Martin Pitt
Ernst, is the reload vs. restart issue really related to this bug? This
was about doing DNS checks, not a bug in the upstart script. Should
there be a new bug report instead?

BTW, reload is not supposed to kill the daemon. For oneiric, reload
should be fixed to actually work, instead of using restart instead. If
that fix is easy, then it should be backported; if it's complex, then
the restart workaround might be more appropriate for an SRU.

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

Title:
  squid starts and stops immediately (after upgrade from karmic to
  lucid)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid/+bug/561750/+subscriptions

-- 
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 808611] [NEW] package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3 failed to install/upgrade: failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb during `./usr/bin/net.samba3'

2011-07-10 Thread tony
Public bug reported:

I opened the K Package kit and tried to download bug fixes and updates.
I am using a 16gig toshiba usb stick as my ubuntu 10.04 system and there is 
about 14.5gig remaining but a message popped up and stated that there was only 
a couple of hundred mg remaining.
It said that it had encountered a problem and couldn't continue.
that's it.  hope you can help,  Tony.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3
ProcVersionSignature: Ubuntu 2.6.32-28.55-generic 2.6.32.27+drm33.12
Uname: Linux 2.6.32-28-generic i686
Architecture: i386
Date: Mon Jul 11 04:37:35 2011
ErrorMessage: failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb during 
`./usr/bin/net.samba3'
LiveMediaBuild: Ubuntu 10.04.2 LTS Lucid Lynx - Release i386 (20110211.1)
RelatedPackageVersions:
 nautilus 1:2.30.1-0ubuntu1.1
 gvfs 1.6.1-0ubuntu1build1
SambaClientRegression: Yes
SourcePackage: samba
Title: package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3 failed to 
install/upgrade: failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb 
during `./usr/bin/net.samba3'

** Affects: samba (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 samba in Ubuntu.
https://bugs.launchpad.net/bugs/808611

Title:
  package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3 failed to
  install/upgrade: failed in buffer_write(fd) (10, ret=-1): backend
  dpkg-deb during `./usr/bin/net.samba3'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/808611/+subscriptions

-- 
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 808611] Re: package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3 failed to install/upgrade: failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb during `./usr/bin/net.samba3'

2011-07-10 Thread tony
-- 
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/808611

Title:
  package samba-common-bin 2:3.4.7~dfsg-1ubuntu3.3 failed to
  install/upgrade: failed in buffer_write(fd) (10, ret=-1): backend
  dpkg-deb during `./usr/bin/net.samba3'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/808611/+subscriptions

-- 
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 790145] Please test proposed package

2011-07-10 Thread Martin Pitt
Hello Attb2, or anyone else affected,

Accepted qemu-kvm into maverick-proposed, the package will build now and
be available in a few hours. Please test and give feedback here. See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed. Thank you in advance!

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

Title:
  kvm husb: ctrl buffer too small

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/790145/+subscriptions

-- 
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 578536] Re: when stopped, automount orphans some mounts

2011-07-10 Thread Martin Pitt
Server team ping?

** Changed in: autofs5 (Ubuntu Maverick)
   Status: Triaged = Incomplete

** Changed in: autofs5 (Ubuntu Oneiric)
   Status: Triaged = Incomplete

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

Title:
  when stopped, automount orphans some mounts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs5/+bug/578536/+subscriptions

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