1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

F #4089: Add more FS types to docker downloader (#4548)

This commit is contained in:
Christian González 2020-04-17 10:47:40 +02:00 committed by GitHub
parent 98b83bc55d
commit 22a32cb58f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -272,6 +272,12 @@ case $filesystem in
"ext4")
mkfs.ext4 -F $img_raw > /dev/null 2>&1
;;
"ext3")
mkfs.ext3 -F $img_raw > /dev/null 2>&1
;;
"ext2")
mkfs.ext2 -F $img_raw > /dev/null 2>&1
;;
"xfs")
mkfs.xfs -f $img_raw > /dev/null 2>&1
;;