Skip to content

Commit bed42f7

Browse files
committed
kickstart: Fix growfs requires
Fixes: 5529711 ("kickstart: add growfs for ext4, xfs, f2fs") Signed-off-by: Alexey Gladkov <[email protected]>
1 parent aca9a4c commit bed42f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

features/kickstart/data/bin/kickstart-sh-storage

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -544,8 +544,8 @@ ks_get_dev_id()
544544
printf '%s\n' "$1"
545545
}
546546

547-
ks_requires_ext4=("e2fsck resize2fs")
548-
ks_requires_xfs=("xfs_growfs")
547+
ks_requires_ext4=("e2fsck" "resize2fs")
548+
ks_requires_xfs=("xfs_growfs" "mount")
549549
ks_requires_f2fs=("resize.f2fs")
550550
ks_growfs()
551551
{

0 commit comments

Comments
 (0)