[Bug 994781] Re: removing a node when it has failed commissioning is not possible from the UI

2012-05-30 Thread RickP
I have search for this temp fix for many days, this temp fix is
excellent for deleting physical node in a stuck commission state. Thank
you Raphael.

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

Title:
  removing a node when it has failed commissioning is not possible from
  the UI

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/994781/+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 583216] Re: inet_protocols can't be preseeded

2012-05-30 Thread LaMont Jones
** Also affects: postfix (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671235
   Importance: Unknown
   Status: Unknown

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

Title:
  inet_protocols can't be preseeded

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/583216/+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


[Blueprint servercloud-q-bug-triage-review] Review of Server Bug Triage Process

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Definition Status: Pending Approval => Approved

-- 
Review of Server Bug Triage Process
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-bug-triage-review

-- 
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 994781] Re: removing a node when it has failed commissioning is not possible from the UI

2012-05-30 Thread Daniel Rolfe
Yep below worked for me very well


$ sudo maas
> from maasserver.models import Node
> node = Node.objects.get(hostname='myhostname')
> node.delete() 


Thanks Raphaël

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

Title:
  removing a node when it has failed commissioning is not possible from
  the UI

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/994781/+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 923754] Re: ocfs2console crashed with DeprecationWarning in /usr/lib/python2.7/popen2.py: The popen2 module is deprecated. Use the subprocess module.

2012-05-30 Thread Jacob Dyson
Possible temporary solution found on opensuse forums related to same problem
edit the ocfs2console
and comment out the four marked lines (-->)

#!/usr/bin/python -W ignore::DeprecationWarning

from ocfs2interface.about import process_args
nodeconf = process_args()

#
# Current pygtk treats no DISPLAY as a WARNING.  This means that
# pygtk initialization tries to continue even after gtk_init() has failed.
# All sorts of fun ensues.  To prevent this, we turn the warning into an
# error for the duration of gtk initialization.
#
# Originally reported as Novell bugzilla #448523.
#
-->#import warnings
-->#warnings.filterwarnings("error")

# Ignore the depreciation warning that popen2 will raise when it is imported.
# FIXME: Pending conversion to subprocess module.
-->#warnings.simplefilter("ignore", DeprecationWarning)

try:
import gtk
except Exception, e:
import sys
if str(e).lower().find('display') == -1:
print >>sys.stderr, '''ERROR: Unable to initialize the windowing
system: %s\n''' % e
else:
print >>sys.stderr, '''ERROR: ocfs2console needs an X11 display.
Make sure a proper setup for your display environment exists.\n'''
sys.exit(1)
-->#warnings.filters.pop(0)


link to original OpenSuse article
http://forums.opensuse.org/english/get-technical-help-here/applications/455879-ocfs2console-doesnt-work-under-11-4-x86_64-a.html

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

Title:
  ocfs2console crashed with DeprecationWarning in
  /usr/lib/python2.7/popen2.py: The popen2 module is deprecated.  Use
  the subprocess module.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ocfs2-tools/+bug/923754/+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 1006293] Re: exiqgrep fails to parse output of exim4 -bp if the mail message is less than 1k

2012-05-30 Thread Milton Ngan
12.04 LTS.

-Original Message-
From: boun...@canonical.com [mailto:boun...@canonical.com] On Behalf Of Chuck 
Short
Sent: Wednesday, May 30, 2012 12:11 PM
To: Milton Ngan
Subject: [Bug 1006293] Re: exiqgrep fails to parse output of exim4 -bp if the 
mail message is less than 1k

Which version is this with?

Thanks
chuck

** Changed in: exim4 (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are subscribed to the bug
report.
https://bugs.launchpad.net/bugs/1006293

Title:
  exiqgrep fails to parse output of exim4 -bp if the mail message is
  less than 1k

Status in “exim4” package in Ubuntu:
  Incomplete

Bug description:
  If you have a message in the queue that is less than 1k in size,
  exiqgrep will fail with a message like this:

  Line mismatch:   2m   719 1SZe77-00047t-V9 

  The problem is that the regular expression requires there to be a
  suffix on the size. Based on the previous implementations of exiqgrep,
  it looks like a ? is missing after the [A-Z].

  
  -   if ($line =~ 
/^\s*(\w+)\s+((?:\d+(?:\.\d+)?[A-Z])?)\s*(\w{6}-\w{6}-\w{2})\s+(<.*?>)/) {
  +   if ($line =~ 
/^\s*(\w+)\s+((?:\d+(?:\.\d+)?[A-Z]?)?)\s*(\w{6}-\w{6}-\w{2})\s+(<.*?>)/) {

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

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

Title:
  exiqgrep fails to parse output of exim4 -bp if the mail message is
  less than 1k

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/exim4/+bug/1006293/+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 637114] Re: Large multiget requests randomly broken

2012-05-30 Thread Launchpad Bug Tracker
This bug was fixed in the package memcached - 1.4.2-1ubuntu4

---
memcached (1.4.2-1ubuntu4) lucid-proposed; urgency=low

  * debian/patches/fix-issue-102-segfault.patch: use strncmp
the way the upstream code does. Prevents multigets from
failing. (LP: #637114)
  * debian/patchex/fix-ubuntu-ftbfs.patch: dropped
 -- Clint ByrumTue, 29 Nov 2011 22:57:21 -0800

** Changed in: memcached (Ubuntu Lucid)
   Status: Fix Committed => Fix Released

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

Title:
  Large multiget requests randomly broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/memcached/+bug/637114/+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 1006447] Re: backport _SCORE(pad)_ fix (upstream #6651)

2012-05-30 Thread Scott Kitterman
No. That's not particularly rare. We should fix it.

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

Title:
  backport _SCORE(pad)_ fix (upstream #6651)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1006447/+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 637114] Re: Large multiget requests randomly broken

2012-05-30 Thread James Page
Hi

With the package in -proposed I got consistent results when executing
the test script for reproducing the issue:

array(0) {
}
array(0) {
}
int(0)

I was able to confirm the issue prior to testing as well.

Thanks.

** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  Large multiget requests randomly broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/memcached/+bug/637114/+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 791944] Re: package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: broken permissions cause daemons not to start correctly

2012-05-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/samba

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

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade:
  broken permissions cause daemons not to start correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/791944/+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 791944] Re: package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: broken permissions cause daemons not to start correctly

2012-05-30 Thread Launchpad Bug Tracker
This bug was fixed in the package samba - 2:3.6.5-3ubuntu2

---
samba (2:3.6.5-3ubuntu2) quantal; urgency=low

  * d/samba.nmbd.upstart: Ignore the return code of testparm in pre-start;
it's used to query the configuration NOT to validate it in this context
which generates alot of bug reports for unrelated configuration issues
(LP: #791944).
 -- James PageWed, 30 May 2012 21:52:39 +0100

** Changed in: samba (Ubuntu Quantal)
   Status: Confirmed => Fix Released

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

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade:
  broken permissions cause daemons not to start correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/791944/+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 791944] Re: package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: broken permissions cause daemons not to start correctly

2012-05-30 Thread James Page
** Also affects: samba (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: samba (Ubuntu Natty)
   Importance: Undecided
   Status: New

** Also affects: samba (Ubuntu Quantal)
   Importance: Medium
   Status: Confirmed

** Also affects: samba (Ubuntu Oneiric)
   Importance: Undecided
   Status: New

** Also affects: samba (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Changed in: samba (Ubuntu Quantal)
 Assignee: (unassigned) => James Page (james-page)

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

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade:
  broken permissions cause daemons not to start correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/791944/+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 1005298] Re: warning: kernel option length exceeds 255 during maas-import-isos

2012-05-30 Thread Raphaël Badin
I think what you're describing is bug 1003460.

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

Title:
  warning: kernel option length exceeds 255  during maas-import-isos

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1005298/+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 1006447] Re: backport _SCORE(pad)_ fix (upstream #6651)

2012-05-30 Thread Darxus
This seems pretty specific to your unusual use case.  Why not just apply
the fix locally?

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

Title:
  backport _SCORE(pad)_ fix (upstream #6651)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1006447/+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 479185] Re: bind9 fails to configure with "named: extra command line arguments"

2012-05-30 Thread Serge Hallyn
@keepitsimpleengineer,

please file a new bug if you are still having this issue.

Since this bug has been fixed by purge/reinstall and cannot be
reproduced, marking it invalid.

thanks

** Changed in: bind9 (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  bind9 fails to configure with "named: extra command line arguments"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/479185/+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 1005298] Re: warning: kernel option length exceeds 255 during maas-import-isos

2012-05-30 Thread Henry Sorensen
Hi

After running this command the MAAS web interface still tells me to run the 
command:
  sudo maas-import-isos

So I assumed that the error meant that the command didn't finish
correctly.

I'm running this on an Ubuntu 12.04, so the kernel is a 3.2

   Henry

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

Title:
  warning: kernel option length exceeds 255  during maas-import-isos

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1005298/+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 1006547] Re: vlan doesn't work properly on 12.04 server

2012-05-30 Thread Serge Hallyn
** Changed in: vlan (Ubuntu)
   Status: Incomplete => New

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

Title:
  vlan doesn't work properly on 12.04 server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1006547/+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 1006447] Re: backport _SCORE(pad)_ fix (upstream #6651)

2012-05-30 Thread Daniel Convissor
[Hmm.  I sent a reply via email.  Didn't show up.  So I'll put it in via
the web form.  Sorry if it shows up twice.]

My system puts the SA score at the beginning of the subject header and
puts the spam messages into a directory.  Then users view the spam box
in subject sorted order in their mail user agents.

Normally, they would see the least spammy messages at the top of the
list and the most spammy messages at the bottom.  This makes it easy to
spot false postivies.  But this bug means the users see the messages
with scores >= 10 on top, then somewhere down the index messages with
scores < 10 will show up.

If there's a lot of spam, the lower scored messages will be on another
page of the index.  The user may think all of the messages are very
spammy, so use some "delete all" functionality.  The upshot is the user
may inadvetently delete a false positive.

Example of Expected View:
05.3 | not so bad, maybe false positive
09.8 | getting up there!
12.2 | more spam
19.8 | come hither
... loads of other spam ...

Example of View Caused by Bug:
12.2 | more spam
19.8 | come hither
... loads of other spam ...
5.3 | not so bad, maybe false positive
9.8 | getting up there!

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

Title:
  backport _SCORE(pad)_ fix (upstream #6651)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1006447/+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 1006547] Re: vlan doesn't work properly on 12.04 server

2012-05-30 Thread Claudio
"auto eth0.101" I tried to put in but its still the same problem . it s working 
just at the boot . 
if I do : sudo /etc/init.d/networking  restart 
doesnt work anymore eth0.101 and I have to reboot all machine

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

Title:
  vlan doesn't work properly on 12.04 server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1006547/+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 1006547] Re: vlan doesn't work properly on 12.04 server

2012-05-30 Thread Claudio
I do that  : 
ifup eth0.101

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

Title:
  vlan doesn't work properly on 12.04 server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1006547/+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 1006547] Re: vlan doesn't work properly on 12.04 server

2012-05-30 Thread Stéphane Graber
if you intend your vlan to actually come online, you're missing an "auto
eth0.101" line in there.

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

Title:
  vlan doesn't work properly on 12.04 server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1006547/+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 994212] Re: ldap fails to start when /etc/network/interfaces not used

2012-05-30 Thread Serge Hallyn
Really I think that automount starting too early is a symptom.  The real
problem is that automount should be able to handle network interfaces
going up and down.

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

Title:
  ldap fails to start when /etc/network/interfaces not used

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs5/+bug/994212/+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 1006547] Re: vlan doesn't work properly on 12.04 server

2012-05-30 Thread Claudio
I have attached the /etc/network/intefaces

with the some config,

works in Ubuntu 11.10


** Attachment added: "intefaces"
   
https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1006547/+attachment/3169541/+files/intefaces

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

Title:
  vlan doesn't work properly on 12.04 server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1006547/+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 994212] Re: ubuntu 12.04 automounts (autofs) not working with ldap maps on boot

2012-05-30 Thread Serge Hallyn
lowering priority since using /etc/network/interfaces is a workaround.

** Changed in: autofs5 (Ubuntu)
   Status: Incomplete => New

** Summary changed:

- ubuntu 12.04 automounts (autofs) not working with ldap maps on boot
+ ldap fails to start when /etc/network/interfaces not used

** Changed in: autofs5 (Ubuntu)
   Status: New => Confirmed

** Changed in: autofs5 (Ubuntu)
   Importance: High => Medium

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

Title:
  ldap fails to start when /etc/network/interfaces not used

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs5/+bug/994212/+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 712416] Re: kvm_intel kernel module crash with via nano vmx

2012-05-30 Thread Serge Hallyn
Retargetting at the kernel as this is a kernel bug.

khetzal, can you confirm whether you are still having this bug?

** Package changed: kvm (Ubuntu) => linux (Ubuntu)

** Tags added: kernel-kvm

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

Title:
  kvm_intel kernel module crash with via nano vmx

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/712416/+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 1005298] Re: warning: kernel option length exceeds 255 during maas-import-isos

2012-05-30 Thread Serge Hallyn
Confirmed, and in fact the append lines in
/var/lib/tftpboot/pxelinux.cfg/default are > 255 characters.

However, if I'm not mistaken the 255 character limit only applies to 2.4
and older kernels.

The warning should be silenced, but it shouldn't be hurting anythign.

** Changed in: maas (Ubuntu)
   Status: New => Confirmed

** Changed in: maas (Ubuntu)
   Importance: Undecided => Low

** Changed in: maas
   Status: New => Confirmed

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

Title:
  warning: kernel option length exceeds 255  during maas-import-isos

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1005298/+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 1005497] Re: 'maas test' fails: ImportError: cannot import name oauth

2012-05-30 Thread Serge Hallyn
Confirmed, same happens to me, even though python-oauth is installed.

** Changed in: maas (Ubuntu)
   Status: New => Confirmed

** Changed in: maas (Ubuntu)
   Importance: Undecided => High

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

Title:
  'maas test' fails: ImportError: cannot import name oauth

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1005497/+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 1005482] Re: MAAS flush bug

2012-05-30 Thread Serge Hallyn
Thanks for reporting this bug - trivially reproduced.

** Changed in: maas (Ubuntu)
   Status: New => Confirmed

** Changed in: maas (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  MAAS flush bug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1005482/+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 363791] Re: libnss_wins.so.2 crashes after suspend to RAM

2012-05-30 Thread Chuck Short
Closing based on feedback above.

Regards
chuck

** Changed in: samba (Ubuntu)
   Status: Incomplete => Won't Fix

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

Title:
  libnss_wins.so.2 crashes after suspend to RAM

To manage notifications about this bug go to:
https://bugs.launchpad.net/samba/+bug/363791/+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 995817] Re: share samba doesn't work easily

2012-05-30 Thread Serge Hallyn
Hi J-Paul,

I'm pretty sure you are right and system-config-samba should not be
needed.  You were trying to share files through nautilus which should do
it itself.  If I'm wrong about that and it cannot, then it should be
automatically installing it.  In either case, I'll re-target this bug at
nautilus.

** Package changed: samba (Ubuntu) => nautilus (Ubuntu)

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

Title:
  share samba doesn't work easily

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/995817/+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 44402] Re: krb5-admin-server fails during install

2012-05-30 Thread Chuck Short
There has been no response to this bug from the user for over 2 years as
a result Im closing this bug, please re-open when you provide more
information.

** Changed in: krb5 (Ubuntu)
   Status: Incomplete => Won't Fix

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

Title:
  krb5-admin-server fails during install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/krb5/+bug/44402/+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 999324] Re: Server guide gives wrong examples for bind9 (was: DDNS dynamic file creation permission denied)

2012-05-30 Thread Axel Glienke
Additionaly for a workaround you have to change permissions for /etc/bind. user 
bind need wirte access
chmod 775 /etc/bind

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

Title:
  Server guide gives wrong examples for bind9 (was: DDNS dynamic file
  creation permission denied)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/999324/+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 216358] Re: Samba crashes repeatedly to assert_uid

2012-05-30 Thread Chuck Short
** Changed in: samba (Ubuntu)
   Status: Incomplete => Won't Fix

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

Title:
  Samba crashes repeatedly to assert_uid

To manage notifications about this bug go to:
https://bugs.launchpad.net/samba/+bug/216358/+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 924578] Re: swift_auth middleware does not allow non-authenticated access allow via referrer

2012-05-30 Thread Chuck Short
** Changed in: keystone (Ubuntu)
   Status: New => Fix Released

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

Title:
  swift_auth middleware does not allow non-authenticated access allow
  via referrer

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/924578/+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 1004949] Re: dnsmasq start and sto every 2 minutes

2012-05-30 Thread Serge Hallyn
Something (presumably network manager) is actually killing dnsmasq:

May 26 20:10:33 internity dnsmasq[28871]: sortie sur réception du signal
SIGTERM

I'm retargetting this bug at network manager in the hopes its
maintainers might know offhand what might be happening.

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

** Summary changed:

- dnsmasq start and sto every 2 minutes
+ dnsmasq killed and restarted every 2 minutes

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

Title:
  dnsmasq killed and restarted every 2 minutes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1004949/+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 1004494] Re: "Job not run" message after any attempt to run a job using bconsole

2012-05-30 Thread Serge Hallyn
Thanks for submitting this bug.  (Note I can't look at the
bugs.bacula.org without signing up for an account.)

To be clear, you are saying that

   run job=jobname yes

succeeds, and is a usable workaround?

** Changed in: bacula (Ubuntu)
   Importance: Undecided => Medium

** Changed in: bacula (Ubuntu)
   Status: New => Incomplete

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

Title:
  "Job not run" message after any attempt to run a job using bconsole

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bacula/+bug/1004494/+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 1006196] Re: package postfix 2.9.1-4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 75

2012-05-30 Thread Chuck Short
This is due to an invalid hostname:

Setting up postfix (2.9.1-4) ...

Postfix configuration was not changed.  If you need to make changes, edit
/etc/postfix/main.cf (and others) as needed.  To view Postfix configuration
values, see postconf(1).

After modifying main.cf, be sure to run '/etc/init.d/postfix reload'.

Running newaliases
newaliases: warning: valid_hostname: numeric hostname: 1110011221
newaliases: fatal: file /etc/postfix/main.cf: parameter myhostname: bad 
parameter value: 1110011221
dpkg: error processing postfix (--configure):
 subprocess installed post-installation script returned error exit status 75

** Changed in: postfix (Ubuntu)
   Status: New => Won't Fix

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

Title:
  package postfix 2.9.1-4 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 75

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postfix/+bug/1006196/+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 1006293] Re: exiqgrep fails to parse output of exim4 -bp if the mail message is less than 1k

2012-05-30 Thread Chuck Short
Which version is this with?

Thanks
chuck

** Changed in: exim4 (Ubuntu)
   Status: New => Incomplete

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

Title:
  exiqgrep fails to parse output of exim4 -bp if the mail message is
  less than 1k

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/exim4/+bug/1006293/+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 963050] Re: Qpid notifier needs content_type set

2012-05-30 Thread Chuck Short
** Changed in: glance (Ubuntu)
   Status: New => Fix Released

** Changed in: glance (Ubuntu Precise)
   Status: New => Fix Released

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

Title:
  Qpid notifier needs content_type set

To manage notifications about this bug go to:
https://bugs.launchpad.net/glance/+bug/963050/+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 969545] Re: missing quotas on security group rules

2012-05-30 Thread Jamie Strandboge
This was fixed in 12.04 several weeks ago in
http://www.ubuntu.com/usn/usn-1438-1/

** Changed in: nova (Ubuntu Precise)
   Status: New => Fix Released

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

Title:
  missing quotas on security group rules

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/969545/+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 1004238] Re: cobbler sync not called after maas-dhcp configuration

2012-05-30 Thread Serge Hallyn
Marking confirmed as indeed /etc/dnsmasq.conf didn't get updated., and
cobbler sync changes it.  I don't know enough to know whether it
*should* be automatically run.  Setting low priority per guidelines as
there is a workaround.

** Changed in: maas (Ubuntu)
   Status: New => Confirmed

** Changed in: maas (Ubuntu)
   Importance: Undecided => Low

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

Title:
  cobbler sync not called after maas-dhcp configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1004238/+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 1006447] Re: backport _SCORE(pad)_ fix (upstream #6651)

2012-05-30 Thread Chuck Short
Thanks for the bug report, whats the impact of not having this patch?

Reagards
chuck

** Changed in: spamassassin (Ubuntu)
   Importance: Undecided => Low

** Changed in: spamassassin (Ubuntu)
   Status: New => Incomplete

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

Title:
  backport _SCORE(pad)_ fix (upstream #6651)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1006447/+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 1006547] Re: vlan doesn't work properly on 12.04 server

2012-05-30 Thread Chuck Short
Please attach your /etc/network/interfaces so we can reproduce this.

Thanks
chuck

** Changed in: vlan (Ubuntu)
   Status: New => Incomplete

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

Title:
  vlan doesn't work properly on 12.04 server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1006547/+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 1006547] Re: vlan doesn't work properly on 12.04 server

2012-05-30 Thread Claudio
** Tags added: isc-dhcp

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

Title:
  vlan doesn't work properly on 12.04 server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1006547/+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 969088] Re: Role conflict when importing nova auth

2012-05-30 Thread Chuck Short
** Changed in: keystone (Ubuntu)
   Status: New => In Progress

** Changed in: keystone (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  Role conflict when importing nova auth

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/969088/+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 977759] Re: With QuantumManager, nova-network does not start dnsmasq during initialization

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

** Changed in: nova (Ubuntu)
   Status: New => In Progress

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

Title:
  With QuantumManager,  nova-network does not start dnsmasq during
  initialization

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/977759/+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 1006547] Re: vlan doesn't work properly on 12.04 server

2012-05-30 Thread Claudio
** Also affects: isc-dhcp (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  vlan doesn't work properly on 12.04 server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1006547/+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 962385] Re: S3 & swift secrets leaked into logs

2012-05-30 Thread Chuck Short
** Changed in: glance (Ubuntu)
   Status: New => Fix Released

** Changed in: glance (Ubuntu Precise)
   Status: New => Fix Released

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

Title:
  S3 & swift secrets leaked into logs

To manage notifications about this bug go to:
https://bugs.launchpad.net/glance/+bug/962385/+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 968843] Re: connection leak in rpc connection pool

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  connection leak in rpc connection pool

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/968843/+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 975043] Re: Cloudpipe VPN instance can loose connectivity after starting openvpn

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  Cloudpipe VPN instance can loose connectivity after starting openvpn

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/975043/+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 983206] Re: nova errors when keypair starts with 0XG using EC2 API

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  nova errors when keypair starts with 0XG using EC2 API

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/983206/+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 988615] Re: xen: destroy_vdi breaks because session is not passed in

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  xen: destroy_vdi breaks because session is not passed in

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/988615/+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 992916] Re: nova.tests.test_nova_rootwrap fails on Fedora 17

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  nova.tests.test_nova_rootwrap fails on Fedora 17

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/992916/+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 952176] Re: Cannot associate a second network/vlan to a tenant with "nova-manage network modify"

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  Cannot associate a second network/vlan to a tenant with "nova-manage
  network modify"

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/952176/+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 967931] Re: killfilter should handle updated/deleted executables

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  killfilter should handle updated/deleted executables

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/967931/+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 954030] Re: Container Sync and Keystone

2012-05-30 Thread Chuck Short
** Changed in: keystone (Ubuntu)
   Status: New => Fix Released

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

Title:
  Container Sync and Keystone

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/954030/+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 962615] Re: Unable to list volumes after building from snapshot

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  Unable to list volumes after building from snapshot

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/962615/+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 959670] Re: Notification message format is incorrect

2012-05-30 Thread Chuck Short
** Changed in: glance (Ubuntu)
   Status: New => Fix Released

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

Title:
  Notification message format is incorrect

To manage notifications about this bug go to:
https://bugs.launchpad.net/glance/+bug/959670/+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 973194] Re: Parallel VM creation fails when nova-computes share the disks and each nova-compute node has no cached images.

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  Parallel VM creation fails when nova-computes share the disks and each
  nova-compute node has no cached images.

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/973194/+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 989764] Re: timeout on EC2 CreateImage action is 60 hours instead of 1 hour

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  timeout on EC2 CreateImage action is 60 hours instead of 1 hour

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/989764/+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 987335] Re: libvit/connection.py missing console_log variable

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

** Changed in: nova (Ubuntu Precise)
   Status: New => In Progress

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

Title:
  libvit/connection.py missing console_log variable

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/987335/+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 1000261] Re: newer `qemu-img info` causes in exception when finding the backing file for qcow2 images

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => In Progress

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

Title:
  newer `qemu-img info` causes in exception when finding the backing
  file for qcow2 images

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1000261/+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 929815] Re: teh extra dict in sql tends to grow

2012-05-30 Thread Chuck Short
** Changed in: keystone (Ubuntu)
   Status: New => Fix Released

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

Title:
  teh extra dict in sql tends to grow

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/929815/+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 962563] Re: When uploading a file in swift using S3 api we get a stack trace in keystone

2012-05-30 Thread Chuck Short
** Changed in: keystone (Ubuntu)
   Status: New => Fix Released

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

Title:
  When uploading a file in swift using S3 api we get a stack trace in
  keystone

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/962563/+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 963546] Re: swift_auth validates the tenant:user acl incorrectly

2012-05-30 Thread Chuck Short
** Changed in: keystone (Ubuntu)
   Status: New => Fix Released

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

Title:
  swift_auth validates the tenant:user acl incorrectly

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/963546/+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 754900] Re: Nova-manage network delete does not delete from fixed_ips

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu Precise)
   Status: New => Triaged

** Changed in: nova (Ubuntu)
   Status: New => Triaged

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

Title:
  Nova-manage network delete does not delete from fixed_ips

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/754900/+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 965788] Re: configuration.rst doc contains spelling error and a formatting problem

2012-05-30 Thread Chuck Short
** Changed in: keystone (Ubuntu)
   Status: New => Fix Released

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

Title:
  configuration.rst doc contains spelling error and a formatting problem

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/965788/+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 969545] Re: missing quotas on security group rules

2012-05-30 Thread Chuck Short
** Changed in: nova (Ubuntu)
   Status: New => Fix Released

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

Title:
  missing quotas on security group rules

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/969545/+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 969801] Re: auth_token doesn't log on token or communication failures

2012-05-30 Thread Chuck Short
** Changed in: keystone (Ubuntu)
   Status: New => Fix Released

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

Title:
  auth_token doesn't log on token or communication failures

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/969801/+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 1006547] Re: vlan doesn't work properly on 12.04 server

2012-05-30 Thread Claudio
it s seems that the problem is from dhclient :

May 30 19:16:22 server32 dhclient: No DHCPOFFERS received.

** Attachment added: "log/syslog"
   
https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1006547/+attachment/3169470/+files/syslogserve%20print

** Tags added: dhclient

** Tags added: dhclient3

** Tags added: 12.04

** Tags added: vlan

** Tags added: eth0

** Tags added: dhcpdiscover

** Tags added: dhcpoffers

** Tags added: dhcp

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

Title:
  vlan doesn't work properly on 12.04 server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1006547/+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 995285] Re: if /etc/sudoers.d/nova_sudoers is removed, upgrades fail

2012-05-30 Thread Chuck Short
This needs to be fixed in quantal first before it can be SRU.

** Also affects: nova (Ubuntu Quantal)
   Importance: Low
   Status: Triaged

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

Title:
  if /etc/sudoers.d/nova_sudoers is removed, upgrades fail

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/995285/+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 1006547] [NEW] vlan doesn't work properly on 12.04 server

2012-05-30 Thread Claudio
Public bug reported:

same config working only with previous distro 10.04 lts and 11.10 server 
with 12.04 server it s working everytime , 
example 
command : ifup eth0.101
with : .../interfaces:
"auto eth0 
 iface eth0 inet dhcp 
  iface eth0.101 inet dhcp"

but it doenst work when I restart : /etc/init.d/networking restart

after that it stucks for a whilehere:  
dhclient3 -e IF_METRIC=100 -pf /var/run/dhclient.eth0.101.pid -lf 
/var/lib/dhcp/dhclient.eth0.101.leases -1 eth0.101

any idea  to fix it ?

many thanks

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

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

Title:
  vlan doesn't work properly on 12.04 server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1006547/+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 791944] Re: package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: broken permissions cause daemons not to start correctly

2012-05-30 Thread Clint Byrum
Excerpts from James Page's message of 2012-05-24 13:56:30 UTC:
> I think this bug warrants some attention as I just triage a load more
> from 12.04.
> 
> I would propose changing the upstart configuration of nmbd:
> 
>  NMBD_DISABLED=`testparm -s --parameter-name='disable netbios'
> 2>/dev/null || true`
> 
> The return code of testparm is non-zero even for warnings which causes
> the upstart job to fail - the configuration is only really interested in
> the value of 'disable netbios' so we should just ignore the return code
> and start nmbd anyway.
> 
> Thoughts?

Agreed James. That sounds like a good solution to the issue. Make it so!

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

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade:
  broken permissions cause daemons not to start correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/791944/+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 974584] Re: Semaphores cannot be created in lxc container

2012-05-30 Thread Serge Hallyn
Here is version tested and working in debootstrap.

diff -u sysvinit-2.88dsf/debian/changelog sysvinit-2.88dsf/debian/changelog
--- sysvinit-2.88dsf/debian/changelog
+++ sysvinit-2.88dsf/debian/changelog
@@ -1,3 +1,12 @@
+sysvinit (2.88dsf-13.10ubuntu12) quantal; urgency=low
+
+  * initscripts.postinst: if /dev is not a separate partition and we're in a
+chroot, then create /run/shm and make /dev/shm a symbolic link to it, as
+we would expect to find in a upgraded and rebooted running system.
+(LP: #974584) (Closes: #674178)
+
+ -- Serge Hallyn   Wed, 30 May 2012 12:17:37 -0500
+
 sysvinit (2.88dsf-13.10ubuntu11) precise; urgency=low
 
   * Only try to move links in /etc/rc{0,6}.d that match "S0*".  LP: #941867.
diff -u sysvinit-2.88dsf/debian/initscripts.postinst 
sysvinit-2.88dsf/debian/initscripts.postinst
--- sysvinit-2.88dsf/debian/initscripts.postinst
+++ sysvinit-2.88dsf/debian/initscripts.postinst
@@ -255,7 +255,12 @@
 
# Symlink /dev/shm from /run/shm
# Note that it's really /var/run/shm
-   compat_link /dev/shm /run/shm
+if ! mountpoint -q /dev ; then
+[ ! -d /run/shm ] && mkdir -p /run/shm
+[ ! -d /dev/shm ] && compat_link /run/shm /dev/shm
+else
+compat_link /dev/shm /run/shm
+fi
fi
 # Host system, not a chroot.
 else


** Patch added: "sysvinit-shm3.debdiff"
   
https://bugs.launchpad.net/launchpad/+bug/974584/+attachment/3169450/+files/sysvinit-shm3.debdiff

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

Title:
  Semaphores cannot be created in lxc container

To manage notifications about this bug go to:
https://bugs.launchpad.net/launchpad/+bug/974584/+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 986159] Re: squid3 open file descriptors limit is set incorrectly

2012-05-30 Thread Launchpad Bug Tracker
This bug was fixed in the package squid3 - 3.1.19-1ubuntu3

---
squid3 (3.1.19-1ubuntu3) precise-proposed; urgency=low

  * debian/rules: re-enable all hardening options lost in the
squid->squid3 transition (LP: #986314)
  * debian/squid3.upstart: move ulimit command to script section
so that it applies to the started squid daemon. Thanks to Timur
Irmatov (LP: #986159)
 -- Steve BeattieFri, 20 Apr 2012 11:09:46 -0700

** Changed in: squid3 (Ubuntu Precise)
   Status: Fix Committed => Fix Released

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

Title:
  squid3 open file descriptors limit is set incorrectly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/986159/+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 986314] Re: squid3 missing pie and bind-now hardening options

2012-05-30 Thread Launchpad Bug Tracker
This bug was fixed in the package squid3 - 3.1.19-1ubuntu3

---
squid3 (3.1.19-1ubuntu3) precise-proposed; urgency=low

  * debian/rules: re-enable all hardening options lost in the
squid->squid3 transition (LP: #986314)
  * debian/squid3.upstart: move ulimit command to script section
so that it applies to the started squid daemon. Thanks to Timur
Irmatov (LP: #986159)
 -- Steve BeattieFri, 20 Apr 2012 11:09:46 -0700

** Changed in: squid3 (Ubuntu Precise)
   Status: Fix Committed => Fix Released

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

Title:
  squid3 missing pie and bind-now hardening options

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/986314/+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


[Blueprint servercloud-q-maas-next-steps] MAAS Next Steps

2012-05-30 Thread Scott Moser
Blueprint changed by Scott Moser:

Work items changed:
  Work items:
  Enable test-suite in packaging: TODO
  maas-enlist - do not die if MAAS is invalid (LP: #973414): TODO
  complete documentation and manpages (LP: #975454): TODO
  update libjs-yui to latest and drop them from trunk: TODO
  update libjs-raphael to latest and drop them from trunk: TODO
  IPMI support: TODO
  Support for other power management devices: TODO
  ARM support: TODO
  Use squashfs image for PXE installations (and ubuntu server CD install): TODO
  Dropping/replacing cobbler (maas-provision): TODO
+ package read-only root fs (ephemeral disk) initramfs tools: TODO

-- 
MAAS Next Steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-maas-next-steps

-- 
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 1006509] [NEW] Please merge from debian autofs 5.0.6-1

2012-05-30 Thread Dmitrijs Ledkovs
Public bug reported:

As package got reintroduced under autofs name

** Affects: autofs (Ubuntu)
 Importance: Wishlist
 Assignee: Dmitrijs Ledkovs (dmitrij.ledkov)
 Status: Triaged

** Changed in: autofs (Ubuntu)
 Assignee: (unassigned) => Dmitrijs Ledkovs (dmitrij.ledkov)

** Changed in: autofs (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: autofs (Ubuntu)
   Status: New => Triaged

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

Title:
  Please merge from debian autofs 5.0.6-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1006509/+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 986314] Re: squid3 missing pie and bind-now hardening options

2012-05-30 Thread Stéphane Graber
Followed the testcase, hardening-check output looks good after upgrading
to -proposed and squid still starts.

** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  squid3 missing pie and bind-now hardening options

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/986314/+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


[Blueprint servercloud-q-openstack-folsom] Openstack Next Steps

2012-05-30 Thread Robbie Williamson
Blueprint changed by Robbie Williamson:

Priority: Undefined => Essential

-- 
Openstack Next Steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-openstack-folsom

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


[Blueprint servercloud-q-cloud-archive] Ubuntu Cloud Archive

2012-05-30 Thread Robbie Williamson
Blueprint changed by Robbie Williamson:

Priority: Undefined => Essential

-- 
Ubuntu Cloud Archive
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-cloud-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


[Blueprint servercloud-q-juju-mir] Juju MIR

2012-05-30 Thread Robbie Williamson
Blueprint changed by Robbie Williamson:

Priority: Medium => Low

-- 
Juju MIR
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-mir

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


[Blueprint servercloud-q-juju-mir] Juju MIR

2012-05-30 Thread Robbie Williamson
Blueprint changed by Robbie Williamson:

Whiteboard changed:
  Status: all txaws patches were accepted upstream and uploaded, so the
  universe dependencies have been cut significantly. Zookeeper MIR should
  be able to proceed.
  
- Given the current port to go-lang, it might make sense to get that
- version into universe for 12.10 and push for an MIR in 13.04 [robbiew]
+ Lowered priority to "low". Given the current port to go-lang, it might
+ make sense to get that version into universe for 12.10 and push for an
+ MIR in 13.04 [robbiew]

-- 
Juju MIR
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-mir

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


[Blueprint servercloud-q-juju-mir] Juju MIR

2012-05-30 Thread Robbie Williamson
Blueprint changed by Robbie Williamson:

Whiteboard changed:
  Status: all txaws patches were accepted upstream and uploaded, so the
  universe dependencies have been cut significantly. Zookeeper MIR should
  be able to proceed.
+ 
+ Given the current port to go-lang, it might make sense to get that
+ version into universe for 12.10 and push for an MIR in 13.04 [robbiew]

-- 
Juju MIR
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-mir

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


[Blueprint servercloud-q-juju-mir] Juju MIR

2012-05-30 Thread Robbie Williamson
Blueprint changed by Robbie Williamson:

Priority: High => Medium

-- 
Juju MIR
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-mir

-- 
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 994781] Re: removing a node when it has failed commissioning is not possible from the UI

2012-05-30 Thread Brian Morton
Raphael,

That works very well, thanks.

To start the shell, run

$ sudo maas shell

then proceed normally with those instructions.

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

Title:
  removing a node when it has failed commissioning is not possible from
  the UI

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/994781/+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


[Blueprint servercloud-q-server-iso-tests-review] Improve Server Install and Upgrade Testing

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Priority: Undefined => High

-- 
Improve Server Install and Upgrade Testing
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-server-iso-tests-review

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


[Blueprint servercloud-q-chef] Getting Chef Back Into Ubuntu

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Priority: Undefined => Medium

-- 
Getting Chef Back Into Ubuntu
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-chef

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


[Blueprint servercloud-q-tomcat7] Promote Apache Tomcat 7 to main

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Priority: Undefined => High

-- 
Promote Apache Tomcat 7 to main
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-tomcat7

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


[Blueprint servercloud-q-bug-triage-review] Review of Server Bug Triage Process

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Priority: Undefined => High

-- 
Review of Server Bug Triage Process
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-bug-triage-review

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


[Blueprint servercloud-q-bigdata-hadoop] Next steps for Hadoop on Ubuntu

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Priority: Undefined => Medium

-- 
Next steps for Hadoop on Ubuntu
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-bigdata-hadoop

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


[Blueprint servercloud-q-juju-charms-release-policy] Clarifying Charm Store policy around Ubuntu Releases

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Priority: Undefined => High

-- 
Clarifying Charm Store policy around Ubuntu Releases
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-charms-release-policy

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


[Blueprint servercloud-q-juju-release-process] Juju Formal Release Process

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Approver: Antonio Rosales => Robbie Williamson

-- 
Juju Formal Release Process
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-release-process

-- 
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 974584] Re: Semaphores cannot be created in lxc container

2012-05-30 Thread Serge Hallyn
>From the debian bug, here is my new suggestion for a replacement for the
ischroot case in initscripts.postinst:

=
if ischroot; then
# Symlink /var/run from /run
# Note var/run is relative
if compat_link /var/run /run; then
# Symlink /var/lock from /run/lock
# Note that it's really /var/run/lock
compat_link /var/lock /run/lock

# Symlink /dev/shm from /run/shm
# Note that it's really /var/run/shm
[ ! -d /run/shm ] && mkdir /run/shm
if [ ! mountpoint -q /dev ]; then
[ ! -d /dev/shm ] && compat_link /run/shm /dev/shm
else
compat_link /dev/shm /run/shm
fi
fi
# Host system, not a chroot.
else
=

So if the chroot has /dev/ bind-mounted from the host, assume they
always will, and will want /run/shm as a symlink to /dev/shm.

Otherwise if /dev/shm exists, leave it alone, because we're definately
not in debootstrap.

Otherwise, assume /dev and /run won't get cleaned up at 'shutdown'
(chroot exit) so set up *exactly* what we want to see as the end
result: /dev/shm as a symbolic link to /run/shm.

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

Title:
  Semaphores cannot be created in lxc container

To manage notifications about this bug go to:
https://bugs.launchpad.net/launchpad/+bug/974584/+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 1006447] [NEW] backport _SCORE(pad)_ fix (upstream #6651)

2012-05-30 Thread Daniel Convissor
Public bug reported:

SpamAssassin 3.3.2 is the version shipped with Ubuntu Precise/12.04.
Unfortunately, that version has a bug that prevents the _SCORE(0)_
template tag from working.

The SpamAssassin team fixed the bug, but that is slated for their 3.4
release, https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6651.

Can you please backport that fix?  The bug makes analyzing spam messages
difficult for my users.

The version of the spamassassin package I have installed is
3.3.2-2ubuntu1.

Thanks!

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

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

Title:
  backport _SCORE(pad)_ fix (upstream #6651)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1006447/+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


[Blueprint servercloud-q-juju-release-process] Juju Formal Release Process

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Priority: Undefined => High

-- 
Juju Formal Release Process
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-release-process

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


[Blueprint servercloud-q-juju-integration] Juju Integration

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Approver: Robbie Williamson => Antonio Rosales

-- 
Juju Integration
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-integration

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


[Blueprint servercloud-q-juju-integration] Juju Integration

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Priority: Undefined => Medium

-- 
Juju Integration
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-integration

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


[Blueprint servercloud-q-juju-charmstore-maintenance] Juju Charm Store Maintenance

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Priority: Undefined => High

-- 
Juju Charm Store Maintenance
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-charmstore-maintenance

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


[Blueprint servercloud-q-juju-charmstore-maintenance] Juju Charm Store Maintenance

2012-05-30 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Approver: Robbie Williamson => Antonio Rosales

-- 
Juju Charm Store Maintenance
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-charmstore-maintenance

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


  1   2   >