From 9fff67a065f8f6813d2e4033487967e26564e0ff Mon Sep 17 00:00:00 2001 From: shixuantong Date: Thu, 2 Feb 2023 16:07:28 +0800 Subject: [PATCH] revert make the same authentication behavior for arm and x86 machine --- cloud-init.spec | 6 +++-- ...EFAULT_POLICY-for-aarch64-and-x86_64.patch | 24 ------------------- 2 files changed, 4 insertions(+), 26 deletions(-) delete mode 100644 set-same-DI_DEFAULT_POLICY-for-aarch64-and-x86_64.patch diff --git a/cloud-init.spec b/cloud-init.spec index d147cbf..f683a3a 100644 --- a/cloud-init.spec +++ b/cloud-init.spec @@ -1,6 +1,6 @@ Name: cloud-init Version: 22.2 -Release: 4 +Release: 5 Summary: the defacto multi-distribution package that handles early initialization of a cloud instance. License: ASL 2.0 or GPLv3 URL: http://launchpad.net/cloud-init @@ -13,7 +13,6 @@ Patch1: bugfix-cloud-init-add-os-support.patch Patch2: bugfix-sort-requirements.patch Patch3: add-variable-to-forbid-tmp-dir.patch Patch4: Fix-the-error-level-logs-displayed-for-the-cloud-init-local-service.patch -Patch5: set-same-DI_DEFAULT_POLICY-for-aarch64-and-x86_64.patch BuildRequires: pkgconfig(systemd) python3-devel python3-setuptools systemd BuildRequires: iproute python3-configobj python3-httpretty >= 0.8.14-2 @@ -128,6 +127,9 @@ fi %exclude /usr/share/doc/* %changelog +* Thu Feb 02 2023 shixuantong - 22.2-5 +- revert make the same authentication behavior for arm and x86 machine + * Sun Dec 11 2022 wanglimin - 22.2-4 - make the same authentication behavior for arm and x86 machine diff --git a/set-same-DI_DEFAULT_POLICY-for-aarch64-and-x86_64.patch b/set-same-DI_DEFAULT_POLICY-for-aarch64-and-x86_64.patch deleted file mode 100644 index a33dd87..0000000 --- a/set-same-DI_DEFAULT_POLICY-for-aarch64-and-x86_64.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff --git a/tools/ds-identify b/tools/ds-identify -index b4e434c..493cd1e 100644 ---- a/tools/ds-identify -+++ b/tools/ds-identify -@@ -1250,7 +1250,7 @@ dscheck_OpenStack() { - - # LP: #1715241 : arch other than intel are not identified properly. - case "$DI_UNAME_MACHINE" in -- i?86|x86_64) :;; -+ i?86|x86_64|aarch64) :;; - *) return ${DS_MAYBE};; - esac - -@@ -1667,9 +1667,7 @@ parse_policy() { - local def="" - case "$DI_UNAME_MACHINE" in - # these have dmi data -- i?86|x86_64) def=${DI_DEFAULT_POLICY};; -- # aarch64 has dmi, but not currently used (LP: #1663304) -- aarch64) def=${DI_DEFAULT_POLICY_NO_DMI};; -+ i?86|x86_64|aarch64) def=${DI_DEFAULT_POLICY};; - *) def=${DI_DEFAULT_POLICY_NO_DMI};; - esac - local policy="$1" -- Gitee