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@hvornum.se>2022-09-19 23:42:08 +0200
committerGitHub <noreply@github.com>2022-09-19 23:42:08 +0200
commitc1f21e7ca437e1e8a712ec9bed3bfdf3f4c893e5 (patch)
tree9d58187f001d116be5f8f7ca5473eb52c90d94d5 /archinstall/lib/installer.py
parente83a41f3f51f54eccbe9288638759dc9669bfef6 (diff)
Add compression to /etc/fstab for btrfs subvolumes (#1473)
* Adding a btrfs compression plugin to genfstab * Allowing the genfstab plugin to break on success
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index c7682655..1270959e 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -432,7 +432,8 @@ class Installer:
for plugin in plugins.values():
if hasattr(plugin, 'on_genfstab'):
- plugin.on_genfstab(self)
+ if plugin.on_genfstab(self) is True:
+ break
return True