[Bug 1077838] [NEW] qemu-nbd -r -c taints device for subsequent usage, even after -d

2012-11-12 Thread Robert Collins
Public bug reported:

Something about qemu-nbd -r -c /dev/nbd0 someimg leaves cruft behind -
subsequent connections get marked readonly.

This is on quantal, haven't checked precise or raring.

To demonstrate:
# use one image
qemu-img create -f qcow2 /tmp/1.qcow2 100M
sudo qemu-nbd -c /dev/nbd2 /tmp/1.qcow2
sudo mkfs -t ext4 /dev/nbd2
sudo qemu-nbd -d /dev/nbd2
# use a second one on the same nbd device, shows that reuse works:
qemu-img create -f qcow2 /tmp/2.qcow2 100M
sudo qemu-nbd -c /dev/nbd2 /tmp/2.qcow2
sudo mkfs -t ext4 /dev/nbd2
sudo qemu-nbd -d /dev/nbd2
# connect an image in read only mode
sudo qemu-nbd -r -c /dev/nbd2 /tmp/2.qcow2
sudo dumpe2fs /dev/nbd2 | head -n 3
sudo qemu-nbd -d /dev/nbd2
# now try to reuse in read-write mode again:
qemu-img create -f qcow2 /tmp/3.qcow2 100M
sudo qemu-nbd -c /dev/nbd2 /tmp/3.qcow2
sudo mkfs -t ext4 /dev/nbd2
# here it goes boom:
mke2fs 1.42.5 (29-Jul-2012)
/dev/nbd2: Operation not permitted while setting up superblock
# still need to cleanup
sudo qemu-nbd -d /dev/nbd2

** Affects: qemu-kvm (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  qemu-nbd -r -c taints device for subsequent usage, even after -d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+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 1077838] Re: qemu-nbd -r -c taints device for subsequent usage, even after -d

2012-11-12 Thread Soren Hansen
Happens on Precise as well.

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

Title:
  qemu-nbd -r -c taints device for subsequent usage, even after -d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+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 1077838] Re: qemu-nbd -r -c taints device for subsequent usage, even after -d

2012-11-12 Thread Robert Collins
Quick code read - I think that this block:
if (flags  NBD_FLAG_READ_ONLY) {
int read_only = 1;   
TRACE(Setting readonly attribute);

if (ioctl(fd, BLKROSET, (unsigned long) read_only)  0) { 
int serrno = errno;
LOG(Failed setting read-only attribute);
return -serrno;
}   
}   

in nbd.c should be
{
int read_only = 0;
if (flags  NBD_FLAG_READ_ONLY)
read_only = 1;
TRACE(Setting readonly attribute);
if (ioctl(fd, BLKROSET, (unsigned long) read_only)  0) { 
int serrno = errno;
LOG(Failed setting read-only attribute);
return -serrno;
}   
}

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

Title:
  qemu-nbd -r -c taints device for subsequent usage, even after -d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+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 1077838] Re: qemu-nbd -r -c taints device for subsequent usage, even after -d

2012-11-12 Thread Robert Collins
http://paste.ubuntu.com/1352684/ is a debdiff, uploading the source
format 3 patch as well

** Attachment added: Force the readonly bit to the appropriate state on 
startup.
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+attachment/3431096/+files/qemu-kvm_1.2.0%2Bnoroms-0ubuntu3.debian.tar.gz

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

Title:
  qemu-nbd -r -c taints device for subsequent usage, even after -d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+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 1077838] Re: qemu-nbd -r -c taints device for subsequent usage, even after -d

2012-11-12 Thread Robert Collins
** Attachment added: qemu-kvm_1.2.0+noroms-0ubuntu3.dsc
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+attachment/3431097/+files/qemu-kvm_1.2.0%2Bnoroms-0ubuntu3.dsc

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

Title:
  qemu-nbd -r -c taints device for subsequent usage, even after -d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+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 1077838] Re: qemu-nbd -r -c taints device for subsequent usage, even after -d

2012-11-12 Thread Robert Collins
** Attachment added: qemu-kvm_1.2.0+noroms-0ubuntu3_source.changes
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+attachment/3431098/+files/qemu-kvm_1.2.0%2Bnoroms-0ubuntu3_source.changes

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

Title:
  qemu-nbd -r -c taints device for subsequent usage, even after -d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+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 1077838] Re: qemu-nbd -r -c taints device for subsequent usage, even after -d

2012-11-12 Thread Robert Collins
Fixed patch - I had my sense inverted...
http://paste.ubuntu.com/1352711/

** Attachment added: Corrected patch
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+attachment/3431143/+files/qemu-kvm_1.2.0%2Bnoroms-0ubuntu3.debian.tar.gz

** Patch removed: Force the readonly bit to the appropriate state on startup.
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+attachment/3431096/+files/qemu-kvm_1.2.0%2Bnoroms-0ubuntu3.debian.tar.gz

** Attachment removed: qemu-kvm_1.2.0+noroms-0ubuntu3.dsc
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+attachment/3431097/+files/qemu-kvm_1.2.0%2Bnoroms-0ubuntu3.dsc

** Attachment removed: qemu-kvm_1.2.0+noroms-0ubuntu3_source.changes
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+attachment/3431098/+files/qemu-kvm_1.2.0%2Bnoroms-0ubuntu3_source.changes

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

Title:
  qemu-nbd -r -c taints device for subsequent usage, even after -d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+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 1014044] Re: PHP5-FPM not reporting errors to web server (nginx)

2012-11-12 Thread Everaldo Canuto
So, when this fix will be available at precise-updates?

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

Title:
  PHP5-FPM not reporting errors to web server (nginx)

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1014044/+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 1077874] [NEW] installation of ipvsadm is broken : unknown template field, can't dpkg-reconfigure

2012-11-12 Thread Joris
Public bug reported:

root@cookie:~# apt-get install ipvsadm
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Suggested packages:
  heartbeat keepalived ldirectord
The following NEW packages will be installed:
  ipvsadm
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/39.8 kB of archives.
After this operation, 134 kB of additional disk space will be used.
Preconfiguring packages ...
debconf: Unknown template field '__choices', in stanza #1 of 
/tmp/ipvsadm.template.94960

debconf: Unknown template field '_description', in stanza #1 of
/tmp/ipvsadm.template.94960

debconf: Unknown template field '_description', in stanza #2 of
/tmp/ipvsadm.template.94960

debconf: Unknown template field '_description', in stanza #3 of
/tmp/ipvsadm.template.94960

debconf: Unknown template field '_description', in stanza #4 of
/tmp/ipvsadm.template.94960

Selecting previously unselected package ipvsadm.
(Reading database ... 188359 files and directories currently installed.)
Unpacking ipvsadm (from .../ipvsadm_1%3a1.26-1ubuntu1_amd64.deb) ...
Processing triggers for ureadahead ...
Processing triggers for man-db ...
Setting up ipvsadm (1:1.26-1ubuntu1) ...
 * ipvsadm is not configured to run. Please edit /etc/default/ipvsadm
root@cookie:~# dpkg-reconfigure ipvsadm
debconf: Unknown template field '__choices', in stanza #1 of 
/var/lib/dpkg/info/ipvsadm.templates

debconf: Unknown template field '_description', in stanza #1 of
/var/lib/dpkg/info/ipvsadm.templates

debconf: Unknown template field '_description', in stanza #2 of
/var/lib/dpkg/info/ipvsadm.templates

debconf: Unknown template field '_description', in stanza #3 of
/var/lib/dpkg/info/ipvsadm.templates

debconf: Unknown template field '_description', in stanza #4 of
/var/lib/dpkg/info/ipvsadm.templates

 * ipvsadm is not configured to run. Please run dpkg-reconfigure ipvsadm
 * ipvsadm is not configured to run. Please edit /etc/default/ipvsadm


# apt-cache policy ipvsadm
ipvsadm:
  Installed: 1:1.26-1ubuntu1
  Candidate: 1:1.26-1ubuntu1
  Version table:
 *** 1:1.26-1ubuntu1 0
500 http://fr.archive.ubuntu.com/ubuntu/ quantal/main amd64 Packages
100 /var/lib/dpkg/status

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: ipvsadm 1:1.26-1ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
Date: Mon Nov 12 10:47:10 2012
InstallationDate: Installed on 2012-11-06 (5 days ago)
InstallationMedia: Xubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.1)
MarkForUpload: True
SourcePackage: ipvsadm
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug quantal

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

Title:
  installation of ipvsadm is broken : unknown template field, can't
  dpkg-reconfigure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipvsadm/+bug/1077874/+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 889689] Re: E: nagios3-common: subprocess installed post-installation script returned error exit status 1

2012-11-12 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  E: nagios3-common: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nagios3/+bug/889689/+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-r-openstack-grizzly] Openstack next steps

2012-11-12 Thread James Page
Blueprint changed by James Page:

Work items changed:
  Work items:
  Release and package nova, glance, keystone, cinder, swift, horizon, quantum, 
and ceilometer for main: TODO
  MIR dependencies that need to be done for ceilometer: TODO
  SSL support openstack endpoints: TODO
  Apparmor profile for openstack projects: TODO
  Make sure that vmware esxi works on ubuntu: TODO
  Make sure libvirt-xen works on ubuntu openstack: TODO
  Make sure that XCP/Xenserver work on Ubuntu openstack: TODO
  Make sure that openstack works with postgresql (revisit db-common): TODO
- Make sure quantum works with ARM: TODO
  rabbitmq vs activemq vs zeromq vs qpid: TODO
  Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
  Adding HA to CI testing: TODO
  Look at packaging Synaps contributed by Samsung: TODO
  Look at packaging Red Dwarf: TODO
  Look at packaging DNS as a service: TODO
  Look at Load Balancing as a service: TODO
  Look at NRPE Plugins Package: TODO
  Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
  Failed missing in Glance: TODO
  Remove nova-volume in Grizzly: TODO
  [ivoks] Test quantum on ARM: TODO
  (Folsom-Grizzly) (Grizzly-) for the Ubuntu Devel release + Precise: TODO

-- 
Openstack next steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-openstack-grizzly

-- 
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-r-openstack-qa] Openstack QA plan

2012-11-12 Thread James Page
Blueprint changed by James Page:

Work items changed:
  Work items:
  Implement automated upgrade testing: TODO
  Investigate Grenade tests:, decouple, reuse and expand: TODO
  Finish pre-commit testing: TODO
  Implement multi-database testing: TODO
- Integrate ceph into Openstack CI: TODO
- Charm quantum, integrate into openstack charms: TODO
- Integrate quantum into Openstack CI: TODO
+ [james-page] Integrate ceph into Openstack CI: TODO
+ [james-page] Charm quantum, integrate into openstack charms: TODO
+ [james-page] Integrate quantum into Openstack CI: TODO
  Integrate swift into Openstack CI: TODO
  Integrate cinder into Openstack CI: TODO
  Charm ceilometer: TODO
  Integrate ceilometer into Openstack CI: TODO
  Document testing reference architectures: TODO
  setup auto-pkg tests for testing outside of package build process: TODO
  review where to get packages and associated documenation: TODO
  openstack qa ci switchover as part of ubuntu/openstack development release 
opening - document: TODO

-- 
Openstack QA plan
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-openstack-qa

-- 
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 1077897] [NEW] Cron quota script not working for groups

2012-11-12 Thread Marko Steinberger
Public bug reported:

The cron script /etc/cron.daily/quota does not work for groups, ie the
file /etc/quotagrpadmins is ignored.

Invoking warnquota with the option -g solves the issue.

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

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

Title:
  Cron quota script not working for groups

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/quota/+bug/1077897/+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 1014044] Re: PHP5-FPM not reporting errors to web server (nginx)

2012-11-12 Thread Thomas Ward
This fix was put in precise-updates well over a month ago, Everaldo.
The post before yours shows where this was committed to precise-updates
(it says precise-proposed, but it is in -updates).

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

Title:
  PHP5-FPM not reporting errors to web server (nginx)

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1014044/+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 1077838] Re: qemu-nbd -r -c taints device for subsequent usage, even after -d

2012-11-12 Thread Ubuntu Foundation's Bug Bot
** Tags added: patch

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

Title:
  qemu-nbd -r -c taints device for subsequent usage, even after -d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1077838/+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 1077874] Re: installation of ipvsadm is broken : unknown template field, can't dpkg-reconfigure

2012-11-12 Thread Joris
Hello,

Here's a patch that fix the Unknown template field errors that debconf
encounters.

However, dpkg-reconfigure ipvsadm still doesn't work as it just spits
out the following output :

# dpkg-reconfigure ipvsadm
 * ipvsadm is not configured to run. Please run dpkg-reconfigure ipvsadm
 * ipvsadm is not configured to run. Please edit /etc/default/ipvsadm

I'm not sure how to fix it myself.

Best regards,
Joris


** Patch added: This patch resolves the Unknown template field errors.
   
https://bugs.launchpad.net/ubuntu/+source/ipvsadm/+bug/1077874/+attachment/3431223/+files/ipvsadm.templates.patch

** Description changed:

- root@cookie:~# apt-get install ipvsadm
+ # apt-get install ipvsadm
  Reading package lists... Done
- Building dependency tree   
+ Building dependency tree
  Reading state information... Done
  Suggested packages:
-   heartbeat keepalived ldirectord
+   heartbeat keepalived ldirectord
  The following NEW packages will be installed:
-   ipvsadm
+   ipvsadm
  0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  Need to get 0 B/39.8 kB of archives.
  After this operation, 134 kB of additional disk space will be used.
  Preconfiguring packages ...
  debconf: Unknown template field '__choices', in stanza #1 of 
/tmp/ipvsadm.template.94960
  
  debconf: Unknown template field '_description', in stanza #1 of
  /tmp/ipvsadm.template.94960
  
  debconf: Unknown template field '_description', in stanza #2 of
  /tmp/ipvsadm.template.94960
  
  debconf: Unknown template field '_description', in stanza #3 of
  /tmp/ipvsadm.template.94960
  
  debconf: Unknown template field '_description', in stanza #4 of
  /tmp/ipvsadm.template.94960
  
  Selecting previously unselected package ipvsadm.
  (Reading database ... 188359 files and directories currently installed.)
  Unpacking ipvsadm (from .../ipvsadm_1%3a1.26-1ubuntu1_amd64.deb) ...
  Processing triggers for ureadahead ...
  Processing triggers for man-db ...
  Setting up ipvsadm (1:1.26-1ubuntu1) ...
-  * ipvsadm is not configured to run. Please edit /etc/default/ipvsadm
+  * ipvsadm is not configured to run. Please edit /etc/default/ipvsadm
  root@cookie:~# dpkg-reconfigure ipvsadm
  debconf: Unknown template field '__choices', in stanza #1 of 
/var/lib/dpkg/info/ipvsadm.templates
  
  debconf: Unknown template field '_description', in stanza #1 of
  /var/lib/dpkg/info/ipvsadm.templates
  
  debconf: Unknown template field '_description', in stanza #2 of
  /var/lib/dpkg/info/ipvsadm.templates
  
  debconf: Unknown template field '_description', in stanza #3 of
  /var/lib/dpkg/info/ipvsadm.templates
  
  debconf: Unknown template field '_description', in stanza #4 of
  /var/lib/dpkg/info/ipvsadm.templates
  
-  * ipvsadm is not configured to run. Please run dpkg-reconfigure ipvsadm
-  * ipvsadm is not configured to run. Please edit /etc/default/ipvsadm
- 
+  * ipvsadm is not configured to run. Please run dpkg-reconfigure ipvsadm
+  * ipvsadm is not configured to run. Please edit /etc/default/ipvsadm
  
  # apt-cache policy ipvsadm
  ipvsadm:
-   Installed: 1:1.26-1ubuntu1
-   Candidate: 1:1.26-1ubuntu1
-   Version table:
-  *** 1:1.26-1ubuntu1 0
- 500 http://fr.archive.ubuntu.com/ubuntu/ quantal/main amd64 Packages
- 100 /var/lib/dpkg/status
+   Installed: 1:1.26-1ubuntu1
+   Candidate: 1:1.26-1ubuntu1
+   Version table:
+  *** 1:1.26-1ubuntu1 0
+ 500 http://fr.archive.ubuntu.com/ubuntu/ quantal/main amd64 Packages
+ 100 /var/lib/dpkg/status
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: ipvsadm 1:1.26-1ubuntu1
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: amd64
  Date: Mon Nov 12 10:47:10 2012
  InstallationDate: Installed on 2012-11-06 (5 days ago)
  InstallationMedia: Xubuntu 12.10 Quantal Quetzal - Release amd64 
(20121017.1)
  MarkForUpload: True
  SourcePackage: ipvsadm
  UpgradeStatus: No upgrade log present (probably fresh install)

** Description changed:

  # apt-get install ipvsadm
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  Suggested packages:
    heartbeat keepalived ldirectord
  The following NEW packages will be installed:
    ipvsadm
  0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  Need to get 0 B/39.8 kB of archives.
  After this operation, 134 kB of additional disk space will be used.
  Preconfiguring packages ...
  debconf: Unknown template field '__choices', in stanza #1 of 
/tmp/ipvsadm.template.94960
  
  debconf: Unknown template field '_description', in stanza #1 of
  /tmp/ipvsadm.template.94960
  
  debconf: Unknown template field '_description', in stanza #2 of
  /tmp/ipvsadm.template.94960
  
  debconf: Unknown template field '_description', in stanza #3 of
  /tmp/ipvsadm.template.94960
  
  debconf: Unknown template field '_description', in stanza #4 of
  

[Bug 811518] Re: SAMBA cannot browse Workgroups, name resolve order

2012-11-12 Thread Felix
** Patch added: Patching 1 line in smb.conf for users sake
   
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/811518/+attachment/3431230/+files/name_resolve_order_fix.patch

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

Title:
  SAMBA cannot browse Workgroups, name resolve order

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/811518/+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 811518] Re: SAMBA cannot browse Workgroups, name resolve order

2012-11-12 Thread Felix
OKAY, this is not fixed yet. Where do i have to send a patch to? It
really is as easy as writing

name resolve order = bcast wins lmhosts host

into smb.conf. Everytime a new Ubuntu is installed users are
experiencing this and think fuck, not even shares work. Considering
they raged about gfx drivers, flash, java, multi monitor setup etc
before, it is a great addition to spend a few hours searching for this
one.

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

Title:
  SAMBA cannot browse Workgroups, name resolve order

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/811518/+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 1077874] Re: installation of ipvsadm is broken : unknown template field, can't dpkg-reconfigure

2012-11-12 Thread Joris
This bug is upstream, it affects debian wheezy too.

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

Title:
  installation of ipvsadm is broken : unknown template field, can't
  dpkg-reconfigure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipvsadm/+bug/1077874/+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 1077874] Re: installation of ipvsadm is broken : unknown template field, can't dpkg-reconfigure

2012-11-12 Thread Joris
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685577

** Bug watch added: Debian Bug tracker #685577
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685577

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

Title:
  installation of ipvsadm is broken : unknown template field, can't
  dpkg-reconfigure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipvsadm/+bug/1077874/+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-r-lxc] LXC work for R

2012-11-12 Thread Stéphane Graber
Blueprint changed by Stéphane Graber:

Work items changed:
  Work items:
  [serge-hallyn] Send user namespace delta to kernel-team ASAP: DONE
  [serge-hallyn] Post syslog namespace design wiki page: DONE
  [serge-hallyn] Send syslog namespace description to kernel-team ASAP: TODO
  [daniel-lezcano] Improved monitor notification support: TODO
  [stgraber] Fix lxc-ls (re-write using api): TODO
  [serge-hallyn] lxc-create or template option to specify userns mapping: TODO
  [serge-hallyn] push user namespace lxc delta upstream: TODO
  [serge-hallyn] add config options for loglevel and output file: TODO
  [serge-hallyn] drop lxccontainer.log default logging in api: BLOCKED
  [serge-hallyn] lxc-create - set a default log level and log file in 
/var/log/lxc/$container: TODO
  [serge-hallyn] lxc.autodev: push lxc patch upstream: INPROGRESS
  [serge-hallyn] lxc.autodev: push lxc patch into package: TODO
  [serge-hallyn] lxc.autodev: push mountall patch into package: TODO
  [serge-hallyn] list broken functionality in ubuntu container in user 
namespace: TODO
  [serge-hallyn] improve ubuntu container experience in user namespace: TODO
  [serge-hallyn] add config option for RLIMIT_NPROC in userns container: TODO
  [stgraber] add (not container) to upstart jobs which just fail: TODO
  [stgraber] write tool to pass devices into container: TODO
  [stgraber] create a separate package for templates: INPROGRESS
  [stgraber] have lxc-create record the name of template used in container 
config file for debugging: TODO
  [stgraber] support templates outside of $templatedir: INPROGRESS
  [stgraber] investigate what's needed to support containers outside of 
/var/lib/lxc: TODO
  [serge-hallyn] test apparmor profile stacking; implement any lxc changes 
needed to support it: BLOCKED
  [stgraber] rebase staging branch on upstream master: INPROGRESS
  [serge-hallyn] test attach support in userns kernrel; shout if anything 
missing: TODO
  [daniel-lezcano] investigate/use http://lxc.sourceforge.net/download/procfs 
to filter /proc/{cpuinfo,meminfo,etc}: TODO
- [stgraber] investigate: does dnsmasq save mac-ip across host reboots?: TODO
+ [stgraber] investigate: does dnsmasq save mac-ip across host reboots? (it 
does): DONE
+ [stgraber] Port arkose to python3 (and make it pep8 clean): TODO
+ [stgraber] Port arkose to python3-lxc: TODO
+ [stgraber] Port auto-dist-upgrader to python3-lxc: TODO
+ [stgraber] Tweak the tests to ensure auto-dist-upgrader on LXC gives the same 
results as on kvm: TODO

-- 
LXC work for R
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-lxc

-- 
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-r-lxc] LXC work for R

2012-11-12 Thread Stéphane Graber
Blueprint changed by Stéphane Graber:

Work items changed:
  Work items:
  [serge-hallyn] Send user namespace delta to kernel-team ASAP: DONE
  [serge-hallyn] Post syslog namespace design wiki page: DONE
  [serge-hallyn] Send syslog namespace description to kernel-team ASAP: TODO
  [daniel-lezcano] Improved monitor notification support: TODO
  [stgraber] Fix lxc-ls (re-write using api): TODO
  [serge-hallyn] lxc-create or template option to specify userns mapping: TODO
  [serge-hallyn] push user namespace lxc delta upstream: TODO
  [serge-hallyn] add config options for loglevel and output file: TODO
  [serge-hallyn] drop lxccontainer.log default logging in api: BLOCKED
  [serge-hallyn] lxc-create - set a default log level and log file in 
/var/log/lxc/$container: TODO
  [serge-hallyn] lxc.autodev: push lxc patch upstream: INPROGRESS
  [serge-hallyn] lxc.autodev: push lxc patch into package: TODO
  [serge-hallyn] lxc.autodev: push mountall patch into package: TODO
  [serge-hallyn] list broken functionality in ubuntu container in user 
namespace: TODO
  [serge-hallyn] improve ubuntu container experience in user namespace: TODO
  [serge-hallyn] add config option for RLIMIT_NPROC in userns container: TODO
  [stgraber] add (not container) to upstart jobs which just fail: TODO
  [stgraber] write tool to pass devices into container: TODO
  [stgraber] create a separate package for templates: INPROGRESS
  [stgraber] have lxc-create record the name of template used in container 
config file for debugging: TODO
  [stgraber] support templates outside of $templatedir: INPROGRESS
  [stgraber] investigate what's needed to support containers outside of 
/var/lib/lxc: TODO
  [serge-hallyn] test apparmor profile stacking; implement any lxc changes 
needed to support it: BLOCKED
  [stgraber] rebase staging branch on upstream master: INPROGRESS
  [serge-hallyn] test attach support in userns kernrel; shout if anything 
missing: TODO
  [daniel-lezcano] investigate/use http://lxc.sourceforge.net/download/procfs 
to filter /proc/{cpuinfo,meminfo,etc}: TODO
  [stgraber] investigate: does dnsmasq save mac-ip across host reboots? (it 
does): DONE
  [stgraber] Port arkose to python3 (and make it pep8 clean): TODO
  [stgraber] Port arkose to python3-lxc: TODO
  [stgraber] Port auto-dist-upgrader to python3-lxc: TODO
  [stgraber] Tweak the tests to ensure auto-dist-upgrader on LXC gives the same 
results as on kvm: TODO
+ [stgraber] Check what it'd take to make lxc work fine when 
creating/starting/stopping containers in parallel: TODO
+ [stgraber] Add code to detect and install langpacks in containers (at least 
-base-en): TODO
+ [stgraber] Get LXC into main: TODO

-- 
LXC work for R
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-lxc

-- 
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 1077874] Re: installation of ipvsadm is broken : unknown template field, can't dpkg-reconfigure

2012-11-12 Thread Joris
** Also affects: ipvsadm (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685577
   Importance: Unknown
   Status: Unknown

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

Title:
  installation of ipvsadm is broken : unknown template field, can't
  dpkg-reconfigure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipvsadm/+bug/1077874/+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-r-kdump-tool] Enable kdump mechanism from kdump-tool instead of kexec-tools

2012-11-12 Thread Stefan Bader
Blueprint changed by Stefan Bader:

Work items changed:
  Work items:
  [louis-bouchard] - kdump-tools needs to be MIR / file a bug: TODO
- [smb] - discuss linuxcrashdump changes on ubuntu-devel / ubuntu-kernel: TODO
- [smb] - linuxcrashdump changed to install kdump-tool (after discussion): 
BLOCKED
+ [stefan-bader-canonical] - discuss linuxcrashdump changes on ubuntu-devel / 
ubuntu-kernel: TODO
+ [stefan-bader-canonical] - linuxcrashdump changed to install kdump-tool 
(after discussion): BLOCKED
  [christopherarges] - write better documentation for kdump-tool: TODO
  [dannf] - validate/invalidate with kdump-tools / mkdumpfile on ARM: TODO
  [louis-bouchard] - Integrate netdump support: POSTPONED
  [med] - netdump charm to aggregate dumps in a cloud: TODO

-- 
Enable kdump mechanism from kdump-tool instead of kexec-tools
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-kdump-tool

-- 
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 811518] Re: SAMBA cannot browse Workgroups, name resolve order

2012-11-12 Thread Ubuntu Foundation's Bug Bot
The attachment Patching 1 line in smb.conf for users sake of this bug
report has been identified as being a patch.  The ubuntu-reviewers team
has been subscribed to the bug report so that they can review the patch.
In the event that this is in fact not a patch you can resolve this
situation by removing the tag 'patch' from the bug report and editing
the attachment so that it is not flagged as a patch.  Additionally, if
you are member of the ubuntu-reviewers team please also unsubscribe the
team from this bug report.

[This is an automated message performed by a Launchpad user owned by
Brian Murray.  Please contact him regarding any issues with the action
taken in this bug report.]

** Tags added: patch

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

Title:
  SAMBA cannot browse Workgroups, name resolve order

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/811518/+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-r-openstack-grizzly] Openstack next steps

2012-11-12 Thread Chuck Short
Blueprint changed by Chuck Short:

Work items changed:
  Work items:
  Release and package nova, glance, keystone, cinder, swift, horizon, quantum, 
and ceilometer for main: TODO
  MIR dependencies that need to be done for ceilometer: TODO
  SSL support openstack endpoints: TODO
  Apparmor profile for openstack projects: TODO
  Make sure that vmware esxi works on ubuntu: TODO
  Make sure libvirt-xen works on ubuntu openstack: TODO
  Make sure that XCP/Xenserver work on Ubuntu openstack: TODO
  Make sure that openstack works with postgresql (revisit db-common): TODO
  rabbitmq vs activemq vs zeromq vs qpid: TODO
  Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
  Adding HA to CI testing: TODO
  Look at packaging Synaps contributed by Samsung: TODO
  Look at packaging Red Dwarf: TODO
  Look at packaging DNS as a service: TODO
  Look at Load Balancing as a service: TODO
  Look at NRPE Plugins Package: TODO
  Convert ubuntu CI lab to cutover to Openstack++ when we start planning to 
test: TODO
- Failed missing in Glance: TODO
+ [zulcss] FTBFS from is missing binaries: DONE
  Remove nova-volume in Grizzly: TODO
  [ivoks] Test quantum on ARM: TODO
  (Folsom-Grizzly) (Grizzly-) for the Ubuntu Devel release + Precise: TODO

-- 
Openstack next steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-openstack-grizzly

-- 
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 1077874] Re: installation of ipvsadm is broken : unknown template field, can't dpkg-reconfigure

2012-11-12 Thread Ubuntu Foundation's Bug Bot
The attachment This patch resolves the Unknown template field
errors. of this bug report has been identified as being a patch.  The
ubuntu-reviewers team has been subscribed to the bug report so that they
can review the patch.  In the event that this is in fact not a patch you
can resolve this situation by removing the tag 'patch' from the bug
report and editing the attachment so that it is not flagged as a patch.
Additionally, if you are member of the ubuntu-reviewers team please also
unsubscribe the team from this bug report.

[This is an automated message performed by a Launchpad user owned by
Brian Murray.  Please contact him regarding any issues with the action
taken in this bug report.]

** Tags added: patch

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

Title:
  installation of ipvsadm is broken : unknown template field, can't
  dpkg-reconfigure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipvsadm/+bug/1077874/+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 1076825] Re: Can't configure nova to use MySQL as backend

2012-11-12 Thread Chuck Short
The packaging uses sqlite by default, did you change your
/etc/nova/nova.conf and then re-run nova-manage db sync?

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

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

Title:
  Can't configure nova to use MySQL as backend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1076825/+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 1077700] Re: Issue with ConfigDriveV2 and ssh authorized_keys

2012-11-12 Thread Launchpad Bug Tracker
** Branch linked: lp:cloud-init

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

Title:
  Issue with ConfigDriveV2 and ssh authorized_keys

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1077700/+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 1077700] Re: Issue with ConfigDriveV2 and ssh authorized_keys

2012-11-12 Thread Scott Moser
fixed in trunk at revno 718.

** Changed in: cloud-init
   Status: Triaged = Fix Committed

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

Title:
  Issue with ConfigDriveV2 and ssh authorized_keys

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1077700/+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 1037567] Re: need config-drive-v2 support

2012-11-12 Thread Scott Moser
** Also affects: cloud-init (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Quantal)
   Importance: Undecided
   Status: New

** Changed in: cloud-init (Ubuntu Quantal)
   Status: New = Fix Released

** Changed in: cloud-init (Ubuntu Quantal)
   Importance: Undecided = Medium

** Changed in: cloud-init (Ubuntu Precise)
   Status: New = Triaged

** Changed in: cloud-init (Ubuntu Precise)
   Importance: Undecided = High

** Changed in: cloud-init (Ubuntu)
   Status: New = Fix Released

** Changed in: cloud-init (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  need config-drive-v2 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1037567/+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 1076277] Re: package rrdcached 1.4.7-1 failed to install: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 139

2012-11-12 Thread Federico Cuello
You just need to create /var/lib/rrdcached/journal/ before installing
and that's it.

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

Title:
  package rrdcached 1.4.7-1 failed to install: le sous-processus script
  post-installation installé a retourné une erreur de sortie d'état 139

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rrdtool/+bug/1076277/+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 1066359] Re: ssh not functional on xubuntu 12.10

2012-11-12 Thread Book 'em Dano
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please execute the following command, as it will
automatically gather debugging information, in a terminal:

  apport-collect -p openssh-client 1066359

Can you describe how the SSH server is set up?  Are you using password
or public/private key authenication?  What port and protocol do you have
the SSH server configured to listen to/use?

** Changed in: openssh (Ubuntu)
   Status: Confirmed = Incomplete

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

Title:
  ssh not functional on xubuntu 12.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/1066359/+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-r-lxc] LXC work for R

2012-11-12 Thread Stéphane Graber
Blueprint changed by Stéphane Graber:

Work items changed:
  Work items:
  [serge-hallyn] Send user namespace delta to kernel-team ASAP: DONE
  [serge-hallyn] Post syslog namespace design wiki page: DONE
  [serge-hallyn] Send syslog namespace description to kernel-team ASAP: TODO
  [daniel-lezcano] Improved monitor notification support: TODO
  [stgraber] Fix lxc-ls (re-write using api): TODO
  [serge-hallyn] lxc-create or template option to specify userns mapping: TODO
  [serge-hallyn] push user namespace lxc delta upstream: TODO
  [serge-hallyn] add config options for loglevel and output file: TODO
  [serge-hallyn] drop lxccontainer.log default logging in api: BLOCKED
  [serge-hallyn] lxc-create - set a default log level and log file in 
/var/log/lxc/$container: TODO
  [serge-hallyn] lxc.autodev: push lxc patch upstream: INPROGRESS
  [serge-hallyn] lxc.autodev: push lxc patch into package: TODO
  [serge-hallyn] lxc.autodev: push mountall patch into package: TODO
  [serge-hallyn] list broken functionality in ubuntu container in user 
namespace: TODO
  [serge-hallyn] improve ubuntu container experience in user namespace: TODO
  [serge-hallyn] add config option for RLIMIT_NPROC in userns container: TODO
  [stgraber] add (not container) to upstart jobs which just fail: TODO
  [stgraber] write tool to pass devices into container: TODO
  [stgraber] create a separate package for templates: INPROGRESS
  [stgraber] have lxc-create record the name of template used in container 
config file for debugging: TODO
  [stgraber] support templates outside of $templatedir: INPROGRESS
  [stgraber] investigate what's needed to support containers outside of 
/var/lib/lxc: TODO
  [serge-hallyn] test apparmor profile stacking; implement any lxc changes 
needed to support it: BLOCKED
- [stgraber] rebase staging branch on upstream master: INPROGRESS
+ [stgraber] rebase staging branch on upstream master: DONE
  [serge-hallyn] test attach support in userns kernrel; shout if anything 
missing: TODO
  [daniel-lezcano] investigate/use http://lxc.sourceforge.net/download/procfs 
to filter /proc/{cpuinfo,meminfo,etc}: TODO
  [stgraber] investigate: does dnsmasq save mac-ip across host reboots? (it 
does): DONE
  [stgraber] Port arkose to python3 (and make it pep8 clean): TODO
  [stgraber] Port arkose to python3-lxc: TODO
  [stgraber] Port auto-dist-upgrader to python3-lxc: TODO
  [stgraber] Tweak the tests to ensure auto-dist-upgrader on LXC gives the same 
results as on kvm: TODO
  [stgraber] Check what it'd take to make lxc work fine when 
creating/starting/stopping containers in parallel: TODO
  [stgraber] Add code to detect and install langpacks in containers (at least 
-base-en): TODO
  [stgraber] Get LXC into main: TODO

-- 
LXC work for R
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-lxc

-- 
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 1073571] Re: [Folsom] Conflict between nova-api and cinder-api

2012-11-12 Thread Jeff Mitchell
I'm hitting this bug, but I both have enabled_apis defined in my
nova.conf and I don't have osapi_volume in there:

enabled_apis=ec2,osapi_compute,metadata

Could there be some other issue specific to the Ubuntu packages?

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

Title:
  [Folsom] Conflict between nova-api and cinder-api

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1073571/+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 1073571] Re: [Folsom] Conflict between nova-api and cinder-api

2012-11-12 Thread Jeff Mitchell
I figured it out:

This documenation here: http://docs.openstack.org/trunk/openstack-
compute/admin/content/configuring-openstack-compute-basics.html has an
authentication section that has a [keystone_authtoken] group near the
top of the file.

Unfortunately, that means that the rest of the file is all but ignored
because the options are in the wrong group in the INI file -- including
enabled_apis.

Moving the auth section to the bottom of the file fixed it.

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

Title:
  [Folsom] Conflict between nova-api and cinder-api

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1073571/+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-r-lxc] LXC work for R

2012-11-12 Thread Stéphane Graber
Blueprint changed by Stéphane Graber:

Work items changed:
  Work items:
  [serge-hallyn] Send user namespace delta to kernel-team ASAP: DONE
  [serge-hallyn] Post syslog namespace design wiki page: DONE
  [serge-hallyn] Send syslog namespace description to kernel-team ASAP: TODO
  [daniel-lezcano] Improved monitor notification support: TODO
  [stgraber] Fix lxc-ls (re-write using api): TODO
  [serge-hallyn] lxc-create or template option to specify userns mapping: TODO
  [serge-hallyn] push user namespace lxc delta upstream: TODO
  [serge-hallyn] add config options for loglevel and output file: TODO
  [serge-hallyn] drop lxccontainer.log default logging in api: BLOCKED
  [serge-hallyn] lxc-create - set a default log level and log file in 
/var/log/lxc/$container: TODO
  [serge-hallyn] lxc.autodev: push lxc patch upstream: INPROGRESS
  [serge-hallyn] lxc.autodev: push lxc patch into package: TODO
  [serge-hallyn] lxc.autodev: push mountall patch into package: TODO
  [serge-hallyn] list broken functionality in ubuntu container in user 
namespace: TODO
  [serge-hallyn] improve ubuntu container experience in user namespace: TODO
  [serge-hallyn] add config option for RLIMIT_NPROC in userns container: TODO
  [stgraber] add (not container) to upstart jobs which just fail: TODO
  [stgraber] write tool to pass devices into container: TODO
  [stgraber] create a separate package for templates: INPROGRESS
  [stgraber] have lxc-create record the name of template used in container 
config file for debugging: TODO
- [stgraber] support templates outside of $templatedir: INPROGRESS
+ [stgraber] support templates outside of $templatedir (pushed to git): DONE
  [stgraber] investigate what's needed to support containers outside of 
/var/lib/lxc: TODO
  [serge-hallyn] test apparmor profile stacking; implement any lxc changes 
needed to support it: BLOCKED
  [stgraber] rebase staging branch on upstream master: DONE
  [serge-hallyn] test attach support in userns kernrel; shout if anything 
missing: TODO
  [daniel-lezcano] investigate/use http://lxc.sourceforge.net/download/procfs 
to filter /proc/{cpuinfo,meminfo,etc}: TODO
  [stgraber] investigate: does dnsmasq save mac-ip across host reboots? (it 
does): DONE
  [stgraber] Port arkose to python3 (and make it pep8 clean): TODO
  [stgraber] Port arkose to python3-lxc: TODO
  [stgraber] Port auto-dist-upgrader to python3-lxc: TODO
  [stgraber] Tweak the tests to ensure auto-dist-upgrader on LXC gives the same 
results as on kvm: TODO
  [stgraber] Check what it'd take to make lxc work fine when 
creating/starting/stopping containers in parallel: TODO
  [stgraber] Add code to detect and install langpacks in containers (at least 
-base-en): TODO
  [stgraber] Get LXC into main: TODO

-- 
LXC work for R
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-lxc

-- 
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 1068786] Re: man lxc-create doesn't expand ${localstatedir}

2012-11-12 Thread Stéphane Graber
This appears to have been fixed in the staging branch.

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

Title:
  man lxc-create doesn't expand  ${localstatedir}

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1068786/+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 969604] Re: lxc-stop should be able to handle ephemeral containers more robustly

2012-11-12 Thread Stéphane Graber
The new implementation in python should fix that as the cleanup is now
done by an lxc stop script, so even if lxc-start-ephemeral isn't
running, the cleanup will occur.

This change will land once we rebase Ubuntu's lxc on the git staging
branch.

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

Title:
  lxc-stop should be able to handle ephemeral containers more robustly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/969604/+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 1077838] Re: qemu-nbd -r -c taints device for subsequent usage, even after -d

2012-11-12 Thread Serge Hallyn
Thanks, this still applies upstream as well.

** Changed in: qemu-kvm (Ubuntu)
   Status: New = Triaged

** Changed in: qemu-kvm (Ubuntu)
   Importance: Undecided = High

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

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

Title:
  qemu-nbd -r -c taints device for subsequent usage, even after -d

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1077838/+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 1078102] [NEW] /etc/ldap/ldap.conf missing

2012-11-12 Thread Peter Häring
Public bug reported:

Ubuntu Server 12.04

There is a file /etc/ldap.conf, where for example you can specify the
Location of Certificates for ssl/tls operation of ldap utilities like
ldapsearch. But it turns out, that (at least ldapsearch) doesn't read
/etc/ldap.conf, but /etc/ldap/ldap.conf, which is not present on the
system.

Some articles on the Web say, that /etc/ldap/ldap.conf is for the ldap 
utilites, /etc/ldap.conf for pam operation with ldap.
I did a symbolic link /etc/ldap/ldap.conf - /etc/ldap.conf. After that 
ldapsearch works with ssl/tls.
I don't know, whether pam needs a different ldap.conf, or can that symbolic 
link do a good job for most usersß

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

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

Title:
  /etc/ldap/ldap.conf missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openldap/+bug/1078102/+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-r-lxc] LXC work for R

2012-11-12 Thread Stéphane Graber
Blueprint changed by Stéphane Graber:

Work items changed:
  Work items:
  [serge-hallyn] Send user namespace delta to kernel-team ASAP: DONE
  [serge-hallyn] Post syslog namespace design wiki page: DONE
  [serge-hallyn] Send syslog namespace description to kernel-team ASAP: TODO
  [daniel-lezcano] Improved monitor notification support: TODO
  [stgraber] Fix lxc-ls (re-write using api): TODO
  [serge-hallyn] lxc-create or template option to specify userns mapping: TODO
  [serge-hallyn] push user namespace lxc delta upstream: TODO
  [serge-hallyn] add config options for loglevel and output file: TODO
  [serge-hallyn] drop lxccontainer.log default logging in api: BLOCKED
  [serge-hallyn] lxc-create - set a default log level and log file in 
/var/log/lxc/$container: TODO
  [serge-hallyn] lxc.autodev: push lxc patch upstream: INPROGRESS
  [serge-hallyn] lxc.autodev: push lxc patch into package: TODO
  [serge-hallyn] lxc.autodev: push mountall patch into package: TODO
  [serge-hallyn] list broken functionality in ubuntu container in user 
namespace: TODO
  [serge-hallyn] improve ubuntu container experience in user namespace: TODO
  [serge-hallyn] add config option for RLIMIT_NPROC in userns container: TODO
  [stgraber] add (not container) to upstart jobs which just fail: TODO
  [stgraber] write tool to pass devices into container: TODO
- [stgraber] create a separate package for templates: INPROGRESS
+ [stgraber] create a separate package for templates: DONE
  [stgraber] have lxc-create record the name of template used in container 
config file for debugging: TODO
  [stgraber] support templates outside of $templatedir (pushed to git): DONE
  [stgraber] investigate what's needed to support containers outside of 
/var/lib/lxc: TODO
  [serge-hallyn] test apparmor profile stacking; implement any lxc changes 
needed to support it: BLOCKED
  [stgraber] rebase staging branch on upstream master: DONE
  [serge-hallyn] test attach support in userns kernrel; shout if anything 
missing: TODO
  [daniel-lezcano] investigate/use http://lxc.sourceforge.net/download/procfs 
to filter /proc/{cpuinfo,meminfo,etc}: TODO
  [stgraber] investigate: does dnsmasq save mac-ip across host reboots? (it 
does): DONE
  [stgraber] Port arkose to python3 (and make it pep8 clean): TODO
  [stgraber] Port arkose to python3-lxc: TODO
  [stgraber] Port auto-dist-upgrader to python3-lxc: TODO
  [stgraber] Tweak the tests to ensure auto-dist-upgrader on LXC gives the same 
results as on kvm: TODO
  [stgraber] Check what it'd take to make lxc work fine when 
creating/starting/stopping containers in parallel: TODO
  [stgraber] Add code to detect and install langpacks in containers (at least 
-base-en): TODO
  [stgraber] Get LXC into main: TODO

-- 
LXC work for R
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-lxc

-- 
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 1044503] Re: kernel command line is not easily customizable

2012-11-12 Thread Julian Edwards
** No longer affects: maas/1.2

** Changed in: maas (Ubuntu Quantal)
   Status: New = 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/1044503

Title:
  kernel command line is not easily customizable

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1044503/+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 1057705] Re: php5-fpm crashed with SIGSEGV in munmap()

2012-11-12 Thread Launchpad Bug Tracker
*** This bug is a duplicate of bug 1056293 ***
https://bugs.launchpad.net/bugs/1056293

Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  php5-fpm crashed with SIGSEGV in munmap()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1057705/+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 1078177] [NEW] typo in /etc/default/nagios3

2012-11-12 Thread Waseem Elliot
Public bug reported:


When disabling Nagios3 at boottime? (no disables nagios3)

ENABLED=no

Restarting the nagios service to test :

service nagios3 restart

 * Restarting nagios3 monitoring daemon nagios3

  
 * Not starting Nagios3 - set ENABLED to yes in /etc/defrault/nagios3 
typo defrault.

Thanks

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: nagios3-common 3.2.3-3ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-32.51-generic 3.2.30
Uname: Linux 3.2.0-32-generic x86_64
ApportVersion: 2.0.1-0ubuntu14
Architecture: amd64
Date: Tue Nov 13 08:12:42 2012
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_ZA:en
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_ZA.UTF-8
 SHELL=/bin/bash
SourcePackage: nagios3
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug precise

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

Title:
  typo in /etc/default/nagios3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nagios3/+bug/1078177/+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 190737] Re: Hi load average using in 8.04a4 NIS/Autofs setup copied from 7.10

2012-11-12 Thread Thomas Hotz
** Changed in: tracker (Ubuntu)
   Status: New = Fix Released

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

Title:
  Hi load average using in 8.04a4 NIS/Autofs setup copied from 7.10

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