There was an error while loading. Please reload this page.
1 parent f77686b commit 227d3fcCopy full SHA for 227d3fc
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