Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/installer.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-12-06 20:59:32 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-12-06 20:59:32 +0000
commitace6beb209675e77fab3eb307d9fff48559adfb1 (patch)
tree855a45f0abcf18c258c7e6a0aacdd8793147dfe2 /archinstall/lib/installer.py
parent783e8ac11708137453fd099ee1b55e01c473b931 (diff)
Attempting to select drives by size and/or id
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 543f2ca3..86eafc88 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -89,6 +89,10 @@ class Installer():
self.log(f"Submit this zip file as an issue to https://github.com/Torxed/archinstall/issues", level=LOG_LEVELS.Warning)
return False
+ def mount(self, mountpoint, partition):
+ partition.mount(f'{self.mountpoint}/srv/http')
+
+
def post_install_check(self, *args, **kwargs):
return [step for step, flag in self.helper_flags.items() if flag is False]