[Bug 1321354] Re: open samba shares become unresponsive if unused for 15 minutes

2015-08-27 Thread Roger Preece
Importance = Undecided?  How can a regression that causes data loss be
undecided?!  This bug also wastes a lot of time and resources.  When
it happens your file manager hangs indefinitely and you have to end the
process not just close the file manager and reopen it.  You actually
have to open your system monitor, find your file manager, and then end
it's process.  The file manager is a major part of the desktop.
Killing/ending it can cause other instability that may also cost the
loss of data if other applications hang leaving you unable to save your
work.

I love you guys but wow.

Linux is way beyond the toy os phase.  it's used everywhere by not
only developers but desktop users that are tired of the high cost of
ownership with the other OS.

With Ubuntu and Linux Mint you are up and running right out of the box.
That word needs to be spread much more widely and through more than just
word-of-mouth.

If my job didn't drive me 24/7 I'd get involved and help with this
stuff, which is what I plan to do when I retire. :)

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

Title:
  open samba shares become unresponsive if unused for 15 minutes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1321354/+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 1477221] Re: Init script fails to stop service

2015-07-27 Thread Roger Lam
This is affecting us too. Moving from 1.4.24-2 to 1.4.24-2ubuntu0.1
broke our chef deploys. We restart haproxy at the end of our recipe and
the old process doesn't get killed.

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

Title:
  Init script fails to stop service

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/haproxy/+bug/1477221/+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 1381537] Re: Dovecot version in precise too old to switch off SSLv3 protocol for poodle fix

2014-10-20 Thread Roger Cornelius
According to https://www.digitalocean.com/community/tutorials/how-to-
protect-your-server-against-the-poodle-sslv3-vulnerability, SSLv3  can
be switched off in 2.0.19 by adding !SSLv3 to the ssl_cipher_list
config option.  Is that not correct?

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

Title:
  Dovecot version in precise  too old to switch off SSLv3 protocol for
  poodle fix

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dovecot/+bug/1381537/+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 1381537] Re: Dovecot version in precise too old to switch off SSLv3 protocol for poodle fix

2014-10-20 Thread Roger Cornelius
Thanks for the clarification.

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

Title:
  Dovecot version in precise  too old to switch off SSLv3 protocol for
  poodle fix

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dovecot/+bug/1381537/+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 1373560] Re: /etc/cron.daily/spamassassin calls sa-update with potentially incorrect umask

2014-09-26 Thread Roger Cornelius
On 09/26/2014 08:21, Robie Basak wrote:
  In my opinion, amavis's ability to read the ruleset created by sa-update
 should not rely on the default umask being in effect when sa-update was
 run.
 
 Agreed. I just wanted to understand the proportion of users who might be
 affected.
 
 This needs to be investigated in Debian.


Thank you.  I don't know if it's relevant, but this problem was not
present on 12.04LTS and only appeared after I upgraded to 14.04LTS.

If I can do anything else to help, let me know.

Roger


 
 ** Changed in: spamassassin (Ubuntu)
Importance: Undecided = Medium
 
 -- 
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1373560
 
 Title:
   /etc/cron.daily/spamassassin calls sa-update with potentially
   incorrect umask
 
 Status in ???spamassassin??? package in Ubuntu:
   New
 
 Bug description:
   ubuntu 14.04.1 LTS 
   Packages:
   spamassassin (3.4.0-1ubuntu1)
   amavisd-new (1:2.7.1-2ubuntu3)
 
   This report has to do with a problem between the interaction of the
   spamassassin and amavisd-new packages, but the problem is with
   /etc/cron.daily/spamassassin.
 
   /etc/cron.daily/spamassassin executes the following line:
 
   su - debian-spamd -c sa-update --gpghomedir /var/lib/spamassassin/sa-
   update-keys
 
   Since su is invoked with the - option, sa-update executes with the
   default umask of user debian-spamd.  In my case that is 007, causing
   the updated rules , i.e.
   /var/lib/spamassassin/3.004000/updates_spamassassin_org.cf and
   /var/lib/spamassassin/3.004000/updates_spamassassin_org/*, to be
   created with no read access for other.  When amavis is restarted, it
   is unable to read the spamassassin rules, and consequently
   spamassassin rule checks are not performed on received mail.
 
   It appears someone attempted to correct this by adding the line:
 
   umask 022
 
   immediately above the call to su mentioned above.  This in ineffectual
   however due to su being called with -.  A fix is to change the above
   su call to this line:
 
   su - debian-spamd -c umask 022; sa-update --gpghomedir
   /var/lib/spamassassin/sa-update-keys
 
   A file with the output of 'ubuntu-bug --save=/tmp/sa-bug spamassassin'
   is attached.
 
 To manage notifications about this bug go to:
 https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1373560/+subscriptions


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

Title:
  /etc/cron.daily/spamassassin calls sa-update with potentially
  incorrect umask

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1373560/+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 1373560] Re: /etc/cron.daily/spamassassin calls sa-update with potentially incorrect umask

2014-09-25 Thread Roger Cornelius
I don't recall for sure, but I have 'UMASK 077' in /etc/login.defs and
believe the default is 022, so I probably have changed the default.  I
also have 'USERGROUPS_ENAB yes', resulting in a mask of 007 for the
debian-spamd account.

In my opinion, amavis's ability to read the ruleset created by sa-update
should not rely on the default umask being in effect when sa-update was
run.  I doubt it uncommon for a user to change that default.  Instead,
set the umask explicitly before running sa-update so the rules are world
readable.  If this is safe, i.e., not a security issue, it would not
hurt even if someone were to install spamassassin without installing
amavisd-new.

On 09/25/2014 12:04, Robie Basak wrote:
 Thank you for taking the time to report this bug and helping to make
 Ubuntu better.
 
 Is your umask 007 because you changed the system default? I'm asking to
 understand whether this will affect all spamassassin/sa-update/amavisd
 users by default, or if it only affects others who have changed their
 system umask.
 
 spamassassin is maintained in Debian, so to make progress on this bug
 somebody needs to verify if Debian is affected by this problem and if it
 is then to report a bug in the Debian bug tracking system if there isn't
 a bug there already.
 
 ** Tags added: needs-upstream-report
 
 -- 
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1373560
 
 Title:
   /etc/cron.daily/spamassassin calls sa-update with potentially
   incorrect umask
 
 Status in ???spamassassin??? package in Ubuntu:
   New
 
 Bug description:
   ubuntu 14.04.1 LTS 
   Packages:
   spamassassin (3.4.0-1ubuntu1)
   amavisd-new (1:2.7.1-2ubuntu3)
 
   This report has to do with a problem between the interaction of the
   spamassassin and amavisd-new packages, but the problem is with
   /etc/cron.daily/spamassassin.
 
   /etc/cron.daily/spamassassin executes the following line:
 
   su - debian-spamd -c sa-update --gpghomedir /var/lib/spamassassin/sa-
   update-keys
 
   Since su is invoked with the - option, sa-update executes with the
   default umask of user debian-spamd.  In my case that is 007, causing
   the updated rules , i.e.
   /var/lib/spamassassin/3.004000/updates_spamassassin_org.cf and
   /var/lib/spamassassin/3.004000/updates_spamassassin_org/*, to be
   created with no read access for other.  When amavis is restarted, it
   is unable to read the spamassassin rules, and consequently
   spamassassin rule checks are not performed on received mail.
 
   It appears someone attempted to correct this by adding the line:
 
   umask 022
 
   immediately above the call to su mentioned above.  This in ineffectual
   however due to su being called with -.  A fix is to change the above
   su call to this line:
 
   su - debian-spamd -c umask 022; sa-update --gpghomedir
   /var/lib/spamassassin/sa-update-keys
 
   A file with the output of 'ubuntu-bug --save=/tmp/sa-bug spamassassin'
   is attached.
 
 To manage notifications about this bug go to:
 https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1373560/+subscriptions


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

Title:
  /etc/cron.daily/spamassassin calls sa-update with potentially
  incorrect umask

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1373560/+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 1373560] [NEW] /etc/cron.daily/spamassassin calls sa-update with potentially incorrect umask

2014-09-24 Thread Roger Cornelius
Public bug reported:

ubuntu 14.04.1 LTS 
Packages:
spamassassin (3.4.0-1ubuntu1)
amavisd-new (1:2.7.1-2ubuntu3)

This report has to do with a problem between the interaction of the
spamassassin and amavisd-new packages, but the problem is with
/etc/cron.daily/spamassassin.

/etc/cron.daily/spamassassin executes the following line:

su - debian-spamd -c sa-update --gpghomedir /var/lib/spamassassin/sa-
update-keys

Since su is invoked with the - option, sa-update executes with the
default umask of user debian-spamd.  In my case that is 007, causing the
updated rules , i.e.
/var/lib/spamassassin/3.004000/updates_spamassassin_org.cf and
/var/lib/spamassassin/3.004000/updates_spamassassin_org/*, to be created
with no read access for other.  When amavis is restarted, it is unable
to read the spamassassin rules, and consequently spamassassin rule
checks are not performed on received mail.

It appears someone attempted to correct this by adding the line:

umask 022

immediately above the call to su mentioned above.  This in ineffectual
however due to su being called with -.  A fix is to change the above
su call to this line:

su - debian-spamd -c umask 022; sa-update --gpghomedir
/var/lib/spamassassin/sa-update-keys

A file with the output of 'ubuntu-bug --save=/tmp/sa-bug spamassassin'
is attached.

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


** Tags: amavis amavisd amavisd-new permissions read spamassassin ubuntu umask 
wrong

** Attachment added: Output of 'ubuntu-bug spamassassin'
   https://bugs.launchpad.net/bugs/1373560/+attachment/4213928/+files/sa-bug

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

Title:
  /etc/cron.daily/spamassassin calls sa-update with potentially
  incorrect umask

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1373560/+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 1212008] Re: Perl fix needed

2013-08-15 Thread Roger Binns
I have no idea on the other Ubuntu versions as I only use 13.04.  I did
use awstats on the past, but had been using Google Analytics for over a
year.  In the comments linked from the report there is another user
reporting only coming across the problem on upgrade to 13.04.

I didn't provide a patch.  It is the diff between awstats 7.1 and 7.1.1
showing what the changes were in addition to fixing this specific issue.
ie it is information to help decide between adding a single caret or
just updating to 7.1.1.

It doesn't matter to me what you do.  My setup is working because I
edited awstats.pl and added the caret.

I don't have a test reproduction for you because the issue is regarded
as a bug and experienced by others.  That is why there are links in the
description and the awstats team made a 7.1.1 release.

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

Title:
  Perl fix needed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/awstats/+bug/1212008/+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 1212008] Re: Perl fix needed

2013-08-14 Thread Roger Binns
What happens is that awstats ignores over 99% of your log entries.  Note
that this is done silently - ie there are no log messages or error
codes.  It is only after human inspection that you notice it doesn't
look right.  Even after you get it working again it skips old entries
and I don't know how to make it reconsider the ones from the period of
ignoring.

So it makes awstats dangerous and the output useless.  In my case it
also deleted the logs because I have PurgeLogFile=1

You should either fix this or remove the package - it is that bad.

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

Title:
  Perl fix needed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/awstats/+bug/1212008/+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 1212008] Re: Perl fix needed

2013-08-14 Thread Roger Binns
The only thing needed to fix the bug is the caret in the regular
expression.

I've attached the diff between 7.1. and 7.1.1 which includes that
change, and adds detection of Windows 8.  I'd be happy with either
change (just the caret or bump to 7.1.1)

** Patch added: Diff between awstats 7.1 and 7.1.1
   
https://bugs.launchpad.net/ubuntu/+source/awstats/+bug/1212008/+attachment/3772352/+files/awstats-7.1-to-7.1.1.diff

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

Title:
  Perl fix needed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/awstats/+bug/1212008/+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 1212008] [NEW] Perl fix needed

2013-08-13 Thread Roger Binns
Public bug reported:

The currently shipping awstats is incompatible with perl 5.14.  A fix
was applied (correctly) in awstats 7.1.1.

http://www.howtoforge.com/forums/showthread.php?p=297288#post297288

http://sourceforge.net/p/awstats/discussion/43430/thread/474fdb3e/

I manually applied the change (adding a caret in the expression) and now
am getting all the expected data rather than having the majority
missing.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: awstats 7.1~dfsg-1 [modified: usr/share/awstats/tools/update.sh]
ProcVersionSignature: Ubuntu 3.8.0-26.38-generic 3.8.13.2
Uname: Linux 3.8.0-26-generic x86_64
ApportVersion: 2.9.2-0ubuntu8.3
Architecture: amd64
Date: Tue Aug 13 15:20:25 2013
MarkForUpload: True
PackageArchitecture: all
SourcePackage: awstats
UpgradeStatus: Upgraded to raring on 2013-05-19 (86 days ago)

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


** Tags: amd64 apport-bug raring

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

Title:
  Perl fix needed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/awstats/+bug/1212008/+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 706354] Re: dpkg-maintscript-helper: warning: environment variable DPKG_MAINTSCRIPT_PACKAGE missing

2012-02-20 Thread Roger Oakes
This is preventing me from successfully installing and using
LibreOffice.  Please upgrade importance and assign.

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

Title:
  dpkg-maintscript-helper: warning: environment variable
  DPKG_MAINTSCRIPT_PACKAGE missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/apparmor/+bug/706354/+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 875607] [NEW] package backuppc 3.1.0-9ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-10-16 Thread Roger Dale
Public bug reported:

I really don't know what happened here. I was just trying to open up
Xubuntu (after quite a long interval - perhaps 20(?) days).

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: backuppc 3.1.0-9ubuntu1
ProcVersionSignature: Ubuntu 2.6.32-33.72-generic 2.6.32.41+drm33.18
Uname: Linux 2.6.32-33-generic i686
Architecture: i386
Date: Thu Sep  1 11:24:39 2011
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
PackageArchitecture: all
SourcePackage: backuppc
Title: package backuppc 3.1.0-9ubuntu1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1

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

Title:
  package backuppc 3.1.0-9ubuntu1 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/backuppc/+bug/875607/+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 875607] Re: package backuppc 3.1.0-9ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-10-16 Thread Roger Dale
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to backuppc in Ubuntu.
https://bugs.launchpad.net/bugs/875607

Title:
  package backuppc 3.1.0-9ubuntu1 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/backuppc/+bug/875607/+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 873195] [NEW] package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to install/upgrade: there is no script in the new version of the package - giving up

2011-10-13 Thread Roger Dale
Public bug reported:

Samba consistently fails to update.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: samba-common 2:3.5.4~dfsg-1ubuntu8.4
ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
Uname: Linux 2.6.38-11-generic i686
Architecture: i386
BothFailedConnect: Yes
Date: Thu Oct 13 08:49:24 2011
ErrorMessage: there is no script in the new version of the package - giving up
NmbdLog:
 
PackageArchitecture: all
SambaServerRegression: No
SmbConfIncluded: Yes
SmbLog:
 
SourcePackage: samba
Title: package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to install/upgrade: 
there is no script in the new version of the package - giving up
UpgradeStatus: Upgraded to natty on 2011-06-08 (127 days ago)

** 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/873195

Title:
  package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to
  install/upgrade: there is no script in the new version of the package
  - giving up

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/873195/+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 873195] Re: package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to install/upgrade: there is no script in the new version of the package - giving up

2011-10-13 Thread Roger Dale
-- 
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/873195

Title:
  package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to
  install/upgrade: there is no script in the new version of the package
  - giving up

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/873195/+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 864495] [NEW] package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to install/upgrade: there is no script in the new version of the package - giving up

2011-10-02 Thread Roger Dale
Public bug reported:

Samba consistently fails to update.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: samba-common 2:3.5.4~dfsg-1ubuntu8.4
ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
Uname: Linux 2.6.38-11-generic i686
Architecture: i386
Date: Sun Oct  2 08:59:46 2011
ErrorMessage: there is no script in the new version of the package - giving up
NmbdLog:
 
PackageArchitecture: all
SambaServerRegression: No
SmbConfIncluded: Yes
SmbLog:
 
SourcePackage: samba
Title: package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to install/upgrade: 
there is no script in the new version of the package - giving up
UpgradeStatus: Upgraded to natty on 2011-06-08 (116 days ago)
WindowsFailedConnect: Yes

** 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/864495

Title:
  package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to
  install/upgrade: there is no script in the new version of the package
  - giving up

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/864495/+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 864495] Re: package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to install/upgrade: there is no script in the new version of the package - giving up

2011-10-02 Thread Roger Dale
-- 
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/864495

Title:
  package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to
  install/upgrade: there is no script in the new version of the package
  - giving up

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/864495/+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 854518] [NEW] package libsmbclient 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2

2011-09-20 Thread Roger Dale
Public bug reported:

samba consistently fails to update.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: libsmbclient 2:3.5.8~dfsg-1ubuntu2.2
ProcVersionSignature: Ubuntu 2.6.38-11.48-generic 2.6.38.8
Uname: Linux 2.6.38-11-generic i686
Architecture: i386
Date: Tue Sep 20 09:20:16 2011
ErrorMessage: subprocess dpkg-deb --fsys-tarfile returned error exit status 2
NmbdLog:
 
SambaServerRegression: No
SmbConfIncluded: Yes
SmbLog:
 
SourcePackage: samba
Title: package libsmbclient 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: 
subprocess dpkg-deb --fsys-tarfile returned error exit status 2
UpgradeStatus: Upgraded to natty on 2011-06-08 (104 days ago)
WindowsFailedConnect: Yes

** 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/854518

Title:
  package libsmbclient 2:3.5.8~dfsg-1ubuntu2.2 failed to
  install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error
  exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/854518/+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 854518] Re: package libsmbclient 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error exit status 2

2011-09-20 Thread Roger Dale
-- 
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/854518

Title:
  package libsmbclient 2:3.5.8~dfsg-1ubuntu2.2 failed to
  install/upgrade: subprocess dpkg-deb --fsys-tarfile returned error
  exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/854518/+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 850690] [NEW] package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to install/upgrade: there is no script in the new version of the package - giving up

2011-09-15 Thread Roger Dale
Public bug reported:

I'm using the latest version of Ubuntu (11.04?). Samba (which I don't
actually use) has filed to update for more than 12 months.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: samba-common 2:3.5.4~dfsg-1ubuntu8.4
ProcVersionSignature: Ubuntu 2.6.38-11.48-generic 2.6.38.8
Uname: Linux 2.6.38-11-generic i686
Architecture: i386
Date: Thu Sep 15 08:39:52 2011
ErrorMessage: there is no script in the new version of the package - giving up
NmbdLog:
 
PackageArchitecture: all
SambaServerRegression: No
SmbConfIncluded: Yes
SmbLog:
 
SourcePackage: samba
Title: package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to install/upgrade: 
there is no script in the new version of the package - giving up
UpgradeStatus: Upgraded to natty on 2011-06-08 (99 days ago)
WindowsFailedConnect: Yes

** 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/850690

Title:
  package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to
  install/upgrade: there is no script in the new version of the package
  - giving up

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/850690/+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 850690] Re: package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to install/upgrade: there is no script in the new version of the package - giving up

2011-09-15 Thread Roger Dale
-- 
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/850690

Title:
  package samba-common 2:3.5.4~dfsg-1ubuntu8.4 failed to
  install/upgrade: there is no script in the new version of the package
  - giving up

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/850690/+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 788680] [NEW] package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: corrupted filesystem tarfile - corrupted package archive

2011-05-26 Thread Roger Newman
Public bug reported:

Binary package hint: samba

I was doing updates using update manager when a failed to install
message appeared

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: smbclient 2:3.5.8~dfsg-1ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Thu May 26 17:22:32 2011
ErrorMessage: corrupted filesystem tarfile - corrupted package archive
NmbdLog:
 
SambaServerRegression: Yes
SmbConfIncluded: Yes
SmbLog:
 
SourcePackage: samba
Title: package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: 
corrupted filesystem tarfile - corrupted package archive
UpgradeStatus: No upgrade log present (probably fresh install)
WindowsFailedConnect: Yes

** 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/788680

Title:
  package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade:
  corrupted filesystem tarfile - corrupted package archive

-- 
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 788680] Re: package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: corrupted filesystem tarfile - corrupted package archive

2011-05-26 Thread Roger Newman
-- 
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/788680

Title:
  package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade:
  corrupted filesystem tarfile - corrupted package archive

-- 
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 332156] Re: Network issues with hardy guests/hosts, using default nic and virtio

2010-10-01 Thread Roger Sala
I'm having a (similar?) problem running KVMs on a Hardy server.  Packets
are intermittently dropped somewhere between layers 2 and 3, i.e. they
are captured arriving at the network interface by tcpdump but they don't
get recv'd by socket code or logged with iptables.  Is this problem
related somehow to Bug #332156?  The KVMs have been upgraded to Karmic
btw -- I don't know if that makes any difference.  Details are below:

Physical Server:
Linux oghma 2.6.29 #3 SMP Tue Apr 14 18:17:50 EDT 2009 x86_64 GNU/Linux

[Ubuntu-Server 8.04.1 _Hardy Heron_ - Release amd64 (20080701)]

Dual quad-core processors 0-7 w/ 8 GB ram
processor   : 7
vendor_id   : GenuineIntel
cpu family  : 6
model   : 23
model name  : Intel(R) Xeon(R) CPU   E5405  @ 2.00GHz
stepping: 6
cpu MHz : 1994.655
cache size  : 6144 KB
...

KVM Instances:
Linux airnet-1 2.6.31-22-server #63-Ubuntu SMP Thu Aug 19 01:25:01 UTC 2010 
x86_64 GNU/Linux

Running Ubuntu-Server Karmic  iptables v1.4.4

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 2
model name  : QEMU Virtual CPU version 0.9.1
stepping: 3
cpu MHz : 1994.655
cache size  : 2048 KB
fpu : yes
fpu_exception   : yes
cpuid level : 2
wp  : yes
flags   : fpu de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pse36 clflush mmx fxsr sse sse2 syscall nx
 lm up rep_good pni hypervisor
bogomips: 3989.31
clflush size: 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management:

-- 
Network issues with hardy guests/hosts, using default nic and virtio
https://bugs.launchpad.net/bugs/332156
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to 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 520386] Re: libvirt-bin hypervisor does not support virConnectNumOfInterfaces / unable to create domain with virt-manager using network bridge

2010-07-29 Thread Roger
Is anyone looking into this?

-- 
libvirt-bin hypervisor does not support virConnectNumOfInterfaces / unable to 
create domain with virt-manager using network bridge
https://bugs.launchpad.net/bugs/520386
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 572204] [NEW] package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade:

2010-04-30 Thread Roger Orchard
Public bug reported:

Binary package hint: bacula

Upgrading from 9.10 to 10.4

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: bacula-director-mysql 5.0.1-1ubuntu1
ProcVersionSignature: Ubuntu 2.6.31-20.58-server
Uname: Linux 2.6.31-20-server x86_64
Architecture: amd64
Date: Fri Apr 30 10:48:16 2010
ErrorMessage:
 ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
SourcePackage: bacula
Title: package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade:

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


** Tags: amd64 apport-package lucid

-- 
package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade:
https://bugs.launchpad.net/bugs/572204
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula 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 572204] Re: package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade:

2010-04-30 Thread Roger Orchard

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/46553387/Dependencies.txt

** Attachment added: VarLogDistupgradeAptlog.gz
   http://launchpadlibrarian.net/46553388/VarLogDistupgradeAptlog.gz

** Attachment added: VarLogDistupgradeApttermlog.gz
   http://launchpadlibrarian.net/46553389/VarLogDistupgradeApttermlog.gz

** Attachment added: VarLogDistupgradeLspcitxt.gz
   http://launchpadlibrarian.net/46553390/VarLogDistupgradeLspcitxt.gz

** Attachment added: VarLogDistupgradeMainlog.gz
   http://launchpadlibrarian.net/46553391/VarLogDistupgradeMainlog.gz

** Attachment added: VarLogDistupgradeSystemstatetargz.gz
   http://launchpadlibrarian.net/46553392/VarLogDistupgradeSystemstatetargz.gz

** Attachment added: VarLogDistupgradeTermlog.gz
   http://launchpadlibrarian.net/46553393/VarLogDistupgradeTermlog.gz

-- 
package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade:
https://bugs.launchpad.net/bugs/572204
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula 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 496389] Re: package dovecot-common 1:1.1.11-0ubuntu11 failed to install/upgrade:

2010-03-09 Thread Roger Binns
What do you mean no response from user?  No information has been asked
for and the problem has been confirmed.  There is no response from
Ubuntu if anything.

-- 
package dovecot-common 1:1.1.11-0ubuntu11 failed to install/upgrade: 
https://bugs.launchpad.net/bugs/496389
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 513562] Re: Windows 7 Pro machines trust relationship fails

2010-01-31 Thread Roger Abrahamsson
Ok, attaching log file from nmbd, smbd log file for the computer having
problems logging in, excepts from syslog, smb.conf and part of slapd
database in ldif format.


** Attachment added: attachment.txt
   http://launchpadlibrarian.net/38595560/attachment.txt

-- 
Windows 7 Pro machines trust relationship fails
https://bugs.launchpad.net/bugs/513562
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 513562] [NEW] Windows 7 Pro machines trust relationship fails

2010-01-27 Thread Roger Abrahamsson
Public bug reported:

Binary package hint: samba

Windows 7 Pro clients, 32 bit. Joined to Samba domain, account handling in 
openldap. Worked fine for just about one month, then all machines installed on 
the same day simultaneously failed to login, error message was the trust 
relationship between this workstation and the primary domain failed. A check 
in syslog revealed following from ldap server.
Jan 28 08:54:03 server1 slapd[1497]: conn=2365 op=2 do_search: invalid dn 
(sambaDomainName=,sambaDomainName=DOMAIN,dc=domain,dc=local)

sambaDomainName=DOMAIN,dc=domain,dc=local exists, but 
sambaDomainName=,sambaDomainName=DOMAIn,dc=domain,dc=local does not and cannot 
do either in LDAP if I understand things correctly.
Temporary solution is to drop machines from domain and rejoin, and they work, 
but not ideal at all.

ProblemType: Bug
Architecture: amd64
Date: Thu Jan 28 10:06:28 2010
DistroRelease: Ubuntu 9.10
Package: samba 2:3.4.0-3ubuntu5.3
ProcEnviron:
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-16.53-server
SourcePackage: samba
Uname: Linux 2.6.31-16-server x86_64

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


** Tags: amd64 apport-bug

-- 
Windows 7 Pro machines trust relationship fails
https://bugs.launchpad.net/bugs/513562
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 513562] Re: Windows 7 Pro machines trust relationship fails

2010-01-27 Thread Roger Abrahamsson

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/38473884/Dependencies.txt

-- 
Windows 7 Pro machines trust relationship fails
https://bugs.launchpad.net/bugs/513562
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 496389] [NEW] package dovecot-common 1:1.1.11-0ubuntu11 failed to install/upgrade:

2009-12-13 Thread Roger Binns
Public bug reported:

I have no idea why this happened - apport wanted to report it so here
you go

ProblemType: Package
Architecture: amd64
Date: Sun Dec 13 18:39:14 2009
DistroRelease: Ubuntu 9.10
ErrorMessage:
 ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
NonfreeKernelModules: nvidia
Package: dovecot-common 1:1.1.11-0ubuntu11
ProcVersionSignature: Ubuntu 2.6.31-16.53-generic
SourcePackage: dovecot
Title: package dovecot-common 1:1.1.11-0ubuntu11 failed to install/upgrade:
Uname: Linux 2.6.31-16-generic x86_64

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


** Tags: amd64 apport-package

-- 
package dovecot-common 1:1.1.11-0ubuntu11 failed to install/upgrade: 
https://bugs.launchpad.net/bugs/496389
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 496389] Re: package dovecot-common 1:1.1.11-0ubuntu11 failed to install/upgrade:

2009-12-13 Thread Roger Binns

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/36757447/Dependencies.txt

** Attachment added: VarLogDistupgradeAptlog.gz
   http://launchpadlibrarian.net/36757448/VarLogDistupgradeAptlog.gz

** Attachment added: VarLogDistupgradeApttermlog.gz
   http://launchpadlibrarian.net/36757449/VarLogDistupgradeApttermlog.gz

** Attachment added: VarLogDistupgradeMainlogpartial.gz
   http://launchpadlibrarian.net/36757450/VarLogDistupgradeMainlogpartial.gz

-- 
package dovecot-common 1:1.1.11-0ubuntu11 failed to install/upgrade: 
https://bugs.launchpad.net/bugs/496389
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 240249] Re: Mailman does not display Unicode member names correctly.

2009-09-23 Thread Roger C. Pao
Yes, the problem still persists.
I can enter member name 鮑致同 and submit from Membership Management  Membership 
List.  The returned page will then show #39825;#33268;#21516;.

I am not using the patch currently.  The problem persists in the
Membership List anyway.  If it gets fixed there, it should be fixed
after the patch is applied.

Mailman version 2.1.9 in DISTRIB_DESCRIPTION=Ubuntu 8.04.3 LTS.  All
dist-upgrades to date have been applied.

-- 
Mailman does not display Unicode member names correctly.
https://bugs.launchpad.net/bugs/240249
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mailman 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 376392] Re: Enabling VPN connection in NetworkManager messes up routing table

2009-05-14 Thread Roger Froysaa

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/26707461/Dependencies.txt

** Attachment added: ExtensionSummary.txt
   http://launchpadlibrarian.net/26707462/ExtensionSummary.txt

** Attachment added: pluginreg.dat.txt
   http://launchpadlibrarian.net/26707463/pluginreg.dat.txt

** Attachment added: profiles.ini.txt
   http://launchpadlibrarian.net/26707464/profiles.ini.txt

-- 
Enabling VPN connection in NetworkManager messes up routing table
https://bugs.launchpad.net/bugs/376392
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 352391] Re: AppArmor prevents DHCP from getting address

2009-04-07 Thread Roger Hunwicks
Yes I have installed likewise-open5 and left a domain (and then rejoined
the domain). This does seem to be a duplicate of bug 354498. My
/etc/apparmor.d/abstractions/nameservice is attached.

** Attachment added: /etc/apparmor.d/abstractions/nameservice
   http://launchpadlibrarian.net/24923021/nameservice

-- 
AppArmor prevents DHCP from getting address
https://bugs.launchpad.net/bugs/352391
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 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 352391] [NEW] AppArmor prevents DHCP from getting address

2009-03-31 Thread Roger Hunwicks
Public bug reported:

I am running Jaunty Beta on AMD64, I have dhcp3 (3.1.1-5ubuntu7)
installed.

Network Manager shows the constant spinning icon, and never gets an IP
address.

My /var/log/messages has:

Mar 31 15:54:51 hostname kernel: [   23.264536] type=1503
audit(1238504091.637:14): operation=socket_create family=inet
sock_type=dgram protocol=17 pid=3269 profile=/sbin/dhclient3

This is sort of related to
https://bugs.launchpad.net/ubuntu/+source/dhcp3/+bug/342235 but is
giving a different AppArmor error.

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

-- 
AppArmor prevents DHCP from getting address
https://bugs.launchpad.net/bugs/352391
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 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 269488] [NEW] iSCSI installation doesn't report initiator ID

2008-09-12 Thread Roger Mach
Public bug reported:

During installation, an iSCSI initiator ID is generated using the iscsi-
iname utility, but the user is never given an opportunity to configure
the iSCSI target to allow that ID to access the storage.  This could be
fixed by either A) displaying the target ID that will be used and
pausing the installation until the user can set up the iSCSI target to
allow that ID, or B) allowing the user to specify a particular target ID
to be used instead of using the output of iscsi-iname.  Even better
would be to do both A and B to allow the most flexibility.

Also, whatever iSCSI ID is used during the install should be configured
in the installation target filesystem so that when the system reboots
the same ID is used.

** Affects: open-iscsi (Ubuntu)
 Importance: Undecided
 Status: New

-- 
iSCSI installation doesn't report initiator ID
https://bugs.launchpad.net/bugs/269488
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to open-iscsi in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 239025] Re: usbhid-ups not behaving with Tripplite UPS

2008-08-07 Thread Roger C. Pao
Chuck Short:

dget http://launchpadlibrarian.net/15690206/nut_2.2.1-2.1ubuntu7.2~ppa1.dsc 
does not get the orig.tar.gz or diff.gz correctly.  Of course, it's not really 
a repository, so the directory paths being different from the *.dsc file may be 
unavoidable.
[EMAIL PROTECTED]:~/pub/inet/Linux/networkupstools.org$ sh 01-dget.sh 
dget: retrieving 
http://launchpadlibrarian.net/15690206/nut_2.2.1-2.1ubuntu7.2~ppa1.dsc
  % Total% Received % Xferd  Average Speed   TimeTime Time  Current
 Dload  Upload   Total   SpentLeft  Speed
100  1023  100  10230 0   2687  0 --:--:-- --:--:-- --:--:-- 0
dget: retrieving http://launchpadlibrarian.net/15690206/nut_2.2.1.orig.tar.gz
  % Total% Received % Xferd  Average Speed   TimeTime Time  Current
 Dload  Upload   Total   SpentLeft  Speed
  0 00 00 0  0  0 --:--:-- --:--:-- --:--:-- 0
curl: (22) The requested URL returned error: 404
dget: curl nut_2.2.1.orig.tar.gz 
http://launchpadlibrarian.net/15690206/nut_2.2.1.orig.tar.gz failed
[EMAIL PROTECTED]:~/pub/inet/Linux/networkupstools.org$ 

I successfully downloaded nut_2.2.1-2.1ubuntu7.2~ppa1.dsc, the
orig.tar.gz, and the diff.gz from https://launchpad.net/~zulcss/+archive
manually.

dpkg-source -x *.dsc
cd nut-2.2.1
dpkg-buildpackage -rfakeroot
cd ..

successfully built nut-2.2.1/drivers/usbhid-ups.  Copying it into
/lib/nut/ and replacing the existing file from Ubuntu 8.04.1, works:

...
Path: UPS.OutletSystem.Outlet.DelayBeforeReboot, Type: Feature, ReportID: 0x17, 
Offset: 0, Size: 16, Value: 65535.00
Detected a UPS: Tripp Lite /TRIPP LITE UPS 
upsdrv_initinfo...
upsdrv_updateinfo...
Quick update...
upsdrv_updateinfo...
Quick update...
upsdrv_updateinfo...
...

[EMAIL PROTECTED]:/etc/nut# upsc [EMAIL PROTECTED] ups.status
OL CHRG
[EMAIL PROTECTED]:/etc/nut# upsc [EMAIL PROTECTED] battery.charge
100
[EMAIL PROTECTED]:/etc/nut# 

Installing the nut and nut-cgi*_i386.deb from my recompile also works.

Bottom line: I can say your PPA fixes the infinite loop problem on this
UPS.

-- 
usbhid-ups not behaving with Tripplite UPS
https://bugs.launchpad.net/bugs/239025
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nut 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 239025] Re: usbhid-ups not behaving with Tripplite UPS

2008-08-07 Thread Roger C. Pao
Chuck Short:

One thing I noticed with your PPA is that the battery.charge alternates
between 100 and 0 quite often:

upsc [EMAIL PROTECTED] battery.charge
0
[EMAIL PROTECTED]:/etc/init.d# upsc [EMAIL PROTECTED] battery.charge
100
[EMAIL PROTECTED]:/etc/init.d# upsc [EMAIL PROTECTED] battery.charge
100
[EMAIL PROTECTED]:/etc/init.d# upsc [EMAIL PROTECTED] battery.charge
0
[EMAIL PROTECTED]:/etc/init.d# upsc [EMAIL PROTECTED] battery.charge
0
[EMAIL PROTECTED]:/etc/init.d# upsc [EMAIL PROTECTED] battery.charge
0

-- 
usbhid-ups not behaving with Tripplite UPS
https://bugs.launchpad.net/bugs/239025
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nut 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