index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-06-11 17:22:20 +0200 |
---|---|---|
committer | Anton Hvornum <anton@hvornum.se> | 2021-06-11 17:22:20 +0200 |
commit | 24476ac1f696c882fb2f741cb8c5fa858f786f46 (patch) | |
tree | d380ff03b75fe09f27b750c19937cf0843c4a8c2 /archinstall/lib/installer.py | |
parent | 0a8c061ab405e244a187b4615654ecca2e538156 (diff) |
-rw-r--r-- | archinstall/lib/installer.py | 5 |
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index b62b9595..91c55b33 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -57,7 +57,6 @@ class Installer: self.post_base_install = [] storage['session'] = self - self.partitions = get_partitions_in_use(self.target) self.MODULES = [] self.BINARIES = [] @@ -108,6 +107,10 @@ class Installer: self.sync_log_to_install_medium() return False + @property + def partitions(self): + return get_partitions_in_use(self.target) + def sync_log_to_install_medium(self): # Copy over the install log (if there is one) to the install medium if # at least the base has been strapped in, otherwise we won't have a filesystem/structure to copy to. |