From 8f03ddc3fa5f559eb58275fa0c64cf87e9d64b0b Mon Sep 17 00:00:00 2001 From: Ophestra Umiker Date: Thu, 10 Oct 2024 00:11:04 +0900 Subject: app: remove bubblewrap launch method Launch methods serve the primary purpose of setting UID in the init namespace, which bubblewrap does not do. Furthermore, all applications will start within a bubblewrap sandbox once it has been implemented. Signed-off-by: Ophestra Umiker --- internal/app/start.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'internal/app/start.go') diff --git a/internal/app/start.go b/internal/app/start.go index b335b68a..db6c5f14 100644 --- a/internal/app/start.go +++ b/internal/app/start.go @@ -30,8 +30,6 @@ func (a *app) Start() error { switch a.seal.launchOption { case LaunchMethodSudo: commandBuilder = a.commandBuilderSudo - case LaunchMethodBwrap: - commandBuilder = a.commandBuilderBwrap case LaunchMethodMachineCtl: commandBuilder = a.commandBuilderMachineCtl default: -- cgit v1.3.1