Date: Tue, 27 Jul 2021 20:57:40 GMT From: Li-Wen Hsu <lwhsu@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 828e370fe13f - main - sysutils/azure-agent: Workaround for detecting resource disk on gen2 VM Message-ID: <202107272057.16RKvev7006587@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by lwhsu: URL: https://cgit.FreeBSD.org/ports/commit/?id=828e370fe13f3858073666df4fe68f8188b4ad57 commit 828e370fe13f3858073666df4fe68f8188b4ad57 Author: Li-Wen Hsu <lwhsu@FreeBSD.org> AuthorDate: 2021-07-27 20:57:30 +0000 Commit: Li-Wen Hsu <lwhsu@FreeBSD.org> CommitDate: 2021-07-27 20:57:30 +0000 sysutils/azure-agent: Workaround for detecting resource disk on gen2 VM Approved by: whu (maintainer, implicitly) MFH: 2021Q3 Sponsored by: The FreeBSD Foundation --- sysutils/azure-agent/Makefile | 1 + ...tch-azurelinuxagent_daemon_resourcedisk_freebsd.py | 19 +++++++++++++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/sysutils/azure-agent/Makefile b/sysutils/azure-agent/Makefile index 8c4b2919ca9a..db657147b9ae 100644 --- a/sysutils/azure-agent/Makefile +++ b/sysutils/azure-agent/Makefile @@ -1,6 +1,7 @@ PORTNAME= azure-agent PORTVERSION= 2.2.54.2 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= sysutils PATCH_SITES= https://github.com/Azure/WALinuxAgent/commit/ diff --git a/sysutils/azure-agent/files/patch-azurelinuxagent_daemon_resourcedisk_freebsd.py b/sysutils/azure-agent/files/patch-azurelinuxagent_daemon_resourcedisk_freebsd.py index 347ba8ab5641..e6cfe3ff726c 100644 --- a/sysutils/azure-agent/files/patch-azurelinuxagent_daemon_resourcedisk_freebsd.py +++ b/sysutils/azure-agent/files/patch-azurelinuxagent_daemon_resourcedisk_freebsd.py @@ -1,4 +1,4 @@ ---- azurelinuxagent/daemon/resourcedisk/freebsd.py.orig 2021-05-18 18:30:52 UTC +--- azurelinuxagent/daemon/resourcedisk/freebsd.py.orig 2021-06-24 22:08:50 UTC +++ azurelinuxagent/daemon/resourcedisk/freebsd.py @@ -1,6 +1,7 @@ # Microsoft Azure Linux Agent @@ -76,7 +76,22 @@ device = self.osutil.device_for_ide_port(1) if device is None or device not in disks: -@@ -90,94 +101,195 @@ class FreeBSDResourceDiskHandler(ResourceDiskHandler): +@@ -74,8 +85,12 @@ class FreeBSDResourceDiskHandler(ResourceDiskHandler): + err, output = shellutil.run_get_output( + 'camcontrol periphlist 3:1:0') + if err: +- raise ResourceDiskError( +- "Unable to detect resource disk device:{0}".format(output)) ++ # try again on "0:0:1" ++ err, output = shellutil.run_get_output( ++ 'camcontrol periphlist 0:0:1') ++ if err: ++ raise ResourceDiskError( ++ "Unable to detect resource disk device:{0}".format(output)) + + # 'da1: generation: 4 index: 1 status: MORE\npass2: generation: 4 index: 2 status: LAST\n' + for line in output.split('\n'): +@@ -90,94 +105,195 @@ class FreeBSDResourceDiskHandler(ResourceDiskHandler): raise ResourceDiskError("Unable to detect resource disk device.") logger.info('Resource disk device {0} found.', device)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107272057.16RKvev7006587>