initial xfs support

This commit is contained in:
Girish Ramakrishnan
2022-06-08 10:32:25 -07:00
parent 6de198eaad
commit 544ca6e1f4
5 changed files with 17 additions and 7 deletions

View File

@@ -26,8 +26,8 @@ readonly GREEN='\033[32m'
readonly DONE='\033[m'
# verify the system has minimum requirements met
if [[ "${rootfs_type}" != "ext4" ]]; then
echo "Error: Cloudron requires '/' to be ext4" # see #364
if [[ "${rootfs_type}" != "ext4" && "${rootfs_type}" != "xfs" ]]; then
echo "Error: Cloudron requires '/' to be ext4 or xfs" # see #364
exit 1
fi