There was an error while loading. Please reload this page.
1 parent 064a13a commit 13c905dCopy full SHA for 13c905d
1 file changed
lib/vm.py
@@ -514,6 +514,8 @@ def grow_root_partition(self) -> int | None:
514
self.ssh('apk add util-linux e2fsprogs-extra')
515
elif pkg_manager == PackageManagerEnum.APT_GET:
516
self.ssh('apt-get update && apt-get install -y -qq util-linux e2fsprogs')
517
+ elif pkg_manager == PackageManagerEnum.RPM:
518
+ self.ssh('yum install -y util-linux e2fsprogs')
519
else:
520
return None
521
mount_output = self.ssh('mount').strip()
0 commit comments