Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archinstall/lib/installer.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index f83e0128..9de66215 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -450,6 +450,9 @@ class Installer:
self.pacstrap('zram-generator')
zram_example_location = '/usr/share/doc/zram-generator/zram-generator.conf.example'
shutil.copy2(f"{self.target}{zram_example_location}", f"{self.target}/usr/lib/systemd/zram-generator.conf")
+
+ if self.enable_service('systemd-zram-setup@zram0.service') and self.enable_service('systemd-zram-setup@zram1.service'):
+ return True
else:
raise ValueError(f"Archinstall currently only supports setting up swap on zram")