[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-11-17 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-release-upgrader - 1:16.04.18 --- ubuntu-release-upgrader (1:16.04.18) xenial; urgency=medium * DistUpgrade/ReleaseNotesViewerWebkit.py: fix indentation of function _on_navigation_policy_decision_requested. (LP: #1635155) * DistUpgradeV

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-11-14 Thread Brian Murray
I followed the test case and upgraded from Trusty to Xenial without an issue. 2016-11-14 11:16:21,125 INFO release-upgrader version '16.04.18' started 2016-11-14 11:16:21,141 INFO locale: 'en_US' 'UTF-8' 2016-11-14 11:16:21,188 DEBUG setting up environ for non-interactive use ... 2016-11-14 11:39:

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-11-10 Thread Max Brustkern
My tests, including the ones that involve upgrading systems running UEFI, are working at the moment. I'll comment on the other bug so eole- team can see it. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bug

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-11-10 Thread Martin Pitt
Hello Max, or anyone else affected, Accepted ubuntu-release-upgrader into xenial-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source /ubuntu-release-upgrader/1:16.04.18 in a few hours, and then in the -proposed repository. Please help us by testing this n

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-11-09 Thread Brian Murray
** Description changed: + Test Case + - + 1) Install the package shim-signed on an Ubuntu 14.04 system + 2) Run do-release-upgrade -f DistUpgradeViewNonInteractive + 3) Observe the following Traceback: + + Setting up shim-signed (1.18~16.04.1+0.8-0ubuntu2) ... + find: Error in sys.excepth

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-11-08 Thread Brian Murray
** Also affects: ubuntu-release-upgrader (Ubuntu Xenial) Importance: Undecided Status: New ** Changed in: ubuntu-release-upgrader (Ubuntu Xenial) Importance: Undecided => High ** Changed in: ubuntu-release-upgrader (Ubuntu Xenial) Assignee: (unassigned) => Brian Murray (brian-mu

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-10-07 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-release-upgrader - 1:16.10.5 --- ubuntu-release-upgrader (1:16.10.5) yakkety; urgency=medium * DistUpgradeViewNonInteractive.py: Instead of tripping over errors when writing progress to stdout just ignore them so that the upgrade can

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-10-05 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu-release-upgrader -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1614576 Title: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError To manage notifications ab

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-10-05 Thread Brian Murray
** Changed in: ubuntu-release-upgrader (Ubuntu) Assignee: (unassigned) => Brian Murray (brian-murray) ** Changed in: ubuntu-release-upgrader (Ubuntu) Status: Triaged => In Progress -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to U

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-10-04 Thread Brian Murray
Looking a /var/log/dist-upgrade/main.log though maybe its the arrow: reparing to unpack .../policykit-1_0.105-16_amd64.deb ...^M Created symlink /run/systemd/system/polkitd.service → /dev/null.^M Unpacking policykit-1 (0.105-16) over (0.105-14.1) ...^M -- You received this bug notification becau

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-10-04 Thread Brian Murray
Here's the full Traceback: Preparing to unpack .../policykit-1_0.105-16_amd64.deb ... Created symlink /run/systemd/system/polkitd.service Traceback (most recent call last): File "./yakkety", line 8, in sys.exit(main()) File "/tmp/ubuntu-release-upgrader-uavelnl5/DistUpgrade/DistUpgradeMa

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-10-04 Thread Brian Murray
Using errors='ignore' allows the upgrade to complete and doesn't seem too horrible given that's its non-interactive anyway. sys.stdout.write("%s" % s.decode(locale.getpreferredencoding(), errors='ignore')) We can see the errors in the terminal output: Preparing to unpack .../input

[Bug 1614576] Re: Upgrade from xenial to yakkety fails due to a UnicodeDecodeError

2016-10-04 Thread Brian Murray
For future reference one annoying thing about the non-interactive version of the upgrader is that it has its own exception handler e.g.: class DistUpgradeViewNonInteractive(DistUpgradeView): " non-interactive version of the upgrade view " def __init__(self, datadir=None, logdir=None):