[Bug 1640978] Re: [SRU] Backport letsencrypt from bionic

2019-01-26 Thread Michael Casadevall
This is the backported patch to python-acme, as stated before, this is a
direct backport from upstream to handle compat issues, and extends the
unittests to cover the new backworks compatibility area.

mcasadevall@lighthouse:~/src/le/sru/python-acme-0.22.2/debian/patches$ cat 
fix-jose-import 
Description: Allow josepy to be imported via acme.jose
 This is a backwards compatibility fixed taken from upstream
 from the following commits:
 
https://github.com/certbot/certbot/commit/e3cb782e5992ba306de59ba96dfb6f125720cd06.patch
 
https://github.com/certbot/certbot/commit/ec297ccf72e95961586ec2382c3e3225ce578aa4.patch
 .
 python-acme (0.22.2-1ubuntu0.16.04.1~ppa4) xenial; urgency=medium
 .
   * Backport to Xenial for LE change (LP: #1640978)
Author: Michael Casadevall 
Bug-Ubuntu: https://bugs.launchpad.net/bugs/1640978

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: upstream
Bug: https://github.com/certbot/certbot/pull/6592
Forwarded: not-needed
Reviewed-By: Michael Casadevall 
Last-Update: 2019-01-11

--- python-acme-0.22.2.orig/acme/__init__.py
+++ python-acme-0.22.2/acme/__init__.py
@@ -10,3 +10,18 @@ supported version: `draft-ietf-acme-01`_
   https://github.com/ietf-wg-acme/acme/tree/draft-ietf-acme-acme-01
 
 """
+import sys
+
+# This code exists to keep backwards compatibility with people using acme.jose
+# before it became the standalone josepy package.
+#
+# It is based on
+# 
https://github.com/requests/requests/blob/1278ecdf71a312dc2268f3bfc0aabfab3c006dcf/requests/packages.py
+
+import josepy as jose
+
+for mod in list(sys.modules):
+# This traversal is apparently necessary such that the identities are
+# preserved (acme.jose.* is josepy.*)
+if mod == 'josepy' or mod.startswith('josepy.'):
+sys.modules['acme.' + mod.replace('josepy', 'jose', 1)] = 
sys.modules[mod]
--- /dev/null
+++ python-acme-0.22.2/acme/jose_test.py
@@ -0,0 +1,53 @@
+"""Tests for acme.jose shim."""
+import importlib
+import unittest
+
+class JoseTest(unittest.TestCase):
+"""Tests for acme.jose shim."""
+
+def _test_it(self, submodule, attribute):
+if submodule:
+acme_jose_path = 'acme.jose.' + submodule
+josepy_path = 'josepy.' + submodule
+else:
+acme_jose_path = 'acme.jose'
+josepy_path = 'josepy'
+acme_jose_mod = importlib.import_module(acme_jose_path)
+josepy_mod = importlib.import_module(josepy_path)
+
+self.assertIs(acme_jose_mod, josepy_mod)
+self.assertIs(getattr(acme_jose_mod, attribute), getattr(josepy_mod, 
attribute))
+
+# We use the imports below with eval, but pylint doesn't
+# understand that.
+# pylint: disable=eval-used,unused-variable
+import acme
+import josepy
+acme_jose_mod = eval(acme_jose_path)
+josepy_mod = eval(josepy_path)
+self.assertIs(acme_jose_mod, josepy_mod)
+self.assertIs(getattr(acme_jose_mod, attribute), getattr(josepy_mod, 
attribute))
+
+def test_top_level(self):
+self._test_it('', 'RS512')
+
+def test_submodules(self):
+# This test ensures that the modules in josepy that were
+# available at the time it was moved into its own package are
+# available under acme.jose. Backwards compatibility with new
+# modules or testing code is not maintained.
+mods_and_attrs = [('b64', 'b64decode',),
+  ('errors', 'Error',),
+  ('interfaces', 'JSONDeSerializable',),
+  ('json_util', 'Field',),
+  ('jwa', 'HS256',),
+  ('jwk', 'JWK',),
+  ('jws', 'JWS',),
+  ('util', 'ImmutableMap',),]
+
+for mod, attr in mods_and_attrs:
+self._test_it(mod, attr)
+
+
+if __name__ == '__main__':
+unittest.main()  # pragma: no cover

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1640978

Title:
  [SRU] Backport letsencrypt from bionic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-acme/+bug/1640978/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1640978] Re: [SRU] Backport letsencrypt from bionic

2019-01-26 Thread Michael Casadevall
After testing and further work, a revised python-acme debdiff is
attached. This includes one additional backport that allows josepy to be
imported through the acme package; this change has already been
integrated upstream, and is required to allow packages that assume
acme.jose still existed as part of the python-acme module.

** Patch added: "python-acme-3.debdiff"
   
https://bugs.launchpad.net/ubuntu/xenial/+source/python-acme/+bug/1640978/+attachment/5232667/+files/python-acme-3.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1640978

Title:
  [SRU] Backport letsencrypt from bionic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-acme/+bug/1640978/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1640978] Re: [SRU] Backport letsencrypt from bionic

2018-12-10 Thread Michael Casadevall
all
-Depends: certbot,
- ${misc:Depends}
-Description: transitional dummy package
- This is a transitional dummy package for the rename of letsencrypt to certbot.
- It can safely be removed.

Explanation: Transitional package removed due
diff -Nru python-certbot-0.23.0/debian/letsencrypt.postrm 
python-certbot-0.23.0/debian/letsencrypt.postrm
--- python-certbot-0.23.0/debian/letsencrypt.postrm 2018-03-22 
01:12:02.0 +
+++ python-certbot-0.23.0/debian/letsencrypt.postrm 1970-01-01 
00:00:00.0 +
@@ -1,41 +0,0 @@
-#!/bin/sh
-# postrm script for letsencrypt
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#*  `remove'
-#*  `purge'
-#*  `upgrade' 
-#*  `failed-upgrade' 
-#*  `abort-install'
-#*  `abort-install' 
-#*  `abort-upgrade' 
-#*  `disappear' 
-#  
-# for details, see https://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-purge)
-rm -rf /var/log/letsencrypt
-;;
-
-remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-;;
-
-*)
-echo "postrm called with unknown argument \`$1'" >&2
-exit 1
-;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0

Explaination: python-letsencrypt/letsencrypt is sticking around as a
package so the postrm script was removed.

diff -Nru python-certbot-0.23.0/debian/patches/disable-autointerface-docs 
python-certbot-0.23.0/debian/patches/disable-autointerface-docs
--- python-certbot-0.23.0/debian/patches/disable-autointerface-docs 
1970-01-01 00:00:00.0 +
+++ python-certbot-0.23.0/debian/patches/disable-autointerface-docs 
2018-11-25 16:20:44.0 +
@@ -0,0 +1,43 @@
+Description: Disables the autointerface for docs
+ The Skyphinx version in Xenial doesn't have the necessary support
+ to build all the API docs so disable it
+ .
+ python-letsencrypt (0.23.0-1ubuntu0.16.04.1~ppa1) xenial; urgency=medium
+ .
+   * Backport to Xenial (LP: #1640978)
+Author: Michael Casadevall 
+Bug-Ubuntu: https://bugs.launchpad.net/bugs/1640978
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: , 
+Bug: 
+Bug-Debian: https://bugs.debian.org/
+Bug-Ubuntu: https://launchpad.net/bugs/
+Forwarded: 
+Reviewed-By: 
+Last-Update: 2018-11-25
+
+--- python-letsencrypt-0.23.0.orig/docs/conf.py
 python-letsencrypt-0.23.0/docs/conf.py
+@@ -44,7 +44,6 @@ extensions = [
+ 'sphinx.ext.todo',
+ 'sphinx.ext.coverage',
+ 'sphinx.ext.viewcode',
+-'repoze.sphinx.autointerface',
+ ]
+ 
+ autodoc_member_order = 'bysource'
+--- python-letsencrypt-0.23.0.orig/setup.py
 python-letsencrypt-0.23.0/setup.py
+@@ -68,7 +68,6 @@ dev_extras = [
+ ]
+ 
+ docs_extras = [
+-'repoze.sphinx.autointerface',
+ # autodoc_member_order = 'bysource', autodoc_default_flags, and #4686
+ 'Sphinx >=1.0,<=1.5.6',
+ 'sphinx_rtd_theme',

Explanation for patch: repoze.sphinx.autointerface is unavailable on
Xenial; it's used to create some of the API documentation and is not
mandatory so I dropped it from the sphinx config. THe resulting docs
might be a little weird but are present.

diff -Nru python-certbot-0.23.0/debian/patches/series 
python-certbot-0.23.0/debian/patches/series
--- python-certbot-0.23.0/debian/patches/series 2018-03-22 01:12:02.0 
+
+++ python-certbot-0.23.0/debian/patches/series 2018-11-25 16:20:44.0 
+
@@ -1 +1,2 @@
 0001-remove-external-images.patch
+disable-autointerface-docs

Explanation: Adding the above patch.

diff -Nru python-certbot-0.23.0/debian/rules python-certbot-0.23.0/debian/rules
--- python-certbot-0.23.0/debian/rules  2018-04-07 03:22:04.0 +
+++ python-certbot-0.23.0/debian/rules  2018-11-25 16:20:44.0 +
@@ -2,19 +2,23 @@
 
 export PYBUILD_NAME = certbot
 
+include /usr/share/dpkg/pkg-info.mk
+
 %:
-   dh $@ --with python3,sphinxdoc --buildsystem=pybuild
+   dh $@ --with python2,sphinxdoc --buildsystem=pybuild
+
+clean: debian/control
+   dh_clean
 
 override_dh_install:
-   mkdir -p debian/certbot/usr/bin debian/certbot/etc/letsencrypt
-   mv debian/python3-certbot/usr/bin/* debian/certbot/usr/bin
-   rm -rf debian/python3-certbot/usr/bin
-   mv debian/cli.ini debian/certbot/etc/letsencrypt/cli.ini
-   http_proxy='127.0.0.1:9' \
-   https_proxy='127.0.0.1:9' \
+   mkdir -p debian/certbot/usr/bin
+   mv debian/python-certbot/usr/bin/* debian/certbot/usr/bin
+   rm -rf debian/python-certbot/usr/bin
+   PYTHONPATH=. PATH=../debian/certbot/usr/bin:${PATH} \
+   

[Bug 1640978] Re: [SRU] Backport letsencrypt from bionic

2018-12-10 Thread Michael Casadevall
Breakdown of changes for python ACME; I caught a mistake in the previous
debdiff so reuploading a revised one with this comment:


diff -Nru python-acme-0.22.2/debian/compat python-acme-0.22.2/debian/compat
--- python-acme-0.22.2/debian/compat2018-03-17 15:24:35.0 +
+++ python-acme-0.22.2/debian/compat2018-11-25 15:09:41.0 +
@@ -1 +1 @@
-11
+9

Explaination: debhelper version change

diff -Nru python-acme-0.22.2/debian/control python-acme-0.22.2/debian/control
--- python-acme-0.22.2/debian/control   2018-03-17 15:24:35.0 +
+++ python-acme-0.22.2/debian/control   2018-11-25 15:09:41.0 +
@@ -1,13 +1,14 @@
 Source: python-acme
 Section: python
 Priority: optional
-Maintainer: Debian Let's Encrypt 
+Maintainer: Ubuntu Developers 
+XSBC-Original-Maintainer: Debian Let's Encrypt 

 Uploaders: Harlan Lieberman-Berg ,
Francois Marier 
-Build-Depends: debhelper (>= 11~),
+Build-Depends: debhelper (>= 9~),
dh-python,
python-all (>= 2.7),
-   python-cryptography (>= 1.3.4),
+   python-cryptography,
python-docutils,
python-josepy,
python-mock,

Explanation: This was an incorrect dependency in bionic; acme works
proeprly against cryotpgraphy 1.2 which was shipped in Xenial.

@@ -19,7 +20,7 @@
python-six (>= 1.9),
python-tz,
python3 (>= 3.4),
-   python3-cryptography (>= 1.3.4),
+   python3-cryptography,
python3-docutils,
python3-josepy,
python3-mock,

Explanation: See above.

diff -Nru python-acme-0.22.2/debian/rules python-acme-0.22.2/debian/rules
--- python-acme-0.22.2/debian/rules 2018-03-17 15:24:35.0 +
+++ python-acme-0.22.2/debian/rules 2018-11-25 15:09:30.0 +
@@ -7,11 +7,10 @@
 
 override_dh_auto_build:
dh_auto_build
-   PYTHONPATH=. \
-   http_proxy='127.0.0.1:9' \
-   https_proxy='127.0.0.1:9' \
-   sphinx-build -N -bhtml docs/ build/html
+   PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx-build -N -bhtml docs/ 
build/html
 
 override_dh_auto_install:
dh_auto_install
find $(CURDIR)/debian/ -type d -name testdata -print0 | xargs -0 rm -rf 
'{}' \;

Explaination: I reused the rules from the existing python-acme version
in Trusty, dropping https_proxy. This may not be necessary TBH.

** Patch added: "python-acme-2.debdiff"
   
https://bugs.launchpad.net/ubuntu/xenial/+source/python-acme/+bug/1640978/+attachment/5220891/+files/python-acme-2.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1640978

Title:
  [SRU] Backport letsencrypt from bionic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-acme/+bug/1640978/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1640978] Re: [SRU] Backport letsencrypt from bionic

2018-12-10 Thread Michael Casadevall
Breakdown of josepy for SRU:

josepy was split from python-acme, and is a NEW package going into
Trusty. This is a straight backport of the bionic packaging.

--- python-josepy-1.1.0/debian/compat   2018-04-15 20:45:24.0 +
+++ python-josepy-1.1.0/debian/compat   2018-11-23 19:55:13.0 +
@@ -1 +1 @@
-11
+9
diff -Nru python-josepy-1.1.0/debian/control python-josepy-1.1.0/debian/control
--- python-josepy-1.1.0/debian/control  2018-04-15 20:45:24.0 +
+++ python-josepy-1.1.0/debian/control  2018-11-23 19:55:13.0 +
@@ -1,9 +1,10 @@
 Source: python-josepy
 Section: python
 Priority: optional
-Maintainer: Debian Let's Encrypt 
+Maintainer: Ubuntu Developers 
+XSBC-Original-Maintainer: Debian Let's Encrypt 

 Uploaders: Harlan Lieberman-Berg 
-Build-Depends: debhelper (>= 11~),
+Build-Depends: debhelper (>= 9~),
   dh-python,
   python (>= 2.7),
   python-cryptography (>= 0.8),
diff -Nru python-josepy-1.1.0/debian/rules python-josepy-1.1.0/debian/rules

Explanation: Debhelper 9 was the shipped version in trusty so changes to
dependencies to work with it were required.

--- python-josepy-1.1.0/debian/rules2018-04-15 20:45:24.0 +
+++ python-josepy-1.1.0/debian/rules2018-11-23 19:55:13.0 +
@@ -17,6 +17,6 @@
find $(CURDIR)/debian/ -type d -name testdata -print0 | xargs -0 rm -rf 
'{}' \;
rm -f $(CURDIR)/debian/python*-josepy/usr/bin/jws
 
-override_dh_installdocs:
-   dh_installdocs --doc-main-package=python-josepy-doc -p python-josepy-doc
-   dh_installdocs -p python-josepy -p python3-josepy
+#override_dh_installdocs:
+#  dh_installdocs --doc-main-package=python-josepy-doc -p python-josepy-doc
+#  dh_installdocs -p python-josepy -p python3-josepy

Explanation: installdocs doesn't support -p on Trusty which is used to
create symlinks. This behavior mimics the way the docs packages were
installed on Xenial for the existing packages; documentation still ends
up properly in the -doc package (checked manually).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1640978

Title:
  [SRU] Backport letsencrypt from bionic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-acme/+bug/1640978/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1640978] Re: [SRU] Backport letsencrypt from bionic

2018-12-09 Thread Michael Casadevall
** Patch added: "python-certbot.debdiff"
   
https://bugs.launchpad.net/ubuntu/xenial/+source/python-acme/+bug/1640978/+attachment/5220644/+files/python-certbot.debdiff

** Changed in: python-letsencrypt-apache (Ubuntu Xenial)
 Assignee: (unassigned) => Michael Casadevall (mcasadevall)

** Changed in: python-certbot-apache (Ubuntu Xenial)
Milestone: None => xenial-updates

** Changed in: python-certbot (Ubuntu Xenial)
Milestone: None => xenial-updates

** Changed in: python-acme (Ubuntu Xenial)
Milestone: None => xenial-updates

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1640978

Title:
  [SRU] Backport letsencrypt from bionic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-acme/+bug/1640978/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1640978] Re: [SRU] Backport letsencrypt from bionic

2018-12-09 Thread Michael Casadevall
** Patch added: "python-certbot-apache.debdiff"
   
https://bugs.launchpad.net/ubuntu/xenial/+source/python-acme/+bug/1640978/+attachment/5220646/+files/python-certbot-apache.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1640978

Title:
  [SRU] Backport letsencrypt from bionic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-acme/+bug/1640978/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1640978] Re: [SRU] Backport letsencrypt 0.14.2

2018-12-09 Thread Michael Casadevall
Did some major cleanup of this bug. Debdiffs attached for review.

In general, the primary change for the backport was to modify the
package to build against Python 2 instead of Python 3; one code change
was needed in certbot to disable API documentation as the necessary
sphinx module is not available. We're still sorting out the letsencrypt
compat shims but I wanted to get these debdiffs reviewed as they are
final or very close to.

** No longer affects: python-acme (Ubuntu Yakkety)

** No longer affects: python-acme (Ubuntu Zesty)

** Changed in: python-acme (Ubuntu Xenial)
   Status: Fix Committed => In Progress

** Changed in: python-acme (Ubuntu Xenial)
 Assignee: (unassigned) => Michael Casadevall (mcasadevall)

** No longer affects: python-certbot (Ubuntu Yakkety)

** No longer affects: python-certbot (Ubuntu Zesty)

** Changed in: python-certbot (Ubuntu Xenial)
   Status: Fix Committed => In Progress

** Changed in: python-certbot (Ubuntu Xenial)
 Assignee: (unassigned) => Michael Casadevall (mcasadevall)

** No longer affects: python-certbot-apache (Ubuntu Yakkety)

** No longer affects: python-certbot-apache (Ubuntu Zesty)

** Changed in: python-certbot-apache (Ubuntu Xenial)
   Status: Fix Committed => In Progress

** Changed in: python-certbot-apache (Ubuntu Xenial)
 Assignee: (unassigned) => Michael Casadevall (mcasadevall)

** No longer affects: python-certbot-nginx (Ubuntu Yakkety)

** No longer affects: python-certbot-nginx (Ubuntu Zesty)

** Changed in: python-certbot-nginx (Ubuntu Xenial)
 Assignee: (unassigned) => Michael Casadevall (mcasadevall)

** Changed in: python-certbot-nginx (Ubuntu Xenial)
   Importance: Undecided => High

** Changed in: python-certbot-nginx (Ubuntu Xenial)
Milestone: None => xenial-updates

** Changed in: python-certbot-nginx (Ubuntu Xenial)
   Status: Fix Committed => In Progress

** Changed in: python-letsencrypt (Ubuntu Xenial)
   Importance: Undecided => High

** Changed in: python-letsencrypt (Ubuntu Xenial)
Milestone: None => xenial-updates

** Changed in: python-letsencrypt (Ubuntu Xenial)
     Assignee: (unassigned) => Michael Casadevall (mcasadevall)

** Changed in: python-letsencrypt (Ubuntu Xenial)
   Status: Fix Committed => In Progress

** Changed in: python-letsencrypt-apache (Ubuntu Xenial)
   Importance: Undecided => High

** Changed in: python-letsencrypt-apache (Ubuntu Xenial)
   Status: Fix Committed => In Progress

** Changed in: python-letsencrypt-apache (Ubuntu Xenial)
Milestone: None => xenial-updates

** Changed in: python-certbot-apache (Ubuntu Xenial)
   Importance: Undecided => High

** Changed in: python-certbot (Ubuntu Xenial)
   Importance: Undecided => High

** Changed in: python-acme (Ubuntu Xenial)
   Importance: Undecided => High

** Summary changed:

- [SRU] Backport letsencrypt 0.14.2
+ [SRU] Backport letsencrypt from bionic

** Tags removed: verification-needed-zesty

** Patch added: "python-acme.debdiff"
   
https://bugs.launchpad.net/ubuntu/xenial/+source/python-acme/+bug/1640978/+attachment/5220643/+files/python-acme.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1640978

Title:
  [SRU] Backport letsencrypt from bionic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-acme/+bug/1640978/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1640978] Re: [SRU] Backport letsencrypt from bionic

2018-12-09 Thread Michael Casadevall
These patches handle straight backports; and are debdiffs from the
bionic versions currently being shipped. For the letsencrypt shims,
these should be handled as NEW packages and not as a debdiff as they
won't exist in bionic and only exist for compat reasons. We're resolving
some final issues but this should let Robbie to start looking at it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1640978

Title:
  [SRU] Backport letsencrypt from bionic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-acme/+bug/1640978/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1640978] Re: [SRU] Backport letsencrypt from bionic

2018-12-09 Thread Michael Casadevall
** Patch added: "python-josepy.debdiff"
   
https://bugs.launchpad.net/ubuntu/xenial/+source/python-acme/+bug/1640978/+attachment/5220645/+files/python-josepy.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1640978

Title:
  [SRU] Backport letsencrypt from bionic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-acme/+bug/1640978/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1250930] Re: [d-i] merge in overlay archive support

2013-11-13 Thread Michael Casadevall
** No longer affects: libdebian-installer (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1250930

Title:
  [d-i] merge in overlay archive support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt-setup/+bug/1250930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1250930] [NEW] [d-i] merge in overlay archive support

2013-11-13 Thread Michael Casadevall
Public bug reported:

In PES, we've been developing a set of patches that allow d-i to pull
udebs from multiple sources, allowing us to build normal d-i images and
do ARM enablements completely out of a PPA. I'd like to get this support
landed so we have to carry a smaller delta, and perhaps allow others to
use this for out-of-archive enablements. I'm currently forward-porting
everything to trusty; this code has been in use for the slayton
enablement for the last several months.

I will have a test archive up to test functionality, and want to make
sure my code looks sane before uploading.

** Affects: apt-setup (Ubuntu)
 Importance: High
 Assignee: Michael Casadevall (mcasadevall)
 Status: New

** Affects: base-installer (Ubuntu)
 Importance: High
 Assignee: Michael Casadevall (mcasadevall)
 Status: New

** Affects: net-retriever (Ubuntu)
 Importance: High
 Assignee: Michael Casadevall (mcasadevall)
 Status: New

** Also affects: base-installer (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: apt-setup (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: net-retriever (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: net-retriever (Ubuntu)
   Importance: Undecided = High

** Changed in: base-installer (Ubuntu)
   Importance: Undecided = High

** Changed in: apt-setup (Ubuntu)
   Importance: Undecided = High

** Changed in: apt-setup (Ubuntu)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: base-installer (Ubuntu)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: net-retriever (Ubuntu)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: base-installer (Ubuntu)
Milestone: None = ubuntu-14.04-beta-1

** Changed in: apt-setup (Ubuntu)
Milestone: None = ubuntu-14.04-beta-1

** Changed in: net-retriever (Ubuntu)
Milestone: None = ubuntu-14.04-beta-1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1250930

Title:
  [d-i] merge in overlay archive support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt-setup/+bug/1250930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1250930] Re: [d-i] merge in overlay archive support

2013-11-13 Thread Michael Casadevall
** Branch linked: lp:~mcasadevall/apt-setup/overlay-archive-support

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1250930

Title:
  [d-i] merge in overlay archive support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt-setup/+bug/1250930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1067934] Re: spends 10+ minutes deduplicating Package lists

2013-07-14 Thread Michael Casadevall
** Changed in: net-retriever (Ubuntu)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: net-retriever (Ubuntu)
   Importance: Undecided = High

** Also affects: net-retriever (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: net-retriever (Ubuntu Quantal)
   Importance: Undecided
   Status: New

** Also affects: net-retriever (Ubuntu Saucy)
   Importance: High
 Assignee: Michael Casadevall (mcasadevall)
   Status: Confirmed

** Also affects: net-retriever (Ubuntu Raring)
   Importance: Undecided
   Status: New

** Changed in: net-retriever (Ubuntu Precise)
   Status: New = Confirmed

** Changed in: net-retriever (Ubuntu Precise)
   Importance: Undecided = High

** Changed in: net-retriever (Ubuntu Raring)
   Importance: Undecided = High

** Changed in: net-retriever (Ubuntu Raring)
   Status: New = Confirmed

** Changed in: net-retriever (Ubuntu Raring)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: net-retriever (Ubuntu Precise)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: net-retriever (Ubuntu Precise)
Milestone: None = ubuntu-12.04.3

** Changed in: net-retriever (Ubuntu Raring)
Milestone: None = raring-updates

** Changed in: net-retriever (Ubuntu Saucy)
Milestone: None = ubuntu-13.08

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1067934

Title:
  spends 10+ minutes deduplicating Package lists

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1067934] Re: spends 10+ minutes deduplicating Package lists

2013-07-14 Thread Michael Casadevall
** Also affects: anna (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: anna (Ubuntu Saucy)
   Importance: Undecided = High

** Changed in: anna (Ubuntu Saucy)
   Status: New = Confirmed

** Changed in: anna (Ubuntu Saucy)
Milestone: None = ubuntu-13.08

** Changed in: anna (Ubuntu Saucy)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: anna (Ubuntu Raring)
   Importance: Undecided = High

** Changed in: anna (Ubuntu Raring)
   Status: New = Confirmed

** Changed in: anna (Ubuntu Raring)
Milestone: None = raring-updates

** Changed in: anna (Ubuntu Raring)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: anna (Ubuntu Precise)
   Importance: Undecided = High

** Changed in: anna (Ubuntu Precise)
   Status: New = Confirmed

** Changed in: anna (Ubuntu Precise)
Milestone: None = ubuntu-12.04.3

** Changed in: anna (Ubuntu Precise)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1067934

Title:
  spends 10+ minutes deduplicating Package lists

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1067934] Re: spends 10+ minutes deduplicating Package lists

2013-06-22 Thread Michael Casadevall
I've encountered this issue on armhf across multiple series. This bug
seems to come and go, as it currently only happens for my on x86-based
systems, and I'm not currently encountering it on ARM, but the reverse
has been true for me as well.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1067934

Title:
  spends 10+ minutes deduplicating Package lists

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1087488] Re: [SRU] hv-kvp-daemon-init needs to include IP Inection scripts and LBM HV module support

2012-12-14 Thread Michael Casadevall
** Also affects: hv-kvp-daemon-init (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: hv-kvp-daemon-init (Ubuntu Quantal)
   Importance: Undecided
   Status: New

** Also affects: hv-kvp-daemon-init (Ubuntu Raring)
   Importance: Critical
 Assignee: David Medberry (med)
   Status: New

** Changed in: hv-kvp-daemon-init (Ubuntu Raring)
   Status: New = Fix Released

** Changed in: hv-kvp-daemon-init (Ubuntu Raring)
   Importance: Critical = High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1087488

Title:
  [SRU] hv-kvp-daemon-init needs to include IP Inection scripts and LBM
  HV module support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/hv-kvp-daemon-init/+bug/1087488/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1078106] Re: [MIR] hv-kvp-daemon-init

2012-12-14 Thread Michael Casadevall
I've cleaned all the lintian errors as of right now including the
update-rc.d one and fixed the upstart behavior. I didn't catch the
maintainer issue, but I'll get it fixed in bzr so it will be corrected
on the next upload. I also need promotion in raring/quantal-proposed
/precise-proposed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1078106

Title:
  [MIR] hv-kvp-daemon-init

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/hv-kvp-daemon-init/+bug/1078106/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1077148] Re: [SRU] Package/update walinuxagent version 1.2

2012-12-12 Thread Michael Casadevall
** Also affects: walinuxagent (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: walinuxagent (Ubuntu Quantal)
   Importance: Undecided
   Status: New

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

Title:
  [SRU] Package/update walinuxagent version 1.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/walinuxagent/+bug/1077148/+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 1077148] Re: [SRU] Package/update walinuxagent version 1.2

2012-12-12 Thread Michael Casadevall
** Also affects: walinuxagent (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: walinuxagent (Ubuntu Quantal)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1077148

Title:
  [SRU] Package/update walinuxagent version 1.2

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1067929] Re: maas-region-celeryd connects to the wrong queue.

2012-10-24 Thread Michael Casadevall
The uploading fix appears to be incorrect, as I installed the proposed
update and the issue was not resolved. Marking verification-failed.

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

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

Title:
  maas-region-celeryd connects to the wrong queue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1067929/+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 1067929] Re: maas-region-celeryd connects to the wrong queue.

2012-10-24 Thread Michael Casadevall
(I wasn't specific, the SRU upload does indeed correct the issues in the
queues line, but celery does not properly connect which is the point of
this SRU.)

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

Title:
  maas-region-celeryd connects to the wrong queue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1067929/+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 1067929] Re: maas-region-celeryd connects to the wrong queue.

2012-10-24 Thread Michael Casadevall
The uploading fix appears to be incorrect, as I installed the proposed
update and the issue was not resolved. Marking verification-failed.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1067929

Title:
  maas-region-celeryd connects to the wrong queue.

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1067929] Re: maas-region-celeryd connects to the wrong queue.

2012-10-24 Thread Michael Casadevall
(I wasn't specific, the SRU upload does indeed correct the issues in the
queues line, but celery does not properly connect which is the point of
this SRU.)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1067929

Title:
  maas-region-celeryd connects to the wrong queue.

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1040557] Re: UEFI boot live-usb bricks SAMSUNG 530U3C, np700z5c laptop

2012-10-12 Thread Michael Casadevall
** Also affects: shim (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: shim (Ubuntu Quantal)
   Importance: Undecided
   Status: New

** Changed in: shim (Ubuntu Quantal)
   Status: New = Confirmed

** Changed in: shim (Ubuntu Quantal)
   Importance: Undecided = Critical

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1040557

Title:
  UEFI boot live-usb bricks SAMSUNG 530U3C,np700z5c laptop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-cdimage/+bug/1040557/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1056488] Re: [UIFe] Messaging menu title icons are indistinct

2012-10-03 Thread Michael Casadevall
Reverted upload accepted.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1056488

Title:
  [UIFe] Messaging menu title icons are indistinct

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/humanity-icon-theme/+bug/1056488/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1056381] Re: [FFe: spice] error on x startup

2012-10-03 Thread Michael Casadevall
I've granted a FFE on this. I've reviewed the code changes in all the
packages, and is fairly low and the current amount of breakage is quite
high. In review of the code,  given the vast majority of code merely
adds new enums and structs I believe risk of regression is acceptable.

Packages released from the queue.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1056381

Title:
  [FFe: spice] error on x startup

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 935516] Re: genshi version 0.6-2 FTBFS on i386 in precise

2012-10-02 Thread Michael Casadevall
Did a local test build, and the package in unapproved appears to indeed
fix this. Approved through the queue.

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

Title:
  genshi version 0.6-2 FTBFS on i386 in precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/genshi/+bug/935516/+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 1056595] Re: Messages indicator one pixel wide

2012-10-02 Thread Michael Casadevall
Looked at the package in the queue, and bug report. This looks sane.
Accepted.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1056595

Title:
  Messages indicator one pixel wide

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-messages/+bug/1056595/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1042824] Re: Doesn't include indicator-messages items anymore since the GMenuModel-port

2012-10-02 Thread Michael Casadevall
Bugfix looks sane. Kicked it through the queue.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1042824

Title:
  Doesn't include indicator-messages items anymore since the GMenuModel-
  port

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-appmenu/+bug/1042824/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 935516] Re: genshi version 0.6-2 FTBFS on i386 in precise

2012-10-02 Thread Michael Casadevall
Did a local test build, and the package in unapproved appears to indeed
fix this. Approved through the queue.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/935516

Title:
  genshi version 0.6-2 FTBFS on i386 in precise

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1056488] Re: [UIFe] Messaging menu title icons are indistinct

2012-10-02 Thread Michael Casadevall
Approved through the queue.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1056488

Title:
  [UIFe] Messaging menu title icons are indistinct

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1055326] Re: During installation, flashplugin fails to install with: IOError: [Errno socket error] [Errno -2] Name or service not known

2012-09-26 Thread Michael Casadevall
I haven't independently confirmed this bug, but it seems to me that DNS
resolution isn't properly working. The file referred to does exist on
the URL that its supposed to.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1055326

Title:
  During installation, flashplugin fails to install with: IOError:
  [Errno socket error] [Errno -2] Name or service not known

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 605436] Re: kpartx fails to map partitions (device-mapper: resume ioctl failed: Invalid argument)

2012-09-24 Thread Michael Casadevall
** Also affects: multipath-tools (Ubuntu Quantal)
   Importance: Medium
 Assignee: Serge Hallyn (serge-hallyn)
   Status: Triaged

** Also affects: multipath-tools (Ubuntu Precise)
   Importance: Undecided
   Status: New

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

Title:
  kpartx fails to map partitions (device-mapper: resume ioctl failed:
  Invalid argument)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/605436/+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 781411] Re: slirpvde: Massive memory leak

2012-09-24 Thread Michael Casadevall
** Also affects: vde2 (Ubuntu Lucid)
   Importance: Undecided
   Status: New

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

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

** Also affects: vde2 (Ubuntu Quantal)
   Importance: High
   Status: Triaged

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/781411

Title:
  slirpvde: Massive memory leak

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1036856] Re: Unable to transfer files over bluetooth from an Android device using Nautilus

2012-09-24 Thread Michael Casadevall
Not sure this is valid. Most Android devices don'tsupport OBEX out of
the box. When I installed an OBEX server on the phone such as Bluetooth
File Transfer from the app store, this seems to work.

Marking incomplete.

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

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1036856

Title:
  Unable to transfer files over bluetooth from an Android device using
  Nautilus

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 790835] Re: [Asus EeePC 1001PXD] Wireless hotkey does not disable bluetooth

2012-09-24 Thread Michael Casadevall
** Also affects: linux (Ubuntu Quantal)
   Importance: Medium
 Assignee: Alex Hung (alexhung)
   Status: In Progress

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/790835

Title:
  [Asus EeePC 1001PXD] Wireless hotkey does not disable bluetooth

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 605436] Re: kpartx fails to map partitions (device-mapper: resume ioctl failed: Invalid argument)

2012-09-24 Thread Michael Casadevall
** Also affects: multipath-tools (Ubuntu Quantal)
   Importance: Medium
 Assignee: Serge Hallyn (serge-hallyn)
   Status: Triaged

** Also affects: multipath-tools (Ubuntu Precise)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/605436

Title:
  kpartx fails to map partitions (device-mapper: resume ioctl failed:
  Invalid argument)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/605436/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1000549] Re: [X101CH] Opening display lid fails to wake system up from S3

2012-09-24 Thread Michael Casadevall
** Also affects: linux (Ubuntu Quantal)
   Importance: Medium
 Assignee: AceLan Kao (acelankao)
   Status: In Progress

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1000549

Title:
  [X101CH] Opening display lid fails to wake system up from S3

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 963685] Re: Please consider backporting killable request_module() patchset

2012-09-24 Thread Michael Casadevall
** Also affects: linux (Ubuntu Quantal)
   Importance: Undecided
 Assignee: Tim Gardner (timg-tpi)
   Status: Fix Released

** Also affects: linux-fsl-imx51 (Ubuntu Quantal)
   Importance: Undecided
   Status: New

** Also affects: linux-mvl-dove (Ubuntu Quantal)
   Importance: Undecided
   Status: New

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

** Also affects: linux-ti-omap4 (Ubuntu Quantal)
   Importance: Undecided
   Status: Fix Released

** Also affects: linux-lts-backport-maverick (Ubuntu Quantal)
   Importance: Undecided
   Status: New

** Also affects: linux-lts-backport-natty (Ubuntu Quantal)
   Importance: Undecided
   Status: New

** Also affects: linux-lts-backport-oneiric (Ubuntu Quantal)
   Importance: Undecided
   Status: New

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/963685

Title:
  Please consider backporting killable request_module() patchset

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 791588] Re: no idmapd for nfs4-clients

2012-09-24 Thread Michael Casadevall
** Also affects: nfs-utils (Ubuntu Quantal)
   Importance: Medium
   Status: Triaged

** Also affects: nfs-utils (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: nfs-utils (Ubuntu Oneiric)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/791588

Title:
  no idmapd for nfs4-clients

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/791588/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1052278] Re: [ASUS][X501U][X401U] Fn + F8 display mode switch hot key will switch the mode 2 times by one single key stroke

2012-09-24 Thread Michael Casadevall
** Also affects: linux (Ubuntu Quantal)
   Importance: Undecided
 Assignee: AceLan Kao (acelankao)
   Status: In Progress

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1052278

Title:
  [ASUS][X501U][X401U] Fn + F8 display mode switch hot key will switch
  the mode 2 times by one single key stroke

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1035030] Re: Use 2 3 friendly tuple argument unpacking

2012-09-24 Thread Michael Casadevall
** Also affects: ubuntu-sso-client (Ubuntu R-series)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1035030

Title:
  Use 2  3 friendly tuple argument unpacking

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-sso-client/+bug/1035030/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1002170] Re: system halted while idled for a long time.

2012-09-24 Thread Michael Casadevall
** Also affects: linux (Ubuntu Quantal)
   Importance: Medium
 Assignee: Jesse Sung (wenchien)
   Status: Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1002170

Title:
  system halted while idled for a long time.

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 918167] Re: missing ruby bindings

2012-09-24 Thread Michael Casadevall
** Also affects: libguestfs (Ubuntu Quantal)
   Importance: Undecided
   Status: New

** Changed in: libguestfs (Ubuntu Quantal)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/918167

Title:
  missing ruby bindings

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 408903] Re: Does not handle microphone mute button (KEY_MICMUTE)

2012-09-24 Thread Michael Casadevall
** Also affects: udev (Ubuntu R-series)
   Importance: Undecided
   Status: New

** Also affects: xserver-xorg-input-evdev (Ubuntu R-series)
   Importance: Undecided
   Status: New

** Also affects: gnome-settings-daemon (Ubuntu R-series)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/408903

Title:
  Does not handle microphone mute button (KEY_MICMUTE)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/408903/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1000146] Re: [ASUS X101CH and 1015CX] the hotkey to turn on/off the display is not working

2012-09-24 Thread Michael Casadevall
** Also affects: linux (Ubuntu Quantal)
   Importance: Medium
 Assignee: AceLan Kao (acelankao)
   Status: In Progress

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

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1000146

Title:
  [ASUS X101CH and 1015CX] the hotkey to turn on/off the display is not
  working

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 885991] Re: no window manager on second screen for dual head mode

2012-09-24 Thread Michael Casadevall
Marking as incomplete as this is for 11.10, and no confirmation ont his
bug.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/885991

Title:
  no window manager on second screen for dual head mode

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 606238] Re: synaptic touchpad not recognized on dell latitude e6510 and others

2012-09-24 Thread Michael Casadevall
** Also affects: linux (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Quantal)
   Importance: Low
   Status: In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/606238

Title:
  synaptic touchpad not recognized on dell latitude e6510 and others

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1004018] Re: Add highbank images

2012-07-18 Thread Michael Casadevall
** Also affects: flash-kernel (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: flash-kernel (Ubuntu Quantal)
   Status: New = Fix Released

** Changed in: flash-kernel (Ubuntu Precise)
   Status: New = In Progress

** Changed in: flash-kernel (Ubuntu Precise)
   Importance: Undecided = High

** Changed in: flash-kernel (Ubuntu Precise)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: flash-kernel (Ubuntu Precise)
Milestone: None = ubuntu-12.04.1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1004018

Title:
  Add highbank images

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1026061] [NEW] [highbank] intermittent hangs on reboot with latest precise kernel

2012-07-18 Thread Michael Casadevall
Public bug reported:

During testing of the precise d-i image, I've noticed that the current
kernel appears to intermittently hang on reboots, and on occasion,
appears to take the BMC with it.

ubuntu@c01:~$ ipmitool -H *redacted* -U *redacted* -P *redacted* power reset
Error: Unable to establish LAN session
Unable to set Chassis Power Control to Reset

Steps to reproduce:
1. Install latest highbank precise kernel
2. Reboot until system hangs on Restarting system.

** Affects: linux (Ubuntu)
 Importance: High
 Status: Incomplete


** Tags: precise

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1026061

Title:
  [highbank] intermittent hangs on reboot with latest precise kernel

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1004018] Re: Add highbank images

2012-07-18 Thread Michael Casadevall
Uploading installer components right now, everything seems to work, but
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1026061
(occassional hangs on reboot) is making my life difficult to test. d-i
will require that all other bits are built and published in proposed
before it won't FTBFS.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1004018

Title:
  Add highbank images

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1004018] Re: Add highbank images

2012-07-18 Thread Michael Casadevall
** Patch added: f-k-highbank.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1004018/+attachment/3227045/+files/f-k-highbank.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1004018

Title:
  Add highbank images

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1004018] Re: Add highbank images

2012-07-18 Thread Michael Casadevall
** Also affects: base-installer (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: base-installer (Ubuntu Quantal)
   Status: New = Fix Released

** Changed in: base-installer (Ubuntu Precise)
   Importance: Undecided = High

** Changed in: base-installer (Ubuntu Precise)
   Status: New = In Progress

** Changed in: base-installer (Ubuntu Precise)
Milestone: None = ubuntu-12.04.1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1004018

Title:
  Add highbank images

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1004018] Re: Add highbank images

2012-07-18 Thread Michael Casadevall
** Also affects: libdebian-installer (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1004018

Title:
  Add highbank images

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1004018] Re: Add highbank images

2012-07-18 Thread Michael Casadevall
All d-i support packages uploaded and sitting in the queue. Once they're
accepted into proposed, I'll make sure d-i works properly building my
highbank patches and upload.

** Changed in: libdebian-installer (Ubuntu Quantal)
   Status: New = Fix Released

** Changed in: libdebian-installer (Ubuntu Precise)
   Importance: Undecided = High

** Changed in: libdebian-installer (Ubuntu Precise)
   Status: New = In Progress

** Changed in: libdebian-installer (Ubuntu Precise)
Milestone: None = ubuntu-12.04.1

** Changed in: libdebian-installer (Ubuntu Precise)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1004018

Title:
  Add highbank images

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1004018] Re: Add highbank images

2012-06-01 Thread Michael Casadevall
** Also affects: debian-installer (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: debian-installer (Ubuntu Quantal)
   Importance: Wishlist
   Status: Confirmed

** Changed in: debian-installer (Ubuntu Precise)
   Status: New = Triaged

** Changed in: debian-installer (Ubuntu Precise)
   Importance: Undecided = High

** Changed in: debian-installer (Ubuntu Precise)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: debian-installer (Ubuntu Precise)
Milestone: None = ubuntu-12.04.1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1004018

Title:
  Add highbank images

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1004011] Re: Add support for highbank in flash-kernel

2012-06-01 Thread Michael Casadevall
** Also affects: flash-kernel (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Changed in: flash-kernel (Ubuntu Precise)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: flash-kernel (Ubuntu Precise)
Milestone: None = ubuntu-12.04.1

** Changed in: flash-kernel (Ubuntu Precise)
   Importance: Undecided = High

** Changed in: flash-kernel (Ubuntu Precise)
   Status: New = Triaged

** Also affects: flash-kernel (Ubuntu Quantal)
   Importance: Wishlist
 Assignee: Robie Basak (racb)
   Status: Triaged

** Changed in: flash-kernel (Ubuntu Quantal)
Milestone: None = quantal-alpha-1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1004011

Title:
  Add support for highbank in flash-kernel

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985737] [NEW] Tasks selected in oem-config are downloaded, but not installed, or configured ...

2012-04-19 Thread Michael Casadevall
Public bug reported:

When doing manual testing of omap4, with internet available (to work
around #985280), packages are downloaded, but not installed or
configured. I can't find the downloaded debs anywhere, the selected
tasks are not installed (tasks selected were SSH Server, LAMP, and
PostgreSQL), and no debconf prompts were displayed. This is a release-
critical bug.

Steps to Reproduce:
1. Do normal installation of armhf+omap4
2. Select any tasks in tasksel
3. Conclude the installation
4. Confirm that resulting packages are not installed

Expected Results:
1. Tasks installed and debconf prompts displayed

** Affects: tasksel (Ubuntu)
 Importance: High
 Status: New

** Changed in: tasksel (Ubuntu)
   Importance: Undecided = High

** Changed in: tasksel (Ubuntu)
Milestone: None = ubuntu-12.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985737

Title:
  Tasks selected in oem-config are downloaded, but not installed, or
  configured ...

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 819900] Re: package pool implementation needs to update apt

2012-04-19 Thread Michael Casadevall
It should be noted that i386 suffers the same problem; no network
install, after installation, no package lists are available beyond what
is installed. This needs to be fixed in the installer, and not in the
image build system

 Running tasksel on x86 after an offline installation only shows tasks
for packages manually installed until apt-get update is run manually.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/819900

Title:
  package pool implementation needs to update apt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/livecd-rootfs/+bug/819900/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985737] Re: Tasks selected in oem-config are downloaded, but not installed, or configured ...

2012-04-19 Thread Michael Casadevall
I actually think tasksel is actually completely broken on armhf+omap4 at
this point. Running tasksel after manually updating packages just fails
with tasksel: aptitude failed (100).

Running tasksel on x86 after installation seems to mostly work,but I
found a separate bug related to that which I'll file seperately.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985737

Title:
  Tasks selected in oem-config are downloaded, but not installed, or
  configured ...

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985737] Re: Tasks selected in oem-config are downloaded, but not installed, or configured ...

2012-04-19 Thread Michael Casadevall
I think I located the problem. It seems when a file:// entry is in
sources.list, Tasks no longer show up properly in apt-cache show, even
if ports.ubuntu.com is in the file list.  Removing the file entry, and
rerunning apt-get update allows tasksel to properly work. While the file
entry was in place, commands to install seeds such as apt-get install
openssh-server^ simply failed with package not found.

** Description changed:

  When doing manual testing of omap4, with internet available (to work
  around #985280), packages are downloaded, but not installed or
  configured. I can't find the downloaded debs anywhere, the selected
  tasks are not installed (tasks selected were SSH Server, LAMP, and
  PostgreSQL), and no debconf prompts were displayed. This is a release-
  critical bug.
  
  Steps to Reproduce:
  1. Do normal installation of armhf+omap4
  2. Select any tasks in tasksel
  3. Conclude the installation
  4. Confirm that resulting packages are not installed
  
  Expected Results:
  1. Tasks installed and debconf prompts displayed
+ 
+ Addition: The file:// entry in sources.list seems to be responsible for
+ the breakage. While the preinstall pool is in /etc/apt/sources.list,
+ tasksel will fail to install any and all tasks, as well as trying to
+ install tasks via apt-get such as apt-get install openssh-server^

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985737

Title:
  Tasks selected in oem-config are downloaded, but not installed, or
  configured ...

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/livecd-rootfs/+bug/985737/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985737] Re: Tasks selected in oem-config are downloaded, but not installed, or configured ...

2012-04-19 Thread Michael Casadevall
apt-cache show output without preinstalled pool:


ubuntu@panda5:~$ apt-cache show openssh-server | grep Task
Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, 
mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master

After readding the preinstall pool:

ubuntu@panda5:~$ apt-cache show openssh-server | grep Task
ubuntu@panda5:~$

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985737

Title:
  Tasks selected in oem-config are downloaded, but not installed, or
  configured ...

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/livecd-rootfs/+bug/985737/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985737] Re: Tasks selected in oem-config are downloaded, but not installed, or configured ...

2012-04-19 Thread Michael Casadevall
Appears so. After removing preinstalled pool, running tasksel, and
installing a few tasks, they all install normally and show proper
debconf output as expected.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985737

Title:
  Tasks selected in oem-config are downloaded, but not installed, or
  configured ...

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/livecd-rootfs/+bug/985737/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985791] [NEW] After installation from cdrom, apt-setup comments out the CD from installation

2012-04-19 Thread Michael Casadevall
Public bug reported:

After doing an offline install of i386 from a server CD,
/etc/apt/sources.list has the CD commented out. It also has the Ubuntu
archive in /etc/apt/sources.list present and uncommented (though I'm
unsure if that is a bug or not). Manually adding the cdrom with apt-
cdrom scan works, and allows packages to be installed, as well as tasks.

Steps to Reproduce:
1. Install i386 ubuntu normall
2. cat /etc/apt/sources.list, see the CDROM is commentedout

Expected behavior:
1. The CD will be automatically polled if internet sources can't be reached or 
updated.

Workaround:
1. Run apt-cdrom add after installation. This should be documented in the 
release notes if a fix is unavailable.

** Affects: apt-setup (Ubuntu)
 Importance: Medium
 Status: New


** Tags: iso-testing

** Changed in: apt-setup (Ubuntu)
Milestone: None = ubuntu-12.04

** Changed in: apt-setup (Ubuntu)
   Importance: Undecided = Medium

** Description changed:

  After doing an offline install of i386 from a server CD,
  /etc/apt/sources.list has the CD commented out. It also has the Ubuntu
  archive in /etc/apt/sources.list present and uncommented (though I'm
  unsure if that is a bug or not). Manually adding the cdrom with apt-
  cdrom scan works, and allows packages to be installed, as well as tasks.
  
  Steps to Reproduce:
  1. Install i386 ubuntu normall
  2. cat /etc/apt/sources.list, see the CDROM is commentedout
  
  Expected behavior:
  1. The CD will be automatically polled if internet sources can't be reached 
or updated.
+ 
+ Workaround:
+ 1. Run apt-cdrom add after installation. This should be documented in the 
release notes if a fix is unavailable.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985791

Title:
  After installation from cdrom, apt-setup comments out the CD from
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt-setup/+bug/985791/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985247] [NEW] During installation, if you hit cancel during network config it kicks you to the start of the installation ...

2012-04-18 Thread Michael Casadevall
Public bug reported:

During testing of armhf+omap4, hitting cancel during network config
(when prompted for a network deivce), instead of either allowing you to
continue without network, it immediately kicks you back to the start of
the installation asking you to select keyboard layout and such all over
again.

Steps to Reproduce:
1. Start armhf+omap4 preinstalled server image
2. Run through the installer until it asks for network config
3. Select Cancel

Expected Result
Either continue without network configuration, or return to the oem-config main 
menu.

** Affects: oem-config (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985247

Title:
  During installation, if you hit cancel during network config it kicks
  you to the start of the installation ...

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/oem-config/+bug/985247/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 965568] Re: Unable to derive hostname via dhcp in oem-config

2012-04-18 Thread Michael Casadevall
Ran into this myself. Only appears to occur on preinstall server images.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/965568

Title:
  Unable to derive hostname via dhcp in oem-config

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985258] [NEW] [omap4] tasksel shows seeds unavailable in the preseed image

2012-04-18 Thread Michael Casadevall
Public bug reported:

During installation on armel+omap4, tasksel shows seeds that are
unavailable on the preinstalled images such as Kubuntu LiveCD.
Installation was done with no network connectivity availabile, and these
seeds are uninstallable without connectivity. In addition, I don't
believe they should be listed at all for a server image, to be
consistent with x86 (which does not show seeds that are unavailable on
the CD).

Steps to Reproduce:
1. Proceed through the installer as normal
2. Check tasksel list when tasks are selected.

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


** Tags: iso-testing

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985258

Title:
  [omap4] tasksel shows seeds unavailable in the preseed image

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 747229] Re: weird color change during oem-config debconf package removal step in serial installs

2012-04-18 Thread Michael Casadevall
Still valid, encounter on today's daily image. Its extremely
disconcerting though to say the least, so it would be nice if it could
be fixed for precise release.

This should be release noted however, so its expected. Adding release
notes.

** Also affects: ubuntu-release-notes
   Importance: Undecided
   Status: New

** Changed in: ubuntu-release-notes
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/747229

Title:
  weird color change during oem-config debconf package removal step in
  serial installs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/747229/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985280] [NEW] [omap4] Package installation completely fails silently if no network is available

2012-04-18 Thread Michael Casadevall
Public bug reported:

If networking is not present on the server omap4 image, package
installation will silently fail to install any packages selected for
tasksel. The installation will continue without any notification that it
has failed, and drop you to a command prompt as per normal installation.
However, no selected packages are installed and there is no notification
that anything is out of the ordinary. This is a release-critical bug as
both offline installation must be supported, and silent failure is not
acceptable.

There is no relevant information in any log files created by oem-config.

Steps to reproduce:
1. Run through the installation with no ethernet cord
2. Select various tasks to install
3. Complete installation

Expected outcome:
1. Selected packages should be installed, or at the very least fail with 
notification.

** Affects: ubiquity (Ubuntu)
 Importance: High
 Status: New


** Tags: iso-testing

** Changed in: ubiquity (Ubuntu)
   Importance: Undecided = High

** Changed in: ubiquity (Ubuntu)
Milestone: None = ubuntu-12.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985280

Title:
  [omap4] Package installation completely fails silently if no network
  is available

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985282] [NEW] [omap4] Preinstall pool unavailable after installation

2012-04-18 Thread Michael Casadevall
Public bug reported:

Packages from the preinstall pool are unavailable after installation
without manually running apt-get update. This might only occur during
offline installation, further checking may be required.

Steps to reproduce:
1. Complete normal installation
2. Install a package in the preinstall pool (such as openssh-server) that was 
not installed as part of tasksel
3. Witness that it attempts to pull from ports.ubuntu.com vs. the preinstall 
pool

Workaround:
1. Run apt-get update manually

Expected result:
Preinstall pool is checked by default.

** Affects: ubiquity (Ubuntu)
 Importance: High
 Status: New


** Tags: iso-testing

** Changed in: ubiquity (Ubuntu)
   Importance: Undecided = High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985282

Title:
  [omap4] Preinstall pool unavailable after installation

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985287] [NEW] [omap4] No prompt for landscape or automatic security update installation during oem-config

2012-04-18 Thread Michael Casadevall
Public bug reported:

There's no prompt to setup landscape-client during installation as there
is on x86 during omap4 installation. For preinstalled images,
installation should be as similar as possible to normal netboot/cdrom
images as possible.

Steps to Reproduce:
N/A

Expected Result:
1. Prompt for No Automatic Updates, Automatic Security Updates, Manage 
system through landscape, as per x86/non-preseed ARM.

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


** Tags: iso-testing

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985287

Title:
  [omap4] No prompt for landscape or automatic security update
  installation during oem-config

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 961133] Re: No video output from Ubuntu Desktop ARM Images on my Pandaboard to my DVI monitor

2012-04-18 Thread Michael Casadevall
Bumping this to high as it makes Ubuntu Desktop OMAP4 ARM images
completely unusable. In addition, this also affects display output on
Ubuntu Server.

** Changed in: linux (Ubuntu)
   Importance: Medium = High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/961133

Title:
  No video output from Ubuntu Desktop ARM Images on my Pandaboard to my
  DVI monitor

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985291] [NEW] [oem-config] Generated /etc/apt/sources.list inconsistent with normal installations

2012-04-18 Thread Michael Casadevall
Public bug reported:

After completing with an install with oem-config on omap4, the resulting
sources.list file differs greatly from x86, including a lack of source
packages, sections explaining what restricted, universe, multiverse are,
no section for proposed, nor any deb-src lines.

ubuntu@localhost:/var/log$ cat /etc/apt/sources.list
# This is a sources.list entry for a small pool of packages
# provided on your preinstalled filesystem for your convenience.
#
# It is perfectly safe to delete both this entry and the directory
# it references, should you want to save disk space and fetch the
# packages remotely instead.
#
deb file:/var/lib/preinstalled-pool/ ./
#
# /etc/apt/sources.list

deb http://ports.ubuntu.com/ubuntu-ports/ precise main restricted universe 
multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ precise-security main restricted 
universe multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ precise-updates main restricted 
universe multiverse

Standard sources.list from an x86 system (nearly identical to standard
sources.list on ports installs)


mcasadevall@daybreak:~/df_linux$ cat /etc/apt/sources.list
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://ubuntu.osuosl.org/ubuntu/ precise main restricted
deb-src http://ubuntu.osuosl.org/ubuntu/ precise main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://ubuntu.osuosl.org/ubuntu/ precise-updates main restricted
deb-src http://ubuntu.osuosl.org/ubuntu/ precise-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://ubuntu.osuosl.org/ubuntu/ precise universe
deb-src http://ubuntu.osuosl.org/ubuntu/ precise universe
deb http://ubuntu.osuosl.org/ubuntu/ precise-updates universe
deb-src http://ubuntu.osuosl.org/ubuntu/ precise-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://ubuntu.osuosl.org/ubuntu/ precise multiverse
deb-src http://ubuntu.osuosl.org/ubuntu/ precise multiverse
deb http://ubuntu.osuosl.org/ubuntu/ precise-updates multiverse
deb-src http://ubuntu.osuosl.org/ubuntu/ precise-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://ubuntu.osuosl.org/ubuntu/ precise-backports main restricted universe 
multiverse
deb-src http://ubuntu.osuosl.org/ubuntu/ precise-backports main restricted 
universe multiverse

deb http://security.ubuntu.com/ubuntu precise-security main restricted
deb-src http://security.ubuntu.com/ubuntu precise-security main restricted
deb http://security.ubuntu.com/ubuntu precise-security universe
deb-src http://security.ubuntu.com/ubuntu precise-security universe
deb http://security.ubuntu.com/ubuntu precise-security multiverse
deb-src http://security.ubuntu.com/ubuntu precise-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu oneiric partner
# deb-src http://archive.canonical.com/ubuntu oneiric partner

## Uncomment the following two lines to add software from Ubuntu's
## 'extras' repository.
## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
# deb http://extras.ubuntu.com/ubuntu oneiric main
# deb-src http://extras.ubuntu.com/ubuntu oneiric main

** Affects: ubiquity (Ubuntu)
 Importance: Low
 Status: New


** Tags: iso-testing

** Changed in: ubiquity (Ubuntu)
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985291

Title:
  [oem-config] Generated /etc/apt/sources.list inconsistent with normal
  installations

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 961133] Re: No video output from Ubuntu Desktop ARM Images on my Pandaboard to my DVI monitor

2012-04-18 Thread Michael Casadevall
Update, on ubuntu server, after a full powercycle, I got display. Looks
like Ubuntu Server OMAP has a different bug, and not this one. Sorry for
the false alarm.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/961133

Title:
  No video output from Ubuntu Desktop ARM Images on my Pandaboard to my
  DVI monitor

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985305] [NEW] [omap4] /etc/network/interfaces not created on a no-network installation

2012-04-18 Thread Michael Casadevall
Public bug reported:

/etc/network/interfaces is missing on an install where no ethernet
connection is available. This causes a 120 second delay on startup due
to ifupdown hanging waiting for network interfaces (even if the cable is
connected later). This also prevents ifupdown from properly managing lo,
although this appears to be initialized by a fallback somewhere else.

Steps to Reproduce:
1. Do a non-network installation
2. cat /etc/network/interfaces

Expected Result:
Basic /etc/network/interfaces with auto lo only.

** Affects: ubiquity (Ubuntu)
 Importance: High
 Status: New


** Tags: iso-testing

** Changed in: oem-config (Ubuntu)
   Importance: Undecided = High

** Package changed: oem-config (Ubuntu) = ubiquity (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985305

Title:
  [omap4] /etc/network/interfaces not created on a no-network
  installation

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985309] [NEW] [omap4] /etc/fstab still has warning UNCONFIGURED FSTAB FOR BASE SYSTEM, and is inconsistent with options

2012-04-18 Thread Michael Casadevall
Public bug reported:

After installation on omap4, /etc/fstab has a warning that it is still
unconfigured even though the system is infact configured. In addition,
the options are set considerably different that they are compared to
netboot installation.

Preinstalled fstab:

# UNCONFIGURED FSTAB FOR BASE SYSTEM
proc /proc proc defaults 0 0
UUID=6fcaf36f-a4fd-447b-a0fa-c04d83700e5c / ext4 
defaults,noatime,errors=remount-ro 0 1
/SWAP.swap  none  swap  sw  0 0


fstab on a netboot installed image:


ubuntu@panda6:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# file system mount point   type  options   dump  pass
proc/proc   procnodev,noexec,nosuid 0   0
# / was on /dev/sda1 during installation
UUID=8c563f8f-b981-4b91-8189-a51483f3f66b /   ext4
errors=remount-ro 0   1
# swap was on /dev/sda5 during installation
UUID=586d2b48-0479-4128-88a4-aafe176c6c46 noneswapsw
  0   0

** Affects: ubiquity (Ubuntu)
 Importance: Medium
 Status: New


** Tags: iso-testing

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

** Summary changed:

- [omap4] /etc/fstab still has warning UNCONFIGURED FSTAB FOR BASE SYSTEM, 
and is inconsistent with options on /proc
+ [omap4] /etc/fstab still has warning UNCONFIGURED FSTAB FOR BASE SYSTEM, 
and is inconsistent with options

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985309

Title:
  [omap4] /etc/fstab still has warning UNCONFIGURED FSTAB FOR BASE
  SYSTEM, and is inconsistent with options

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 949508] Re: symbol lookup error in libbaccats-5.2.5.so

2012-03-07 Thread Michael Casadevall
** Changed in: bacula (Ubuntu)
   Status: New = Confirmed

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

Title:
  symbol lookup error in libbaccats-5.2.5.so

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bacula/+bug/949508/+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 949508] Re: symbol lookup error in libbaccats-5.2.5.so

2012-03-07 Thread Michael Casadevall
** Changed in: bacula (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/949508

Title:
  symbol lookup error in libbaccats-5.2.5.so

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 939645] Re: [public] net install kernel resets after immediately after loading

2012-02-27 Thread Michael Casadevall
Should be resolved now.

** Changed in: eilt
   Status: New = Fix Released

** Changed in: debian-installer-netboot-images (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/939645

Title:
  [public] net install kernel resets after immediately after loading

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 934451] [NEW] FFE: armadaxp enablement

2012-02-17 Thread Michael Casadevall
Public bug reported:

Due to the delay with landing the armadaxp kernel, building armadaxp
images was delayed until past feature freeze. Changes are required to
base-installer/libdebian-installer and the d-i package itself to
complete enablement.

These changes involve a few lines of code to add armadaxp as a valid
subarchitecture, libdebian-installer, and base-installer, as well as a
new build config script for armadaxp. As this new code only affects
armadaxp, chances of regression are extremely low.

** Affects: base-installer (Ubuntu)
 Importance: High
 Assignee: Michael Casadevall (mcasadevall)
 Status: New

** Affects: debian-installer (Ubuntu)
 Importance: High
 Assignee: Michael Casadevall (mcasadevall)
 Status: New

** Affects: libdebian-installer (Ubuntu)
 Importance: High
 Assignee: Michael Casadevall (mcasadevall)
 Status: New

** Also affects: base-installer (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: libdebian-installer (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: base-installer (Ubuntu)
   Importance: Undecided = High

** Changed in: debian-installer (Ubuntu)
   Importance: Undecided = High

** Changed in: libdebian-installer (Ubuntu)
   Importance: Undecided = High

** Changed in: base-installer (Ubuntu)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: debian-installer (Ubuntu)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: libdebian-installer (Ubuntu)
 Assignee: (unassigned) = Michael Casadevall (mcasadevall)

** Changed in: base-installer (Ubuntu)
Milestone: None = ubuntu-12.04-beta-1

** Changed in: debian-installer (Ubuntu)
Milestone: None = ubuntu-12.04-beta-1

** Changed in: libdebian-installer (Ubuntu)
Milestone: None = ubuntu-12.04-beta-1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/934451

Title:
  FFE: armadaxp enablement

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/base-installer/+bug/934451/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 900636] Re: libreoffice ftbfs on armhf

2012-01-10 Thread Michael Casadevall
** Changed in: libreoffice (Ubuntu Precise)
 Assignee: Björn Michaelsen (bjoern-michaelsen) = Michael Casadevall 
(mcasadevall)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/900636

Title:
  libreoffice ftbfs on armhf

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 900636] Re: libreoffice ftbfs on armhf

2012-01-05 Thread Michael Casadevall
This is going to be a non-trivial porting project due to libreoffice
needing to know a massive *ton* about how the C++ calling conventions on
a given platform work.

Here's a general idea of what it took to build libreoffice (partially)
on Windows x64 which explains the broken module:
http://libreofficeaustralia.org/pa/community/blog/planet/20110328
/porting-libreoffice-x64-windows

I'm reading through the ARM calling convention guide and using libffi's
source as a handy reference guide, and will take a stab at doing the
port, but its absolutely suck and pain.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/900636

Title:
  libreoffice ftbfs on armhf

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Blueprint servercloud-p-arm-server-performance] Server Workloads Performance-to-Power Consumption Testing

2011-11-18 Thread Michael Casadevall
Blueprint changed by Michael Casadevall:

Definition Status: Discussion = Obsolete

-- 
Server Workloads Performance-to-Power Consumption Testing
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-p-arm-server-performance

-- 
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-p-arm-server-performance] Server Workloads Performance-to-Power Consumption Testing

2011-11-18 Thread Michael Casadevall
Blueprint changed by Michael Casadevall:

Definition Status: Obsolete = Superseded

-- 
Server Workloads Performance-to-Power Consumption Testing
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-p-arm-server-performance

-- 
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-p-arm-server-performance] Server Workloads Performance-to-Power Consumption Testing

2011-11-18 Thread Michael Casadevall
Blueprint changed by Michael Casadevall:

Whiteboard set to:
Dupe of: https://blueprints.launchpad.net/ubuntu/+spec/ubuntu-arm-p
-server-benchmark-and-performance

-- 
Server Workloads Performance-to-Power Consumption Testing
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-p-arm-server-performance

-- 
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 821170] Re: xfce4-power-manager fails to start (receives X window system error BadName)

2011-11-03 Thread Michael Casadevall
Due to UDS, it appears this is probably not going to get an upload until
the weekend. I'll see if I can do it tonight or tomorrow, but no
promises.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/821170

Title:
  xfce4-power-manager fails to start (receives X window system error
  BadName)

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-power-manager/+bug/821170/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 821170] Re: xfce4-power-manager fails to start (receives X window system error BadName)

2011-10-31 Thread Michael Casadevall
The above patch failed to work for me, but after some digging on the
BTS, I found a patch that handles X11 errors properly, and presto,
battery meter came back. Will upload a test patch to a PPA, and once I
have confirmation from someone else, I'll do an upload to oneiric-
proposed and start the SRU process to get this fixed for everyone.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/821170

Title:
  xfce4-power-manager fails to start (receives X window system error
  BadName)

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-power-manager/+bug/821170/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 845068] Re: ipmitool is not packaged for ARM

2011-10-05 Thread Michael Casadevall
** Changed in: ipmitool (Ubuntu)
   Status: Confirmed = Fix Released

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

Title:
  ipmitool is not packaged for ARM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipmitool/+bug/845068/+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 845068] Re: ipmitool is not packaged for ARM

2011-10-05 Thread Michael Casadevall
** Changed in: ipmitool (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/845068

Title:
  ipmitool is not packaged for ARM

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 848147] Re: FFe: Sync workrave 1.9.4-2 (universe) from Debian unstable (main)

2011-09-12 Thread Michael Casadevall
Requests for feature freeze exceptions must come from a MOTU or core
developer, or ACKed by a sponsor. Please do not directly subscribe
~ubuntu-release until the bug has been reviewed by a developer. In
addition, we have passed Beta freeze, and as such do not normally accept
new packages into the archive past this point. Please see the Feature
Freeze Exception process  for full details:
https://wiki.ubuntu.com/FreezeExceptionProcess#FeatureFreeze_for_new_packages

Unsubscribing ~ubuntu-release.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/848147

Title:
  FFe: Sync workrave 1.9.4-2 (universe) from Debian unstable (main)

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 833876] Re: FFE: upload new version from Linaro for OMAP4

2011-08-25 Thread Michael Casadevall
FFe ACKed; we need as much testing of the new u-boot as possible before
beta 1.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/833876

Title:
  FFE: upload new version from Linaro for OMAP4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u-boot-linaro/+bug/833876/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 827798] Re: LXC works without warning regardless if cgroup namespaces are properly available

2011-08-19 Thread Michael Casadevall
Can you be more specific on these security issues?

We don't ship a LSM out of the box (nor is there a quick and easy way to
set one up). LXC is the cloud computing solution for ARM until hardware
virtualization becomes available, and I was unaware of any security
concerns in using it.

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

Title:
  LXC works without warning regardless if cgroup namespaces are properly
  available

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/827798/+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 814819] Re: [FFE]Update to antlr3 version 3.2

2011-08-19 Thread Michael Casadevall
Given the package is in universe, and the regressions are relatively
straightforward to fix, I'm approving this.

Ack.

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

Title:
  [FFE]Update to antlr3 version 3.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/antlr3/+bug/814819/+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 827798] Re: LXC works without warning regardless if cgroup namespaces are properly available

2011-08-19 Thread Michael Casadevall
Can you be more specific on these security issues?

We don't ship a LSM out of the box (nor is there a quick and easy way to
set one up). LXC is the cloud computing solution for ARM until hardware
virtualization becomes available, and I was unaware of any security
concerns in using it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/827798

Title:
  LXC works without warning regardless if cgroup namespaces are properly
  available

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 814819] Re: [FFE]Update to antlr3 version 3.2

2011-08-19 Thread Michael Casadevall
Given the package is in universe, and the regressions are relatively
straightforward to fix, I'm approving this.

Ack.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/814819

Title:
  [FFE]Update to antlr3 version 3.2

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 827798] Re: LXC works without warning regardless if cgroup namespaces are properly available

2011-08-17 Thread Michael Casadevall
Thanks Serge. That behavior should be documented somewhere, since I was
greatly concerned there was a security issue in LXC.  At least we know
that LXC now works properly in ARM, and I can now close out the LXC-ARM
work items.

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

Title:
  LXC works without warning regardless if cgroup namespaces are properly
  available

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/827798/+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 827798] Re: LXC works without warning regardless if cgroup namespaces are properly available

2011-08-17 Thread Michael Casadevall
Thanks Serge. That behavior should be documented somewhere, since I was
greatly concerned there was a security issue in LXC.  At least we know
that LXC now works properly in ARM, and I can now close out the LXC-ARM
work items.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/827798

Title:
  LXC works without warning regardless if cgroup namespaces are properly
  available

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 827798] [NEW] LXC works without warning regardless if cgroup namespaces are properly available

2011-08-16 Thread Michael Casadevall
Public bug reported:

Out of the box on Ubuntu oneiric, lxc-checkconfig produces the current
output:

ubuntu@panda4:~$ lxc-checkconfig 
--- Namespaces ---
Namespaces: enabled
Utsname namespace: enabled
Ipc namespace: enabled
Pid namespace: enabled
User namespace: enabled
Network namespace: enabled
Multiple /dev/pts instances: enabled

--- Control groups ---
Cgroup: enabled
Cgroup namespace: required
Cgroup device: enabled
Cgroup sched: enabled
Cgroup cpu account: enabled
Cgroup memory controller: enabled
Cgroup cpuset: enabled

--- Misc ---
Veth pair device: enabled
Macvlan: enabled
Vlan: enabled
File capabilities: missing
enabled

Note that cgroup_ns says 'Required'. cgroup_ns was replaced with
clone_children (which is a mount option for cgroup lines; if this is
done, then that line changes to clone_children is available).

Regardless of this 'Required' item being around, lxc-* still works, and
you can still create and start instances. It appears that even though
namespaces are unavailable. This suggests that LXC will run without
warning even if full cgroup isolation is unavailable.

As part of the move to 3.0, we need to make it so LXC uses the
clone_children as a replacement for cgroup_ns, and understand why LXC
works without namespace support, and the security implications of this
...

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

** Changed in: lxc (Ubuntu)
   Importance: Undecided = High

** Changed in: lxc (Ubuntu)
Milestone: None = ubuntu-11.10-beta-1

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

Title:
  LXC works without warning regardless if cgroup namespaces are properly
  available

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/827798/+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 827798] [NEW] LXC works without warning regardless if cgroup namespaces are properly available

2011-08-16 Thread Michael Casadevall
Public bug reported:

Out of the box on Ubuntu oneiric, lxc-checkconfig produces the current
output:

ubuntu@panda4:~$ lxc-checkconfig 
--- Namespaces ---
Namespaces: enabled
Utsname namespace: enabled
Ipc namespace: enabled
Pid namespace: enabled
User namespace: enabled
Network namespace: enabled
Multiple /dev/pts instances: enabled

--- Control groups ---
Cgroup: enabled
Cgroup namespace: required
Cgroup device: enabled
Cgroup sched: enabled
Cgroup cpu account: enabled
Cgroup memory controller: enabled
Cgroup cpuset: enabled

--- Misc ---
Veth pair device: enabled
Macvlan: enabled
Vlan: enabled
File capabilities: missing
enabled

Note that cgroup_ns says 'Required'. cgroup_ns was replaced with
clone_children (which is a mount option for cgroup lines; if this is
done, then that line changes to clone_children is available).

Regardless of this 'Required' item being around, lxc-* still works, and
you can still create and start instances. It appears that even though
namespaces are unavailable. This suggests that LXC will run without
warning even if full cgroup isolation is unavailable.

As part of the move to 3.0, we need to make it so LXC uses the
clone_children as a replacement for cgroup_ns, and understand why LXC
works without namespace support, and the security implications of this
...

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

** Changed in: lxc (Ubuntu)
   Importance: Undecided = High

** Changed in: lxc (Ubuntu)
Milestone: None = ubuntu-11.10-beta-1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/827798

Title:
  LXC works without warning regardless if cgroup namespaces are properly
  available

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


  1   2   3   4   5   6   7   8   9   10   >