]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
add AArch64 to supported architecture
authorDi Xu <dixudx@users.noreply.github.com>
Mon, 23 Apr 2018 02:08:48 +0000 (10:08 +0800)
committerSébastien Han <seb@redhat.com>
Mon, 23 Apr 2018 08:23:21 +0000 (10:23 +0200)
works on AArch64 platform

roles/ceph-common/tasks/checks/check_system.yml

index 1e082050cef18b3555439430cd385837f993ecf6..dc39509d84f0d0e481fad8319ded99a760671ea9 100644 (file)
@@ -9,7 +9,7 @@
   fail:
     msg: "Architecture not supported {{ ansible_architecture }}"
   when:
-    - ansible_architecture not in ['x86_64', 'ppc64le', 'armv7l']
+    - ansible_architecture not in ['x86_64', 'ppc64le', 'armv7l', 'aarch64']
 
 - name: fail on unsupported distribution
   fail: