From 73e50d717a50616d20faeb5b4cbdf5cb2483aa53 Mon Sep 17 00:00:00 2001 From: Laurent Bonnans Date: Mon, 28 Jan 2019 13:53:27 +0100 Subject: aktualizr: bump to latest 1cad6d10286ade64b24021ca0e23de0d3b64f520 - OStree installations are considered complete after a reboot under the new version - image downloads are not parallelized anymore - various enhancements and bug fixes Signed-off-by: Laurent Bonnans --- recipes-sota/aktualizr/aktualizr_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-sota/aktualizr/aktualizr_git.bb b/recipes-sota/aktualizr/aktualizr_git.bb index d49f28c..eb65ae0 100755 --- a/recipes-sota/aktualizr/aktualizr_git.bb +++ b/recipes-sota/aktualizr/aktualizr_git.bb @@ -27,7 +27,7 @@ SRC_URI = " \ file://aktualizr-serialcan.service \ " -SRCREV = "d00d1a04cc2366d1a5f143b84b9f507f8bd32c44" +SRCREV = "1cad6d10286ade64b24021ca0e23de0d3b64f520" BRANCH ?= "master" S = "${WORKDIR}/git" -- cgit v1.2.3-54-g00ecf From 52893366bbf554a58572b3a0cbf83e4337a3f026 Mon Sep 17 00:00:00 2001 From: Laurent Bonnans Date: Mon, 28 Jan 2019 14:51:54 +0100 Subject: Fix oe-selftest for `aktualizr once` CLI has changed Signed-off-by: Laurent Bonnans --- lib/oeqa/selftest/cases/updater.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/oeqa/selftest/cases/updater.py b/lib/oeqa/selftest/cases/updater.py index 92bf6fc..08521d5 100644 --- a/lib/oeqa/selftest/cases/updater.py +++ b/lib/oeqa/selftest/cases/updater.py @@ -214,7 +214,7 @@ class ManualControlTests(OESelftestTestCase): def qemu_command(self, command): return qemu_send_command(self.qemu.ssh_port, command) - def test_manual_running_mode_once(self): + def test_manual_run_mode_once(self): """ Disable the systemd service then run aktualizr manually """ @@ -223,7 +223,7 @@ class ManualControlTests(OESelftestTestCase): self.assertIn(b'Can\'t open database', stdout, 'Aktualizr should not have run yet' + stderr.decode() + stdout.decode()) - stdout, stderr, retcode = self.qemu_command('aktualizr --running-mode=once') + stdout, stderr, retcode = self.qemu_command('aktualizr once') stdout, stderr, retcode = self.qemu_command('aktualizr-info') self.assertIn(b'Fetched metadata: yes', stdout, -- cgit v1.2.3-54-g00ecf