[Bug 1165841] Re: package openvpn 2.2.1-8ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 7

2013-04-10 Thread Yolanda Robla
** Changed in: openvpn (Ubuntu)
   Status: New = Confirmed

** Changed in: openvpn (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  package openvpn 2.2.1-8ubuntu1.1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvpn/+bug/1165841/+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 1163648] Re: package libservlet2.5-java (not installed) failed to install/upgrade: short read on buffer copy for backend dpkg-deb during `./usr/share/fonts/truetype/tlwg/Kinnari-BoldItalic.ttf'

2013-04-10 Thread Yolanda Robla
Thanks for reporting this
Seems that you are having a problem of corrupted downloads.

Can you take a look at this post and check if that works?
http://askubuntu.com/questions/5133/how-to-recover-dpkg-from-corrupted-downloads

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

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

Title:
  package libservlet2.5-java (not installed) failed to install/upgrade:
  short read on buffer copy for backend dpkg-deb during
  `./usr/share/fonts/truetype/tlwg/Kinnari-BoldItalic.ttf'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tomcat6/+bug/1163648/+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 1165928] Re: package samba 2:3.6.3-2ubuntu2.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 128

2013-04-10 Thread Yolanda Robla
Can you try these commands in a terminal?

sudo apt-get update
sudo apt-get upgrade

This should solve the problem

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

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

Title:
  package samba 2:3.6.3-2ubuntu2.4 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 128

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1165928/+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 1162477] Re: typo in nagios.cfg : cfg_drr=...

2013-04-10 Thread Yolanda Robla
** Changed in: nagios3 (Ubuntu)
   Status: New = Confirmed

** Changed in: nagios3 (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  typo in nagios.cfg : cfg_drr=...

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nagios3/+bug/1162477/+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 1162119] Re: nagios not expanding wildcards correctly

2013-04-10 Thread Yolanda Robla
** Changed in: nagios3 (Ubuntu)
   Status: New = Confirmed

** Changed in: nagios3 (Ubuntu)
   Importance: Undecided = Wishlist

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

Title:
  nagios not expanding wildcards correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nagios3/+bug/1162119/+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 1166841] Re: lxc-create fails if LANG != en_GB.UTF-8

2013-04-10 Thread James Hunt
What about the C locale? This fails as well.

Maybe the ubuntu template could check LANG. If not set, or not in
$(locale -a) or /usr/share/i18n/SUPPORTED, revert to en_US.UTF-8?

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

Title:
  lxc-create fails if LANG != en_GB.UTF-8

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1166841/+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 1159748] Re: Ramdom apache2 crash in Ubuntu 12.04 (libpthread-2.15.so)

2013-04-10 Thread Juan Pablo Marco Cardona
Hello again,
finally i find the cause of this issue.

The problem happens every time logrotate rotate the apache logs.

cat /etc/logrotate.d/apache2

/var/log/apache2/*.log {
weekly
missingok
rotate 52
compress
delaycompress
notifempty
create 640 root adm
sharedscripts
postrotate
/etc/init.d/apache2 reload  /dev/null
endscript
prerotate
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
run-parts /etc/logrotate.d/httpd-prerotate; \
fi; \
endscript
}

In fact, every time a /etc/init.d/apache2 reload is run, the apache2 dies.
Then, executing /etc/init.d/apache2 restart instead every time logrotate 
rotate the apache2 logs, should fix the problem.

Anyway, this is just a workaround, because the apache shouldn't die
every time a reload is executed, right?

Thanks in advance

Regards.
P.D: Maybe this bugs are related?
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/669005
https://issues.apache.org/bugzilla/show_bug.cgi?id=50309



** Bug watch added: Apache Software Foundation Bugzilla #50309
   http://issues.apache.org/bugzilla/show_bug.cgi?id=50309

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

Title:
  Ramdom apache2 crash in Ubuntu 12.04 (libpthread-2.15.so)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1159748/+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 1109209] Re: [SRU] python-tx-tftp to Precise

2013-04-10 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-branches/ubuntu/precise/python-tx-tftp
/precise-proposed

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

Title:
  [SRU] python-tx-tftp to Precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-tx-tftp/+bug/1109209/+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 1029430] Please test proposed package

2013-04-10 Thread Dave Walker
Hello Sergio, or anyone else affected,

Accepted nova into quantal-proposed. The package will build now and be
available at http://launchpad.net/ubuntu/+source/nova/2012.2.3-0ubuntu2
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

Title:
  KVM guests networking issues with no virbr0 and with vhost_net kernel
  modules loaded

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1029430/+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 1116671] Re: Meta bug for tracking Openstack 2012.2.3 Stable Update

2013-04-10 Thread Dave Walker
Hello Adam, or anyone else affected,

Accepted cinder into quantal-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/cinder/2012.2.3-0ubuntu2 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: cinder (Ubuntu Quantal)
   Status: Confirmed = Fix Committed

** Changed in: nova (Ubuntu Quantal)
   Status: Confirmed = Fix Committed

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Please test proposed package

2013-04-10 Thread Dave Walker
Hello Adam, or anyone else affected,

Accepted nova into quantal-proposed. The package will build now and be
available at http://launchpad.net/ubuntu/+source/nova/2012.2.3-0ubuntu2
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: glance (Ubuntu Quantal)
   Status: Confirmed = Fix Committed

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Please test proposed package

2013-04-10 Thread Dave Walker
Hello Adam, or anyone else affected,

Accepted glance into quantal-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/glance/2012.2.3-0ubuntu2 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: keystone (Ubuntu Quantal)
   Status: Confirmed = Fix Committed

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Please test proposed package

2013-04-10 Thread Dave Walker
Hello Adam, or anyone else affected,

Accepted keystone into quantal-proposed. The package will build now and
be available at
http://launchpad.net/ubuntu/+source/keystone/2012.2.3+stable-20130206-82c87e56-0ubuntu2
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Re: Meta bug for tracking Openstack 2012.2.3 Stable Update

2013-04-10 Thread Dave Walker
Marking back to confirmed, as quantum 2012.2.3-0ubuntu1 needs to be
superseded by quantum 2012.2.3-0ubuntu1 (as identified earlier in the
report.)  Thanks.

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Please test proposed package

2013-04-10 Thread Dave Walker
Hello Adam, or anyone else affected,

Accepted quantum into quantal-proposed. The package will build now and
be available at
http://launchpad.net/ubuntu/+source/quantum/2012.2.3-0ubuntu2 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1167305] [NEW] overlayfs shows some files as ?????

2013-04-10 Thread Matthias Gehre
Public bug reported:

1. I mounted an overlayfs with uppderdir=/a, lowerdir=/b to /c
2. I copied fileA to the upperdir
3a. Did 'ls -l /a' Output is
-rwxrwxrwx 1 root root 22153090041 Jan 11 22:45 fileA
3b. Did 'ls -l /b' Output is empty.
3c. Did 'ls -l /c'. Output is
-? ? ??  ?? fileA
4. Did 'stat /c/fileA', Output is:
stat: cannot stat `fileA': No such file or directory

Is overlayfs broken? Did I do something wrong?
There is nothing in dmesg. Kernel is 3.5.0-26-generic #42.

How can I debug this?
I can do fairly advanced specific kernel debugging/recompiling with patches 
etc, but I don't know where to start.

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

** Description changed:

  1. I mounted an overlayfs with uppderdir=/a, lowerdir=/b to /c
  2. I copied fileA to the upperdir
  3a. Did 'ls -l /a' Output is
  -rwxrwxrwx 1 root root 22153090041 Jan 11 22:45 fileA
  3b. Did 'ls -l /b' Output is empty.
- 3c. Did 'ls -l /c'. Output is 
- total 90946868
+ 3c. Did 'ls -l /c'. Output is
  -? ? ??  ?? fileA
  4. Did 'stat /c/fileA', Output is:
  stat: cannot stat `fileA': No such file or directory
  
  Is overlayfs broken? Did I do something wrong?
  There is nothing in dmesg. Kernel is 3.5.0-26-generic #42.
  
  How can I debug this?
  I can do fairly advanced specific kernel debugging/recompiling with patches 
etc, but I don't know where to start.

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

Title:
  overlayfs shows some files as ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1167305/+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 1167305] Re: overlayfs shows some files as ?????

2013-04-10 Thread Matthias Gehre
** Changed in: lxc (Ubuntu)
   Status: New = Invalid

** Also affects: linux
   Importance: Undecided
   Status: New

** No longer affects: lxc (Ubuntu)

** Also affects: linux (Ubuntu)
   Importance: Undecided
   Status: New

** No longer affects: linux

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

Title:
  overlayfs shows some files as ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1167305/+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 117736] Re: pam_mount unable to unmount needs root priv

2013-04-10 Thread billdangerous
The bug is still present.

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

Title:
  pam_mount unable to unmount needs root priv

To manage notifications about this bug go to:
https://bugs.launchpad.net/pam/+bug/117736/+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 1130809] Re: lxc scripts break when user has PYTHONPATH set

2013-04-10 Thread Launchpad Bug Tracker
** Branch linked: lp:~gz/ubuntu/raring/juju/0.7

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

Title:
  lxc scripts break when user has PYTHONPATH set

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/1130809/+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 1166841] Re: lxc-create fails if LANG != en_GB.UTF-8

2013-04-10 Thread Serge Hallyn
** Changed in: lxc (Ubuntu)
   Status: Invalid = Triaged

** Summary changed:

- lxc-create fails if LANG != en_GB.UTF-8
+ lxc-create fails if LANG is not valid

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

Title:
  lxc-create fails if LANG is not valid

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1166841/+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 1167337] [NEW] nfs4 mounts hang in bootup with upstart starting rpc.gssd

2013-04-10 Thread stef
Public bug reported:

System 12.04.2 32 and 64bit. nfs4 with krb5/ldap authentication.
No network-manager!

A nfs4 mount results in a system hang, if rpc.gssd is started before rpcbind 
(portmap) and the filesystem is defined as:
nfs4sec=krb5
in /etc/init/gssd.conf the start condition is
   start on (started portmap
  or mounting TYPE=nfs4 OPTIONS=*sec*krb5*)

So when the file system is defined as:   nfs4   sec=krb5
upstart does not wait on portmap (rpcbind) and starts sometimes rpc.gssd before 
rpcbind. This lead to mounting errors and prevents the further bootup.

My solution at the moment is to define the file systems as:
... nfs  vers=4,sec=krb5...

which works at the moment.
(I have also added 
NEED_GSSD=yes
NEED_IDMAPD=yes
to /etc/defaults/nfs-common

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


** Tags: krb5 nfs4 upstart

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

Title:
  nfs4 mounts hang in bootup with upstart starting rpc.gssd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs5/+bug/1167337/+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 1167337] Re: nfs4 mounts hang in bootup with upstart starting rpc.gssd

2013-04-10 Thread stef
I have to apologize, but the bug is not autofs5 related.
Its only nfs4 related!

Stef

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

Title:
  nfs4 mounts hang in bootup with upstart starting rpc.gssd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs5/+bug/1167337/+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 1158465] Re: [SRU] update Windows Azure WALinuxAgent to 1.3.2 (12.04.2, 12.10 and 13.04)

2013-04-10 Thread David Medberry
Resolved had to do with the PEBCAK and the comment I hid. I'm hoping
this SRU is still under way.

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

Title:
  [SRU] update Windows Azure WALinuxAgent to 1.3.2 (12.04.2, 12.10 and
  13.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/walinuxagent/+bug/1158465/+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 1130809] Re: lxc scripts break when user has PYTHONPATH set

2013-04-10 Thread Martin Packman
** Changed in: juju (Ubuntu)
   Status: Triaged = In Progress

** Changed in: juju (Ubuntu)
 Assignee: (unassigned) = Martin Packman (gz)

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

Title:
  lxc scripts break when user has PYTHONPATH set

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/1130809/+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 1167073] Re: nova-network should increase nf_conntrack_max

2013-04-10 Thread Jacek Nykis
** Also affects: nova
   Importance: Undecided
   Status: New

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

Title:
  nova-network should increase nf_conntrack_max

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1167073/+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 1167073] Re: nova-network should increase nf_conntrack_max

2013-04-10 Thread Jacek Nykis
We hit the same issue on our compute nodes. The limit was also 65536 and
it was not high enough for our use case.

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

Title:
  nova-network should increase nf_conntrack_max

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1167073/+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 1166870] Re: lxc-clone fails silently

2013-04-10 Thread Launchpad Bug Tracker
This bug was fixed in the package lxc - 0.9.0-0ubuntu2

---
lxc (0.9.0-0ubuntu2) raring; urgency=low

  * 0002-lxc-functions-safe-in-dash: stop lxc-clone from silently failing.
(LP: #1166870)
 -- Serge Hallyn serge.hal...@ubuntu.com   Tue, 09 Apr 2013 12:38:02 -0500

** Changed in: lxc (Ubuntu)
   Status: In Progress = Fix Released

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

Title:
  lxc-clone fails silently

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1166870/+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 1167512] [NEW] nova-network fails to start if bindir is not set

2013-04-10 Thread LaMont Jones
Public bug reported:

The setup:
- grizzly rc2 upgraded to grizzly (1:2013.1-0ubuntu1~cloud0), running on 
precise.
- fresh install configured based on what appears to be a folsom howto

Starting nova-network results in the following in the nova-network log:

...
2013-04-10 08:59:18.788 WARNING nova.db.sqlalchemy.api 
[req-8094076e-9813-42c4-968e-9dcb1f640659 69e6b81d4dbd41669313d522df780566 
fdd2025e9254488dbe52919938c96edf] Change will make usage less than 0 for the 
following resources: ['fixed_ips']
2013-04-10 08:59:19.098 ERROR nova.openstack.common.rpc.amqp 
[req-8094076e-9813-42c4-968e-9dcb1f640659 69e6b81d4dbd41669313d522df780566 
fdd2025e9254488dbe52919938c96edf] Exception during message handling
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp Traceback 
(most recent call last):
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/openstack/common/rpc/amqp.py, line 430, 
in _process_data
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp rval = 
self.proxy.dispatch(ctxt, version, method, **args)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/openstack/common/rpc/dispatcher.py, 
line 133, in dispatch
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp return 
getattr(proxyobj, method)(ctxt, **kwargs)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/floating_ips.py, line 187, in 
deallocate_for_instance
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
super(FloatingIP, self).deallocate_for_instance(context, **kwargs)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/manager.py, line 550, in 
deallocate_for_instance
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
self.deallocate_fixed_ip(context, fixed_ip['address'], host=host)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/manager.py, line 243, in 
deallocate_fixed_ip
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp address)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/manager.py, line 938, in 
deallocate_fixed_ip
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
self._teardown_network_on_host(context, network)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/manager.py, line 1630, in 
_teardown_network_on_host
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
self.driver.update_dhcp(elevated, dev, network)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/linux_net.py, line 938, in 
update_dhcp
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
restart_dhcp(context, dev, network_ref)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/openstack/common/lockutils.py, line 
242, in inner
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp retval = 
f(*args, **kwargs)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/linux_net.py, line 1048, in 
restart_dhcp
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
_execute(*cmd, run_as_root=True)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/linux_net.py, line 1141, in 
_execute
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp return 
utils.execute(*cmd, **kwargs)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/utils.py, line 239, in execute
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp cmd=' 
'.join(cmd))
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
ProcessExecutionError: Unexpected error while running command.
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp Command: sudo 
nova-rootwrap /etc/nova/rootwrap.conf env CONFIG_FILE=[/etc/nova/nova.conf] 
NETWORK_ID=1 dnsmasq --strict-order --bind-interfaces --conf-file= 
--domain=novalocal --pid-file=/var/lib/nova/networks/nova-eth0.pid 
--listen-address=172.28.20.1 --except-interface=lo 
--dhcp-range=set:private,172.28.20.2,static,120s --dhcp-lease-max=1024 
--dhcp-hostsfile=/var/lib/nova/networks/nova-eth0.conf 
--dhcp-script=/usr/lib/python2.7/dist-packages/bin/nova-dhcpbridge 
--leasefile-ro
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp Exit code: 3
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp Stdout: ''

[Bug 1164414] Re: libvirtd polling /etc/modprobe.d every second

2013-04-10 Thread Serge Hallyn
Marking invalid against libvirt, since libvirt is simply responding to
requests from virt-manager.

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

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

Title:
  libvirtd polling /etc/modprobe.d every second

To manage notifications about this bug go to:
https://bugs.launchpad.net/libvirt/+bug/1164414/+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 1163218] Re: Typo in nova-cells upstart script

2013-04-10 Thread Serge Hallyn
Note, this bug is in

http://ubuntu-
cloud.archive.canonical.com/ubuntu/pool/main/n/nova/nova_2013.1-0ubuntu1~cloud0.dsc

but does not exist in precise-updates.

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

Title:
  Typo in nova-cells upstart script

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1163218/+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 1069570] Re: 1 MAC Address, two IPs - DNS is out of sync with DHCP leases databases, I think...

2013-04-10 Thread Adam Stokes
** Changed in: maas (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  1 MAC Address, two IPs - DNS is out of sync with DHCP leases
  databases, I think...

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1069570/+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 509647] Re: [MIR] lxc

2013-04-10 Thread Stéphane Graber
Hi Seth,

I just wanted to comment on the python side of things.

I'm the author of the binding and sadly it's now used by some of the
very well used bits of LXC (lxc-ls and lxc-start-ephemeral to list the
most populars), so I don't think building without this is really an
option for us.

However I'm very very interested in having those issues resolved. To be
clear, this binding is probably the first bit of C code that I actually
wrote from scratch and released and so I certainly expected the memory
management to be mostly crap. We've fixed a bunch of issues already but
your comments are really useful to fix the rest of those.

I'll try to set aside some time tomorrow to poke at those and will
provide a patch here for Serge and you (if you're interested) to review.

The trick with those bindings and the way LXC work is that it's almost
impossible to run those through valgrind to detect leaks so we almost
entirely depend on the eyes of our reviewers and even though we're
pretty strict on code reviews nowadays, there's only so much you can
find on thousands of line long diffs ;)

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

Title:
  [MIR] lxc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/509647/+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 1159796] Re: package samba 2:3.6.3-2ubuntu2.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 128

2013-04-10 Thread Serge Hallyn
Thanks.  Given that info, I will mark this invalid - not meaning you
didnt' have a problem, but meaning we can't reproduce.

If you have further problems, please do open a bug against update-
manager.

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

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

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

Title:
  package samba 2:3.6.3-2ubuntu2.4 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 128

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debconf/+bug/1159796/+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 1156240] Re: package bacula-director-pgsql 5.2.5-0ubuntu6.2 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 1 zurück

2013-04-10 Thread Serge Hallyn
Marking invalid as the reproducer has been fixed.

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

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

Title:
  package bacula-director-pgsql 5.2.5-0ubuntu6.2 failed to
  install/upgrade: Unterprozess installiertes post-installation-Skript
  gab den Fehlerwert 1 zurück

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bacula/+bug/1156240/+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-1305-juju-charmstore-feedback-loops] Add User Feedback loops and Social Networking to Charm Store Charm Pages

2013-04-10 Thread Seth Arnold
Blueprint changed by Seth Arnold:

Whiteboard set to:
sarnold would like to know roughly how many people have deployed his
charms and would like to know roughly how many have upgraded the charm
recently

-- 
Add User Feedback loops and Social Networking to Charm Store Charm Pages
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-1305-juju-charmstore-feedback-loops

-- 
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 1069570] Re: 1 MAC Address, two IPs - DNS is out of sync with DHCP leases databases, I think...

2013-04-10 Thread Adam Stokes
This also contains a small change to 00List to fix previous changelog
entry and not have its patch reverted.

** Patch removed: isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1069570/+attachment/3631784/+files/isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff

** Patch added: isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1069570/+attachment/3638900/+files/isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff

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

Title:
  1 MAC Address, two IPs - DNS is out of sync with DHCP leases
  databases, I think...

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1069570/+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 1069570] Re: 1 MAC Address, two IPs - DNS is out of sync with DHCP leases databases, I think...

2013-04-10 Thread Adam Stokes
** Patch removed: isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1069570/+attachment/3638900/+files/isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff

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

Title:
  1 MAC Address, two IPs - DNS is out of sync with DHCP leases
  databases, I think...

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1069570/+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 1069570] Re: 1 MAC Address, two IPs - DNS is out of sync with DHCP leases databases, I think...

2013-04-10 Thread Adam Stokes
This also contains a fix from the previous changelog to modify an
apparmor profile. Patch was removed and applied directly to debian
/apparmor-profile.dhcpd

** Patch added: isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1069570/+attachment/3638941/+files/isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff

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

Title:
  1 MAC Address, two IPs - DNS is out of sync with DHCP leases
  databases, I think...

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1069570/+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 1069570] Re: 1 MAC Address, two IPs - DNS is out of sync with DHCP leases databases, I think...

2013-04-10 Thread Dave Chiluk
The above debdiff resolves the 00list issues for bug 
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1057358

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

Title:
  1 MAC Address, two IPs - DNS is out of sync with DHCP leases
  databases, I think...

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1069570/+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-1305-juju-charmstore-feedback-loops] Add User Feedback loops and Social Networking to Charm Store Charm Pages

2013-04-10 Thread Matt Griffin
Blueprint changed by Matt Griffin:

Whiteboard changed:
- sarnold would like to know roughly how many people have deployed his
- charms and would like to know roughly how many have upgraded the charm
- recently
+ Benefits to charm developers
+ - sarnold would like to know roughly how many people have deployed his charms 
(quantitative feedback)
+ - would like to know roughly how many have upgraded the charm recently
+ - can be a measure of user satisfaction/interest with a charm

-- 
Add User Feedback loops and Social Networking to Charm Store Charm Pages
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-1305-juju-charmstore-feedback-loops

-- 
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 1167660] [NEW] maas-cluster-controller.postinst failing with an unterminated sed error

2013-04-10 Thread Diogo Matsubara
Public bug reported:

maas-cluster-controller package is failing to install with the following
error:

Setting up maas-cluster-controller (0.2+1.2+bzr1373+dfsg-0+1373+168~ppa0~quantal
1) ...
sed: -e expression #1, char 23: unterminated `s' command
dpkg: error processing maas-cluster-controller (--configure):
 subprocess installed post-installation script returned error exit status 1
Processing triggers for libc-bin ...

I added set -x to the /var/lib/dpkg/info/maas-cluster-controller.postint
script and re-run the command. Below is the output.

Notice there are two bugs here:

 + RET= http://192.168.21.5/MAAS which contains an leading whitespace

and the bug that's causing the error on line 86 of maas-cluster-
controller.postinst:

sed -i s|MAAS_URL=.*|MAAS_URL=$RET|
/etc/maas/maas_cluster.conf

which works when it's like: sed -i s|MAAS_URL=.*|MAAS_URL='$RET'|
/etc/maas/maas_cluster.conf

ubuntu@autopkgtest:~$ sudo apt-get install maas-cluster-controller  
Reading package lists... Done
Building dependency tree   
Reading state information... Done
maas-cluster-controller is already the newest version.
The following packages were automatically installed and are no longer required:
  linux-headers-3.5.0-22 linux-headers-3.5.0-22-generic
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up maas-cluster-controller 
(0.2+1.2+bzr1373+dfsg-0+1373+168~ppa0~quantal1) ...
+ . /usr/share/debconf/confmodule
+ [ !  ]
+ PERL_DL_NONLAZY=1
+ export PERL_DL_NONLAZY
+ [  ]
+ exec /usr/share/debconf/frontend 
/var/lib/dpkg/info/maas-cluster-controller.postinst configure 
+ . /usr/share/debconf/confmodule
+ [ ! 1 ]
+ [ -z  ]
+ exec
+ [  ]
+ exec
+ DEBCONF_REDIR=1
+ export DEBCONF_REDIR
+ db_version 2.0
+ _db_cmd VERSION 2.0
+ _db_internal_IFS= 

+ IFS= 
+ printf %s\n VERSION 2.0
+ IFS= 

+ IFS=
 read -r _db_internal_line
+ RET=2.0
+ return 0
+ [ configure = configure ]
+ [ -z  ]
+ create_log_dir
+ [ ! -d /var/lib/maas ]
+ [ ! -d /var/log/maas/oops ]
+ chown -R maas:maas /var/lib/maas/
+ chown -R maas:maas /var/log/maas
+ chmod -R 775 /var/log/maas/oops
+ configure_maas_tgt
+ local tgtcfg=/etc/tgt/targets.conf
+ [ -d /etc/tgt/conf.d/ ]
+ mkdir -p /etc/tgt/conf.d/ /var/lib/maas/ephemeral/
+ ln -sf /var/lib/maas/ephemeral/tgt.conf /etc/tgt/conf.d/maas.conf
+ [ configure = configure ]
+ [ -z  ]
+ dpkg --compare-versions  lt 0.1+bzr1239+dfsg-0ubuntu1
+ create_log_dir
+ [ ! -d /var/lib/maas ]
+ [ ! -d /var/log/maas/oops ]
+ chown -R maas:maas /var/lib/maas/
+ chown -R maas:maas /var/log/maas
+ chmod -R 775 /var/log/maas/oops
+ db_get maas-cluster-controller/maas-url
+ _db_cmd GET maas-cluster-controller/maas-url
+ _db_internal_IFS= 

+ IFS= 
+ printf %s\n GET maas-cluster-controller/maas-url
+ IFS= 

+ IFS=
 read -r _db_internal_line
+ RET= http://192.168.21.5/MAAS
+ return 0
+ [ -n  http://192.168.21.5/MAAS ]
+ sed -i s|MAAS_URL=.*|MAAS_URL= http://192.168.21.5/MAAS| 
/etc/maas/maas_cluster.conf
sed: -e expression #1, char 23: unterminated `s' command
dpkg: error processing maas-cluster-controller (--configure):
 subprocess installed post-installation script returned error exit status 1
No apport report written because MaxReports is reached already
  Errors were 
encountered while processing:
 maas-cluster-controller
E: Sub-process /usr/bin/dpkg returned an error code (1)

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

** Branch linked: lp:~matsubara/maas/fix-maas-cluster-controller-sed

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

Title:
  maas-cluster-controller.postinst failing with an unterminated sed
  error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1167660/+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 1120280] Re: logrotate complains about error: mixmaster:7 unknown option 'su' -- ignoring line

2013-04-10 Thread James Teh
I'm also seeing this with mailman:
/etc/cron.daily/logrotate:
error: mailman:2 unknown option 'su' -- ignoring line
error: mailman:2 unexpected text
error: mailman:16 unknown option 'su' -- ignoring line
error: mailman:16 unexpected text
error: mailman:30 unknown option 'su' -- ignoring line
error: mailman:30 unexpected text
error: mailman:44 unknown option 'su' -- ignoring line
error: mailman:44 unexpected text
error: mailman:58 unknown option 'su' -- ignoring line
error: mailman:58 unexpected text

** Also affects: mailman (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  logrotate complains about error: mixmaster:7 unknown option 'su' --
  ignoring line

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mailman/+bug/1120280/+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 985489] Re: nova-compute stops processing compute.$HOSTNAME occasionally on libvirt

2013-04-10 Thread OpenStack Hudson
** Changed in: nova
   Status: Confirmed = In Progress

** Changed in: nova
 Assignee: Michael H Wilson (geekinutah) = wangpan (hzwangpan)

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

Title:
  nova-compute stops processing compute.$HOSTNAME occasionally on
  libvirt

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/985489/+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 985489] Re: nova-compute stops processing compute.$HOSTNAME occasionally on libvirt

2013-04-10 Thread wangpan
** Changed in: nova
 Assignee: wangpan (hzwangpan) = (unassigned)

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

Title:
  nova-compute stops processing compute.$HOSTNAME occasionally on
  libvirt

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/985489/+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 985489] Re: nova-compute stops processing compute.$HOSTNAME occasionally on libvirt

2013-04-10 Thread wangpan
Sorry for Michael H Wilson, I commited a patch relative to this bug, so
OpenStack Hudson automatically assign it to me, but the patch can't
reslove this bug eventually, and I can't reassign it to you now, you may
need to get it again.

** Changed in: nova
   Status: In Progress = Confirmed

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

Title:
  nova-compute stops processing compute.$HOSTNAME occasionally on
  libvirt

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/985489/+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 1120280] Re: logrotate complains about error: mixmaster:7 unknown option 'su' -- ignoring line

2013-04-10 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  logrotate complains about error: mixmaster:7 unknown option 'su' --
  ignoring line

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mailman/+bug/1120280/+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 1158465] Re: [SRU] update Windows Azure WALinuxAgent to 1.3.2 (12.04.2, 12.10 and 13.04)

2013-04-10 Thread Adam Conrad
Hello Ben, or anyone else affected,

Accepted walinuxagent into precise-proposed. The package will build now
and be available at
http://launchpad.net/ubuntu/+source/walinuxagent/1.3.2-0ubuntu1~12.04.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: walinuxagent (Ubuntu Precise)
   Status: In Progress = Fix Committed

** Changed in: walinuxagent (Ubuntu Quantal)
   Status: In Progress = Fix Committed

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

Title:
  [SRU] update Windows Azure WALinuxAgent to 1.3.2 (12.04.2, 12.10 and
  13.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/walinuxagent/+bug/1158465/+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 1158465] Please test proposed package

2013-04-10 Thread Adam Conrad
Hello Ben, or anyone else affected,

Accepted walinuxagent into quantal-proposed. The package will build now
and be available at
http://launchpad.net/ubuntu/+source/walinuxagent/1.3.2-0ubuntu1~12.10.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

Title:
  [SRU] update Windows Azure WALinuxAgent to 1.3.2 (12.04.2, 12.10 and
  13.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/walinuxagent/+bug/1158465/+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 1090593] Re: D.ROOT-SERVERS.NET changing January 3rd 2013

2013-04-10 Thread Anand Kumria
As noted in http://d.root-servers.org/renumber.html, the change will be
done on the 3rd Jan and the old IP address will be retried 6 months
later.

Could we get proposed-update packages before the 3rd Jun (when the old
IP will stop responding)?

I'm presuming that the Ubuntu guys are waiting until the start of May so
that 8.04 LTS does not need new packages.

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

Title:
   D.ROOT-SERVERS.NET changing January 3rd 2013

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