From fe4e61ce56394ca2e3ddeef52196076edcbbddcb Mon Sep 17 00:00:00 2001 From: fatalerrors Date: Thu, 9 Dec 2021 19:57:33 +0100 Subject: [PATCH] conf_ceph: fixed ceph run on i386 platform --- modules/conf_ceph.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/conf_ceph.sh b/modules/conf_ceph.sh index e1d6299..7b9bce0 100644 --- a/modules/conf_ceph.sh +++ b/modules/conf_ceph.sh @@ -95,7 +95,7 @@ conf_ceph() precheck_conf_ceph() { - if [[ $SYS_ARCH == "x86_64" ]]; then + if [[ $SYS_ARCH == "x86_64" || $SYS_ARCH == "i386" ]]; then prnt I "Installing ceph client package..." CEPH_STATUS=ceph else