From 0702f34bd30094f829bad35540e2c65900fd7d6a Mon Sep 17 00:00:00 2001 From: budtmo Date: Fri, 3 May 2024 17:59:42 +0200 Subject: [PATCH] Reverted the change on PR #403 --- cli/src/device/emulator.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cli/src/device/emulator.py b/cli/src/device/emulator.py index 39b9ee6e..b96529fe 100644 --- a/cli/src/device/emulator.py +++ b/cli/src/device/emulator.py @@ -134,10 +134,6 @@ def create(self) -> None: self.logger.info(f"{self.device_type} is created!") def change_permission(self) -> None: - not_first_run = self.is_initialized() - if not_first_run: - return - kvm_path = "/dev/kvm" if os.path.exists(kvm_path): cmds = (f"sudo chown 1300:1301 {kvm_path}",