From 531ff17684f7681cb84ad6abf8e1cb337d2035a1 Mon Sep 17 00:00:00 2001 From: "Carl D. Roth" Date: Wed, 11 Oct 2017 17:08:10 -0700 Subject: [PATCH] Unmount the EFI directory before doing a re-install --- .../vendor-config-onl/src/python/onl/install/SystemInstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/base/all/vendor-config-onl/src/python/onl/install/SystemInstall.py b/packages/base/all/vendor-config-onl/src/python/onl/install/SystemInstall.py index 25d51928..ad6ce72e 100644 --- a/packages/base/all/vendor-config-onl/src/python/onl/install/SystemInstall.py +++ b/packages/base/all/vendor-config-onl/src/python/onl/install/SystemInstall.py @@ -195,7 +195,7 @@ class App(SubprocessMixin): pdir,)) for m in pm.mounts: - if m.dir.startswith('/mnt/onl'): + if m.dir.startswith('/mnt/onl') or m.dir.startswith('/boot'): if not self.force: self.log.error("directory %s is still mounted (try --force)", m.dir) return 1