From 694eddb3e104c8d481303a8e3b84ec011c44a77d Mon Sep 17 00:00:00 2001 From: Rudra Saraswat Date: Thu, 2 Apr 2026 14:42:08 +0100 Subject: [PATCH] fix: pass --timezone=off when executing commands in rootfs --- usr/lib/akshara/classes/rootfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/akshara/classes/rootfs.py b/usr/lib/akshara/classes/rootfs.py index 31c8238..91821f6 100644 --- a/usr/lib/akshara/classes/rootfs.py +++ b/usr/lib/akshara/classes/rootfs.py @@ -1,6 +1,5 @@ import os import subprocess -from pathlib import Path class RootFS: @@ -42,6 +41,7 @@ class RootFS: "systemd-nspawn", "--quiet", "--pipe", + "--timezone=off", *[f"--setenv={name}={val}" for name, val in self.env.items()], "-D", self.rootfs_path,