Use a correct way to read overlayfs config

pull/64/head
Rikka 2 years ago
parent 62a460b2c3
commit 90fff773b2
No known key found for this signature in database
GPG Key ID: 27646650E3A52AAF

@ -29,8 +29,11 @@ class General:
@property
def use_overlayfs(self):
return os.path.isdir("/var/lib/waydroid/overlay")
# return False
with open("/var/lib/waydroid/waydroid.cfg") as f:
cont=f.read()
if re.search("mount_overlays[ \t]*=[ \t]*True", cont):
return True
return False
def download(self):
loc_md5 = ""

Loading…
Cancel
Save