aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-11-05 08:42:21 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2015-11-05 08:42:21 -0500
commitd64fc92b4cc042b84526308fc279d3937c0374cd (patch)
tree7238b1dc6a94454a4a52633781f16efe537a2568
parentChromium profile (diff)
downloadfirejail-d64fc92b4cc042b84526308fc279d3937c0374cd.tar.gz
firejail-d64fc92b4cc042b84526308fc279d3937c0374cd.tar.zst
firejail-d64fc92b4cc042b84526308fc279d3937c0374cd.zip
disable idbus fix for network namespaces
-rw-r--r--src/firejail/sandbox.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/firejail/sandbox.c b/src/firejail/sandbox.c
index d0aaa214e..81d09ed34 100644
--- a/src/firejail/sandbox.c
+++ b/src/firejail/sandbox.c
@@ -166,7 +166,11 @@ int sandbox(void* sandbox_arg) {
166 } 166 }
167 167
168 // load IBUS env variables 168 // load IBUS env variables
169 env_ibus_load(); 169 if (arg_nonetwork || any_bridge_configured() || any_interface_configured()) {
170 // do nothing - there are problems with ibus version 1.5.11
171 }
172 else
173 env_ibus_load();
170 174
171 // grab a copy of cp command 175 // grab a copy of cp command
172 fs_build_cp_command(); 176 fs_build_cp_command();
@@ -285,7 +289,7 @@ int sandbox(void* sandbox_arg) {
285 pulseaudio_disable(); 289 pulseaudio_disable();
286 else 290 else
287 pulseaudio_init(); 291 pulseaudio_init();
288 292
289 //**************************** 293 //****************************
290 // networking 294 // networking
291 //**************************** 295 //****************************