index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-12-06 21:29:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-06 21:29:29 +0100 |
commit | d588d2f1eb138b9a80dfa9c07507306c6aeb1795 (patch) | |
tree | e4f77a4a03c2b37be1eba8c4523df5c8a57b5096 /archinstall/lib/installer.py | |
parent | 731804c491dc588191e36d88fa6a7648984d898f (diff) | |
parent | ace6beb209675e77fab3eb307d9fff48559adfb1 (diff) |
-rw-r--r-- | archinstall/lib/installer.py | 4 |
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] |