aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/firejail/no_sandbox.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/firejail/no_sandbox.c b/src/firejail/no_sandbox.c
index ecbc5d1d0..9221aaa99 100644
--- a/src/firejail/no_sandbox.c
+++ b/src/firejail/no_sandbox.c
@@ -229,5 +229,9 @@ void run_no_sandbox(int argc, char **argv) {
229 "%s will run without any additional sandboxing features\n", command); 229 "%s will run without any additional sandboxing features\n", command);
230 230
231 arg_quiet = 1; 231 arg_quiet = 1;
232
233 // we don't want to run a shell, otherwise it will be recursively
234 arg_shell_none = 1;
235
232 start_application(); 236 start_application();
233} 237}