From 8864ad568eb6bb696971f7418c197fa15a7cfcc7 Mon Sep 17 00:00:00 2001 From: Kevin Lange Date: Fri, 20 Jan 2017 14:23:50 +0900 Subject: [PATCH] Don't use caches for ext2 packages --- userspace/py/lib/toaru_package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/py/lib/toaru_package.py b/userspace/py/lib/toaru_package.py index ce6d26fa..cd22fded 100644 --- a/userspace/py/lib/toaru_package.py +++ b/userspace/py/lib/toaru_package.py @@ -106,7 +106,7 @@ def run_install_step(step): elif step[0] == 'ext2': print(f"- Mounting ext2 image {step[1]} at {step[2]}") if not dryrun: - subprocess.call(['mount','ext2',step[1],step[2]]) + subprocess.call(['mount','ext2',step[1] + ',nocache',step[2]]) elif step[0] == 'chmodx': print(f"- Making {step[1]} executable") if not dryrun: