There was an error while loading. Please reload this page.
1 parent 0063384 commit ebfb4f5Copy full SHA for ebfb4f5
1 file changed
lib/vm.py
@@ -531,6 +531,8 @@ def grow_root_partition(self) -> int | None:
531
self.ssh('apk add util-linux e2fsprogs-extra')
532
elif pkg_manager == PackageManagerEnum.APT_GET:
533
self.ssh('apt-get update && apt-get install -y -qq util-linux e2fsprogs')
534
+ elif pkg_manager == PackageManagerEnum.RPM:
535
+ self.ssh('yum install -y util-linux e2fsprogs')
536
else:
537
return None
538
mount_output = self.ssh('mount').strip()
0 commit comments